/* global
----------------------------------------------- */

body {
/* All Sides */
margin:0px;
padding:0;
background:#ffffff;
background-color: #32373A;

}

img { border:none; }


/* ------------------- layout ------------------------------ */

#wrapper {
background:url('../Images/bg_wrapper.gif') repeat-x left top;
}

#header {
background:url('../Images/bg_header_right.gif') no-repeat right top;


}

#header2 {
position:relative;
/* Height changes menu (nav or menuBar) location */
height:150px;
background-color: #F2E4A6;
}

/* Separates header portion from lower content when no navigation is present */
#header-separation {
	height: 34px;
	background-color: #91850E;
	/* Border - Size, Style, Color */
	border: 1px solid #735C5C;
	font-family:tahoma, verdana, sans-serif;
	font-size: 11px;
	color: #735C5C;
	/* Margin -  All Sides */
	margin: 0;
	/* position: relative; */
	/* Padding - All Sides */
	padding: 0px;
	width: 100%;
}

/* ------------------------------ Tab Navigation --------------------------------- */

/* navigation - sliding doors (http://www.alistapart.com/articles/slidingdoors/ */
#nav {
position: absolute;
left:0;
bottom:0;
width:100%;
background:url('../Images/bg_nav.gif') repeat-x bottom;
font-family:tahoma, verdana, sans-serif;
font-size:11px;
/*font-weight:bold;*/
line-height:normal
}

#nav ul {
float:left;
/* Top, right, bottom, left */
margin:0 0 0 9px;
/* Top, right, bottom */
padding:10px 10px 0;
list-style:none;
}

#nav li {
float:left;
background:url('../Images/tab_left.gif') no-repeat left top;
/* Top, right, bottom, left */
/* Top, right, bottom, left */
/* Border Color */
border-bottom:1px solid #E3D3B9; margin-left:1px; margin-right:0; margin-top:0; margin-bottom:0; padding-left:8px; padding-right:0; padding-top:0; padding-bottom:0
}

#nav a {
float:left;
display:block;
width:.1em;
background:url('../Images/tab_right.gif') no-repeat right top;
/* Top, right, bottom, left */
color:#FFFFFF;
text-decoration: none;
white-space:nowrap; padding-left:15px; padding-right:23px; padding-top:6px; padding-bottom:5px
}

#nav > ul a {width:auto;}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
#nav a {float:none;}
/* End IE5-Mac hack */

/* change the #current state to use body id's and place id's on each li */
#nav #current {
background-image:url('../Images/tab_left_on.gif');
border-width:0
}
#nav #current a {
background-image:url('../Images/tab_right_on.gif');
padding-bottom:6px;
color:#753F00;
text-shadow: #6B7B3F 2px 2px 2px
}

#nav a:hover {
color:#FFFFFF;
}

/* ------------------- Subnav - Portal ------------------------ */
#subnav-wrapper {
height: 34px;
background-color: #91850E;
font-family:tahoma, verdana, sans-serif;
border-bottom: 1px solid #E3D3B9;
}

#subnav {
float:left;
width:100%;
font-size:11px;
/* line-height - sets the distance between lines */
line-height:normal;
}

#subnav ul {
/* Margin -  All Sides */
margin:0;
/* Top, right, bottom */
padding:4px 20px 0;
list-style:none;
}

#subnav li {
float:left;
/* Margin -  All Sides */
margin:0;
/* Padding - All Sides */
padding:0;
}

#subnav li.first {
background:url('../Images/bg_subnav_separator.gif') no-repeat left top;
color:#F0E6D5
}

#subnav a {
float:left;
display:block;
background:url('../Images/bg_subnav_separator.gif') no-repeat right top;
width:.1em;
/* Top, Right, Bottom, Left */
text-decoration:none;
color:#F0E6D5;
white-space:nowrap; padding-left:13px; padding-right:15px; padding-top:6px; padding-bottom:8px
}


#subnav li.first a {
padding-left: 14px;
color:#F0E6D5;
}

/* commented backslash hack
hides rule from ie5-mac \*/
#subnav a {float:none;}
/* end ie5-mac hack */

#subnav > ul a {width:auto;}

#subnav a:hover {
color:#F0E6D5;
}

#subnav #sub-current a {
font-weight: bold;
color:#F0E6D5;
}


/* ------------------------- Adx MenuBar -------------------- */
/* --------------------------------------------------------------------- */

/*		------	Basic style	------		*/

#menuBar-wrapper {
	width: 100%;
	position: absolute;
	bottom: 0px;
	
	
}

#menuBar {
	/*
	height: ??;
	Since we are floating all LIs, then you need to set height in the make-up part, if you want to place some background on the menu
	*/
	display: block;
	/* Padding - All Sides */
	padding: 0px;
}

#menuBar ul {
	/* Margin -  All Sides */
	margin: 0;
	/* Border -  All Sides */
	border: 0px none;
	/* Removes LI Bullet */
	list-style-type: none;
	/* Padding - All Sides */
	padding: 0px
}

#menuBar li {
	/* Margin - All Sides */
	margin: 2;
	/* Top, Right, Bottom, Left */
	/* Border - All Sides */
	border: 0px none;
	/* Block - puts element on its own line */
	display: block;
	/* Controls the floating behavior within content div */
	float: left;
	position: relative; padding-left:0px; padding-right:15px; padding-top:1px; padding-bottom:1px
}

#menuBar a {
	/* Block - puts element on its own line */
	display: block;
}

* html #menuBar li a {
	position: relative;/* Fix IE6's inability to expand clickable area */
}

#menuBar li ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
}

/* using display is better (no scrollbars when page loads), but IE can't handle it, so only good browsers should see this */
html>body #menuBar li ul {
	display: none;
}

#menuBar li li {
	width: 100%;
	/* Padding - All Sides */
	padding: 0px;
}


/* fix the position */
#menuBar li li ul {
	top: 0;
	left: 100%;
}

/* simulate child selector for IE */
div#menuBar li:hover ul,
#menuBar li:hover li:hover ul,
#menuBar li:hover li:hover li:hover ul {
	visibility: visible;
}
div#menuBar li:hover li ul,
#menuBar li:hover li:hover li ul,
#menuBar li:hover li:hover li:hover li ul {
	visibility: hidden;
}

/* do the normal show, with increased specificity, for good browsers */
#menuBar ul#menuList li:hover>ul {
	/* Block - puts element on its own line */
	display: block;
	visibility: visible;
}


/*		------   Make-up	--------			*/

#menuBar {
	font-family: Tahoma, sans-serif;
	font-size: 11px;
	color: #735C5C;
	font-weight: bold;
	background-color: #E6DAC3;
	/* All Sides, style, color */
	border-top: 1px solid #E6DAC3;
	border-bottom: 1px solid #E6DAC3;
	height: 22px;/* 	Height mentioned above	 */
	/* Top, Right, Bottom, Left */
	padding: 0px 0px 0px 16px;
}

#menuBar li:hover {
	background-color: #F5F2EB;

}

#menuBar a {
	text-decoration: none;
	text-align: center;
	color: #735C5C;
	/* Top, Right, Bottom, Left */
	padding: 4px 5px 5px;
}

#menuBar a:hover {
	color: #640000;
}

#menuBar li ul {
	color: #E6DAC3;
	background-color: #735C5C;
	/* All Sides, style, color */
	border: none;
	width: 130px;
}

#menuBar li ul a {
	text-align: left;
	color: #E6DAC3;
}

#menuBar li ul a.submenu {
	background-image: url('http://joyce.aurastella.com/Css/images/arrow.gif');
	background-repeat: no-repeat;
	background-position: 100% 5px
}



/* --------------------------------------------------------------- */
/* ------------------------- End Adx Menu ------------------------ */



/* ---------------------------- Contact Info ---------------------------- */
/* ---------------------- Before Main Content on tab menu--------------------------- */

#contact-wrapper {
height: 60px;
/* Border Appearance - Size, type, color */
background-color: #91850E;
/* background-image: url(../Images/bg_contact.gif); */
/* background-repeat: repeat-x; */
border-bottom: 1px solid #818181;
border-top: none;
font-family:tahoma, verdana, sans-serif;
font-size: 11px;
color: #735C5C;
/* Margin - All Sides */
margin: 0;
}


#contact {
width:100%;
font-size:11px;
/* color: #798F3E; */
color: #F0E6D5;
/* line-height - sets the distance between lines */
line-height:normal;
display: inline;

}

#contact ul {
/* Margin -  All Sides */
margin:0;
/* Top, Right, Bottom, Left */
padding: 2px 6px 0 4px;
list-style:none;
float: left;
}

#contact li {
float: left;
/* Margin -  All Sides */
margin:0;
/* Padding - All Sides */
padding: 0px;
/* background: url(/Images/bg_subnav_separator.gif) no-repeat right top; */
}

#contact li li {
/* Padding - All Sides */
padding: 0px 16px 0px 6px; /* Padding originally 0 */
/* block - puts element on its own line */
display: block;
float: none;
}

#contact li.first {
background:url('../Images/bg_subnav_separator.gif') no-repeat left top;
}

#contact a {
float:left;
display:block;
/* background:url(/Images/bg_subnav_separator.gif) no-repeat right top; */
/* width:.1em; */
/* padding:6px 15px 8px 13px; */
text-decoration:none;
color: #680000;
white-space:nowrap;
}

#contact a:visited {
text-decoration:none;
color: #680000;

}

#contact li.first a {
/* Provides left spacing from page margin */
padding-left: 14px;
}

/* commented backslash hack
hides rule from ie5-mac \*/
#contact a {float:none;}
/* end ie5-mac hack */

#contact > ul a {width:auto;}




#contact a:hover {
color:#ffffff;
}

#contact .sub-current a a:visited {
color: #680000; /* orange, same as "sign in" button */
font-weight: bold;
}

/* ------------------ Before Content Area ------------------------------- */
/* ------------------ End Sub Nav 2 - Contact Info ------------------------- */


/* ------------------ Right Aligned Below Main Tabs ------------------------ */

.signin-status {
position:absolute;
right:19px;
top:19px;
text-align:right;
border: none;

}

#cart-status {
position:absolute;
right:20px;
top:85px;
height:20px;
text-align:right;
float: right;
}

#cart-status-contact {
right:20px;
text-align:right;
/* Top, Right, Bottom, Left */
padding:0px 12px 2px 2px;
}

/* cart-status text appearance */
#cart-status-contact p {
/* Margin -  All Sides */
margin:0;
color: #F0E6D5;
font-size:10px;
font-family:tahoma,verdana,helvetica,arial,sans-serif;
padding-top: 4px;
line-height:13px;
float: right;
display: inline;
}

#cart-status-contact p img {
margin-left:3px;
padding-top: 2px;
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
* html #cart-status {
top:87px;
}
/* End IE5-Mac hack */



#content-wrapper {
/* Top, Right, Bottom */
margin:0px 0 0;
/* Top, Right, Bottom, Left */
padding:0 0 0px 0;
width: 100%;
/* background:url(/Images/bg_contentwrapper.gif) no-repeat 279px 0; */
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
* html #content-wrapper { width:100%; }
/* End IE5-Mac hack */

/* ----------------------- Volume DIV on portal -------------------------- */

#volume-wrapper {
	/* Height of Volume Info */
	background-color: #F5F2EB;
	/* Border - size, style, color */
	border: 1px solid #818181;
	font-family:tahoma, verdana, sans-serif;
	font-size: 11px;
	color: #735C5C;
	/* Margin -  All Sides */
	margin: 0;
	position: relative;
	padding: 0px;
	width: 100%;
}

#volume-wrapper2 {
	height: 46px;
	background-color: #F2E4A6;
	/* Border - Size, Style, Color */
	border-top: 1px solid #818181;
	border-bottom: 1px solid #818181;
	font-family:tahoma, verdana, sans-serif;
	font-size: 11px;
	color: #6D0101;
	/* Margin -  All Sides */
	margin: 0;
	/* position: relative; */
	/* Padding - All Sides */
	padding: 0px;
	width: 100%;
}

#volume-delay {
	padding-left: 20px;
	color: #A91717;
	font-weight: bold;
}

#volume {
	width:100%;
	font-size:11px;
	color: #735C5C;
	line-height:normal;
	background-color: #F5F2EB;
	display: inline;
}

#volume a {
	text-decoration: underline;
	color:#753F00;
}

#volume li {
	list-style: none;
	color:#753F00;
}

#volume ul {
	/* Margin -  All Sides */
	margin:0;
	/* Top, Right, Bottom, Left */
	padding: 2px 0px 0px 20px;
	list-style:none;
	float: left;
	display: inline;
}

#volume ul.details {
	/* Margin -  All Sides */
	margin:0;
	margin-left: 4px;
	/* Top, Right, Bottom, Left */
	padding: 2px 0px 0px 0px;
	/* Removes Bullet from LI */
	list-style:none;
	float: left;
	/* Inline - Element will be displayed as an inline element, with no line break before or after the element */
	display: inline;
}

.volume-label {
	color: #735C5C;
	font-weight: bold;	
}

.volume-value-text {
	color: #A91717;
}


/* ------------------------ Renew Account message bar ---------------------- */


#renew-account {
	height: 20px;
	background-color: #F5F2EB;
	/* Border - Size, Style, Color */
	border:  none;
	font-family:tahoma, verdana, sans-serif;
	font-size: 11px;
	color: #930B0B;
	/* Margin -  All Sides */
	margin: 0;
	/* position: relative; */
	/* Padding - All Sides */
	padding: 0px;
	width: 100%;
}


/* ------------------------ sidebar layout ---------------------- */


#sidebar-wrapper {
/* float:left; */
}

/* this hack fixes the peekaboo bug in IE-win on the sidebar */
/* Commented Backslash Hack hides rule from IE5-Mac \*/
* html #sidebar-padding { height:1%; }
/* End IE5-Mac hack */

#sidebar {
width:245px;
/* Top, Right, Bottom, Left */
/* Top, Right, Bottom */
background:url('../Images/corners_sidebar_bot.gif') no-repeat left bottom;; margin-left:16px; margin-right:20px; margin-top:0; margin-bottom:13px; padding-left:0; padding-right:0; padding-top:0; padding-bottom:23px
}

#sidebar2 {
/* Top, Right, Bottom */
background:url('../Images/corners_sidebar_top.gif') no-repeat left top;; padding-left:0; padding-right:0; padding-top:12px; padding-bottom:0
}

#sidebar-padding {
/* Top, Right - If side is not specified opposite side provides measurement  */
background-color: #D8C8B1;
background:url('../Images/rails_sidebar.gif') no-repeat left top;; padding-left:20px; padding-right:20px; padding-top:0px; padding-bottom:0px
}

#sidebar-bg {
background:url('../Images/bg_sidebar.gif') no-repeat left bottom;
}

#note {
/* width:263px; */
/* Top, Right, Bottom, Left */
margin:0 20px 15px 16px;
}

#note-padding {
/* Top, Right, Bottom */
padding:0 20px 0;
}

/* ----------------------- Main Content - Used w/ Sidebar ---------------------- */
#main {
float: right;
width: 480px;
z-index: 0;
}

/* --------------- Main Content - To accomodate when there is no sidebar ------------ */
#main2 {
float: left;
width: 763px;
padding-left: 16px;
z-index: 0;
}

#myProducts {
float: left;
width: 540px;
padding-left: 16px;
z-index: 0;
}

/* -------- IMG Tag in Main Content ------------ */
#main img, #myProducts img {
float:left;
/* Top, Right, Bottom, Left */
margin:0 10px 0 0;
/* Padding - All Sides */
padding:3px;
/* Border - size, style, color */
border:1px solid #ebebeb;
}

#main table img, #myProducts table img {
float:none;
/* Margin -  All Sides */
margin:0;
/* Padding - All Sides */
padding:3px;
border:none;
}

.ProdImage
{
	float:left;
	/* top, right, bottom, left */
	margin:0 0 0 0;
	padding:0px;
	border:1px solid #ebebeb;
}

.browse-wrapper {
float:left;
}

.cart-browse {
float:left;
width:148px;
/* Top, Right, Bottom, Left */
margin:12px 0 0 18px;
background-color:#FFFFFF;
border:2px solid #753F00;
}

.cart-browse td {
background-color:#FFFFFF;
}

.cart-browse-first {
float:left;
width:148px;
/* Top, Right, Bottom, Left */
margin:12px 0 0 0;
}

.cart-browse-row {
width: 148px;
height: 65px;
text-align:center;
vertical-align:top;
}

#main .cart-browse img, #myProducts .cart-browse img, #main .cart-browse-first img, #myProducts .cart-browse-first img {
float:none;
/* Margin -  All Sides */
margin:0;
}

#cart-detail-left {
float:left;
width:210px;
margin-top:12px;
margin-right:15px;
}

#main #cart-detail-left img, #myProducts #cart-detail-left img {
float:none;
}

#cart-detail-right {
position: relative;
width:260px;
margin-top:10px;
}


/* headings
----------------------------------------------- */
#header h1 {
position: absolute;
left:15px;
top:25px;
/* Margin -  All Sides */
margin:0;
/* Padding - All Sides */
padding:0;
font-family:verdana,helvetica,arial,tahoma,sans-serif;
font-size:18px;
color:#720000;
}

h2 {
/* Top, Right, Bottom, Left */
margin:14px 0 0 0;
font-family:verdana,helvetica,arial,tahoma,sans-serif;
font-size:22px;
font-weight:normal;
color:#720000;
}

h3 {
/* Top, Right, Bottom */
margin:12px 0 0;
font-family:verdana,helvetica,arial,tahoma,sans-serif;
font-size:18px;
font-weight:normal;
color:#735C5C;
}

h4 {
/* Margin -  All Sides */
margin:0;
font-family:verdana,helvetica,arial,tahoma,sans-serif;
font-size:14px;
color:#735C5C;
}

.cart-browse h4, .cart-browse-first h4 { padding-top:5px; }

/* Headings in Sidebar */
#sidebar h3 {
/* Top, Right, Bottom, Left */
/* Top, Right, Bottom, Left */
font-family:verdana,tahoma,arial,sans-serif;
font-size:14px;
font-weight:bold;
color:#735C5C;
background:url('../Images/icon_bullet_brown.gif') no-repeat 0 50%;; margin-left:12px; margin-right:0; margin-top:0; margin-bottom:0; padding-left:10px; padding-right:0; padding-top:0; padding-bottom:0
}

#sidebar h4 {
/* Top, Right, Bottom, Left */
/* Top, Right, Bottom, Left */
font-family:verdana,tahoma,arial,sans-serif;
font-size:12px;
color:#735C5C;
background:url('../Images/icon_bullet_brown.gif') no-repeat 0 50%;; margin-left:12px; margin-right:0; margin-top:0; margin-bottom:0; padding-left:10px; padding-right:0; padding-top:0; padding-bottom:0
}

#note h5 {
/* Margin -  All Sides */
margin:0;
font-family:verdana,tahoma,arial,sans-serif;
font-size:14px;
font-style:italic;
color:#753F00;
}


/* text
----------------------------------------------- */
.signin-status p {
/* Margin -  All Sides */
margin:0;
color:#753F00;
font-size:10px;
font-family:verdana,tahoma,helvetica,arial,sans-serif;
line-height:15px;
}

.signin-status p.signedout {
color:#000000;
}

.signin-status p.register {
padding-top:15px;
}

.signin-status p a {
margin-left:3px;
}

.signin-status p.signedin {
padding-bottom:4px;
}

.signin-status p.signedin strong {
color:#753F00;
font-size:11px;
}

.signin-status p.CountryStatus 
{
	color: #753F00;
	font-weight: bold;
	font-size: 12px;
	text-align: right;
}

.signin-status p.CountryStatus a
{
	color: #753F00;
	font-size: 11px;
}

#cart-status p {
/* Margin -  All Sides */
margin:0;
color:753F00;
font-size:10px;
font-family:tahoma,verdana,helvetica,arial,sans-serif;
line-height:19px;
}

#cart-status p img {
margin-left:3px;
}

#sidebar p {
/* Margin -  All Sides */
margin:0;
/* Top, Right, Bottom */
padding:0 22px 20px;
font-family:verdana,tahoma,arial,sans-serif;
font-size:12px;
color:#753F00;
}

#sidebar p strong {font-weight:normal;color:#735C5C;}

#note p {
/* Top, Right, Bottom */
margin:10px 0 0;
/* Top, Right, Bottom, Left */
padding:0 0 0 10px;
font-family:verdana,tahoma,arial,sans-serif;
font-size:12px;
font-style:italic;
/* line-height - - sets the distance between lines */
line-height:16px;
color:#753F00;
}

#main p, #myProducts p {
font-family:helvetica,arial,tahoma,verdana,sans-serif;
font-size:12px;
/* line-height - - sets the distance between lines */
line-height:16px;
color:#6D0101;
}

p.moreinfo {
font-size: 14px;
font-weight: bold;
}

#main p.moreinfo, #note p.moreinfo {
font-family:verdana,tahoma,arial,sans-serif;
font-size:11px;
font-style:normal;
color:#753F00;
}

#main2 p.moreinfo2, #note p.moreinfo2 {
font-family:verdana,tahoma,arial,sans-serif;
font-size:11px;
font-style:normal;
color:#6D0101;
margin:1px;
}

.cart-browse p, .cart-browse-first p {
/* Margin -  All Sides */
margin:0;
}

#main table td p {
font-family:verdana,tahoma,arial,sans-serif;
font-size:11px;
text-align:left;
color: #000000;
}

/* Defines TABLE appearance under MAIN2 */
/* 
#main2 table {
margin:10px 0 0;
border:0px solid #EBF2D6;
padding:2px;
width:100%;
} 
*/

.nolinebreak label
{
	display: inline;	
}

.footer
{
	font-family:verdana,tahoma,arial,sans-serif;
	font-size:10px;
	line-height:16px;
	color:#000000;
	margin:0 0 0 0px;
	clear: both;
	float: none;
	text-align: left;
	
}

.footer td {
	padding: 0 0 0 42px;
}
p#footer
{
	font-family:verdana,tahoma,arial,sans-serif;
	font-size:10px;
	line-height:16px;
	color:#000000;
	margin:0 0 0 42px;
	clear: both;
	float: none;
	text-align: left;
}

.footer a a:visited 
{
	color:#8B1615;
}

.footer a a:hover  
{
	color:#735C5C;
}

.textbox {
	background-color:#F5F2EB; 
	font-weight:bold; 
	padding:10px; 
	border: 2px solid #818181;
}

/* lists
----------------------------------------------- */
#sidebar ul#nav-secondary {
list-style-type:none;
/* Top, Right, Bottom */
margin:0 0 20px;
/* Padding - All Sides */
padding:0;
font-family:verdana,tahoma,arial,sans-serif;
font-size:14px;
}

#sidebar ul#nav-secondary li {
/* Padding - All Sides */
padding:0;
background:url('../Images/bg_sidebar_separator.gif') no-repeat center bottom;
}

#sidebar ul#nav-secondary a {
display:block;
/* Top, Right, Bottom, Left */
color:#753F00;
text-decoration:none;
background:url('../Images/icon_arrow_subnav.gif') no-repeat 5px 50%;; padding-left:22px; padding-right:0; padding-top:7px; padding-bottom:7px
}

#sidebar ul#nav-secondary a:hover {
color:#911019;
background:#F5F2EB url('../Images/icon_arrow_subnav_on.gif') no-repeat 5px 50%;
}

#sidebar ul#nav-secondary .sub-current a a:visited {
color:#911019;
background:#D8C8B1 url('../Images/icon_arrow_subnav_on.gif') no-repeat 5px 50%;
}

#sidebar ul#nav-tertiary {
list-style-type:none;
/* Top, Right, Bottom, Left */
margin:0 0 0 18px;
/* Padding - All Sides */
padding:0;
font-family:verdana,tahoma,arial,sans-serif;
font-size:14px;
background-color:none;
}

#sidebar ul#nav-tertiary li {
padding:0;
background:none;
}

#sidebar ul#nav-tertiary li a {
background-color:none;
}

#sidebar ul#nav-secondary .sub-current ul#nav-tertiary a a:visited {
/* Block - forces line break */
display:block;
/* Top, Right, Bottom, Left */
color:#ffffff;
text-decoration:none;
background:none url('../Images/icon_arrow_subnav.gif') no-repeat 5px 50%;
padding-left:22px; padding-right:0; padding-top:7px; padding-bottom:7px; background-color:none
}

#sidebar ul#nav-secondary .sub-current ul#nav-tertiary a:hover {
color:#000000;
background:none url('../Images/icon_arrow_subnav_on.gif') no-repeat 5px 50%;

}

#sidebar ul#nav-secondary .sub-current ul#nav-tertiary .sub-current a {
color:#000000;
background:none url('../Images/icon_arrow_subnav_on.gif') no-repeat 5px 50%;
font-style:italic; background-color:none
}


/* Commented Backslash Hack hides rule from IE5-Mac \*/
* html #sidebar ul a {height:1px;}
/* End IE5-Mac hack */


/* links
----------------------------------------------- */
a {
color:#810A0E;
text-decoration: none;
}
a:visited {
color:#810A0E;
}

a:hover {
color:#735C5C;
}


#main a {
color:#810A0E;
}
#main a:visited {
color:#810A0E;
}

#main a:hover {
color:#735C5C;
}

#sidebar p a {
color:#810A0E;
}

#sidebar p a:visited {
color:#810A0E;
}

#sidebar p a:hover {
color:#735C5C;
}

p.moreinfo a a:visited {
/* Top, Right, Bottom, Left */
color:#810A0E;
text-decoration:none;
background:url('../Images/icon_arrow_red.gif') no-repeat 0 50%;; padding-left:14px; padding-right:0; padding-top:0; padding-bottom:0
}

p.moreinfo a:hover {
color:#735C5C;
}

p.moreinfo a span {
/* Top, Right, Bottom, Left */
padding:0 0 1px 0;
border-bottom:1px solid #FAE994;
}

p.moreinfo2 a a:visited {
/* Top, Right, Bottom, Left */
color:#810A0E;
text-decoration:none;
background:url('../Images/icon_arrow_red.gif') no-repeat 0 50%;; padding-left:14px; padding-right:0; padding-top:0; padding-bottom:0
}

p.moreinfo2 a:hover {
color:#735C5C;
}

p.moreinfo2 a span a:visited {
/* Top, Right, Bottom, Left */
padding:0 0 1px 0;
/* Border - Size, Style, Color */
border-bottom:1px solid #810A0E;
}


/* Commented Backslash Hack hides rule from IE5-Mac \*/
* html p.moreinfo a :visited {background-position:0 0;}
/* End IE5-Mac hack */

#main h3 span a a:visited {
color:#810A0E;
text-decoration:underline;
}

#main h3 span a:hover {
color:#735C5C;
text-decoration:underline;
}


/* forms
----------------------------------------------- */
form {
font-family:tahoma,verdana,helvetica,arial,sans-serif;
}

input.text, p input.text {
/* Margin -  All Sides */
margin:0;
/* Padding - All Sides */
padding:2px;
/* Border - Size, Style, Color */
border:1px solid #989898;
font-family:tahoma,verdana,helvetica,arial,sans-serif;
font-size:11px;
color:#444;
background-color:white;
}

.tfoot input.text {
/* Border - Size, Style, Color */
border:1px solid #989898;
}

input.image {
border:none;
/* Top, Right, Bottom */
margin:5px 0 5px;
}

select {
/* Top, Right, Bottom */
margin:5px 0 5px;
border:1px solid #989898;
color:#444;
}

select.minitext {
	font-size: 8pt;
}


select.multiple {
/* Block - forces line break */
display:block;
/* Top, Right, Bottom */
margin:5px 0 5px;
/* Padding - All Sides */
padding:2px;
width:250px;
height:125px;
/* Border - Size, Style, Color */
border:1px solid #989898;
color: #444;
}

textarea {
/* Top, Right, Bottom */
margin:5px 0 5px;
/* Padding - All Sides */
padding:2px;
width:325px;
height:175px;
/* Border - Size, Style, Color */
border:1px solid #989898;
color: #444;
}

label {
/* Block - forces line break */
display:block;
/* Top, Right, Bottom */
margin:5px 0 0;
font-size:11px;
font-weight:bold;
color:#753F00;
}

label span { color: #a00; }

table form {
/* Margin -  All Sides */
margin:0;
/* Padding - All Sides */
padding:0;
}

table form input {
/* Margin -  All Sides */
margin:0;
}


/* tables
----------------------------------------------- */

/* text alignment */
.text-left { text-align:left; }
.text-right { text-align:right; }
.text-center { text-align:center; }

table td.text-left a {
color:#753F00;
}

/* list table, as used in shopping cart */
table {
margin:10px 0 0;
border:none;
padding:2px;

}

table table.positioning tr, table table.positioning td {
height:normal;
padding:0;
}

table tr.odd table.positioning td, table tr.even table.positioning td {
border:none;
}

.cart-browse table, .cart-browse-first table {
border:none;
padding:0;
width:148px;
}

#cart-detail-left table {
border:none;
padding:0;
width:208px;
}

table, tr, td {
font-family:tahoma,verdana,helvetica,arial,sans-serif;
font-size:11px;
text-align:left;

}

tr, td 
{
/* IE 5.5 bug the height statement below causes IE 5.5
	to not render a portal grid table */
	height:25px; 
	 
}
td { padding:0 0 0; }

tr.thead, tr.thead td {
background-color:#753F00;
font-weight:bold;
color:#F5F2EB;
}

tr.tfoot, tr.tfoot td {
background-color:#000000;
color:#ffffff;
font-weight:bold;
border-right:none;
border-left:none;
}

tr { color:#000000; }

tr.odd { background-color:#E3D3B9; }
tr.even { background-color:#ffffff; }


tr.tfoot td { border-top:2px solid white; }
tr.odd td { border-top:2px solid white; }
tr.even td { border-top:2px solid white; }

tr.oddnoborder { background-color:#F5F2EB; }
tr.oddnoborder td { border-top:2px solid #F5F2EB; }

td.leftborder {
border-left:none;
}

/* unstyled table, as used for button display */
table.button {
margin-top:5px;
border:none;
padding:0;
}

table.button tr,
table.button td {
background-color:none;
height:auto;
}

/* shopping cart styles */
.cart-browse td, .cart-browse-first td {
padding:0;
font-size:14px;
font-weight:bold;
font-family:helvetica,arial,tahoma,verdana,sans-serif;
color:#000000;
}

#cart-detail-left td {
margin:0;
padding:0;
font-size:12px;
font-weight:bold;
font-family:helvetica,arial,tahoma,verdana,sans-serif;
}

#cart-detail-retailprice td {
font-size:14px;
color:#735C5C;
}

#cart-detail-preferredprice td {
font-size:14px;
color:#735C5C;
}

/* unstyled table, used for positioning only */
table.positioning 
{
border:0px none;
padding:0
}

table.positioning table 
{
margin:0;
}

/* unstyled table, with subelement 0 padding used for positioning only */
table.strictpositioning {
padding:0 0 0 0;
margin:0 0 0 0;
}

table.strictpositioning tr{
padding:0 0 0 0;
margin:0 0 0 0;
}

table.strictpositioning a:hover{
color:#753F00;
}

table.strictpositioning a{
color:#753F00;
}


table.strictpositioning td{
padding:0 0 0 0;
margin:0 0 0 0;
}

table.strictpositioning table {
padding:0 0 0 0;
margin:0 0 0 0;
}

/* styles for the guest list */
table.guestlist {
margin:0;
padding:0;
border:none;
}

table.guestlist td {
border:none;
padding:0;
margin:0;
}

table.guestlist tr {
border:none;
padding:0;
margin:0;
}

/* styles for the other list */
table.summarylist {
margin:0;
padding:0;
border:none;
}

table.summarylist td {
border:none;
height:auto;
padding:0;
margin:0;
}

table.summarylist td.leftlabel 
{
	font-weight: bold;
	text-align: left;
	margin-right: 5px;
	padding-right: 5px;
}

table.summarylist tr {
border:none;
height:auto;
padding:0;
margin:0;
}

/* Used by TermsAndConditons table */
table.enrollmenttablewidth
{
	width:300px;
}


/*Address Look up*/
.inputtext
{
	/* Block - forces line break */
	display:block;
	margin:0 0 0;
	font-size:11px;
	
	font-weight:bold;
	color:#753F00;
}

.addressLink
{
	color: #7C0008;
}

.addressLinkHover
{
	color: #735C5C;
}


/* miscellaneous
----------------------------------------------- */
div.clear {
clear:both;
line-height:0;
height:0;
}

.strikethrough { text-decoration:line-through; }

/*---------------Portal Grid---------------------- */
.portalGridHeader
{
	background-color:#753F00;
	font-weight:bold;
	color:#E6DAC3;
	text-align:center;
	border-bottom:solid 2px white;
	
}

.portalGridHeader td.text-left {
	color:#E6DAC3;
	background-color:#753F00;
}


.portalGridHeader td.text-left a {
	color:#E6DAC3;
}

.portalGridHeader td.text-left a:hover {
	color:#E6DAC3;
}

.portalGridHeader td.text-center {
	color:#E6DAC3;
	background-color:#753F00;
}

.portalGridHeader td.text-center a {
	color:#E6DAC3;
}

.portalGridHeader td.text-center a:hover {
	color:#E6DAC3;
}

.portalGridFooter
{
	background-color:#E6DAC3;
	font-weight:bold;
	color:#000000;
	text-align:center;
}

.portalGridEven 
{ 
	background-color:#FFF7DF; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	text-align:center;
	border-bottom:solid 2px #F5F2EB;
}

.portalGridEven td.text-left
{ 
	background-color:#FFF7DF; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	border-bottom:solid 2px #FFFBEF;
}

.portalGridEven td.text-center
{ 
	background-color:#FFF7DF; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	border-bottom:solid 2px #FFFBEF;
}
	
.portalGridEven td.text-right
{ 
	background-color:#FFF7DF; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	border-bottom:solid 2px #FFFBEF;
}

.portalGridOdd
{ 
	background-color:#ffffff; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	text-align:center;
	border-bottom:solid 2px white;
}

.portalGridOdd td.text-left
{ 
	background-color:#ffffff; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	border-bottom:solid 2px white;
}

.portalGridOdd td.text-center
{ 
	background-color:#ffffff; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	border-bottom:solid 2px white;
}

.portalGridOdd td.text-right
{ 
	background-color:#ffffff; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:11px;
	border-bottom:solid 2px white;
}

.portalSimpleGridOdd
{ 
	background-color:#ffffff; 
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:xx-small;
	margin:none;
	padding:none;
	border:none;
	height:12px;
}

/* unstyled table, with subelement 0 padding used for positioning only */
table.portalSimpleGridPositioning {
/* Top, Right, Bottom, Left */
padding:0 0 0 0;
/* Top, Right, Bottom, Left */
margin:0 0 0 0;
border:none;
}

table.portalSimpleGridPositioning tr{
/* Top, Right, Bottom, Left */
padding:0 0 0 0;
/* Top, Right, Bottom, Left */
margin:0 0 0 0;
border:none;
}

table.portalSimpleGridPositioning td{
/* Top, Right, Bottom, Left */
padding:0 0 0 0;
/* Top, Right, Bottom, Left */
margin:0 0 0 0;
border:none;
}

table.portalSimpleGridPositioning table {
/* Top, Right, Bottom, Left */
padding:0 0 0 0;
/* Top, Right, Bottom, Left */
margin:0 0 0 0;
border:none;
}

.portalSimpleGridHeader
{
	background-color:#735C5C;
	font-weight:bold;
	color:#ffffff;
	text-align:center;
	border-bottom:solid 2px #735C5C;
	border-right:solid 2px #735C5C;
}

.portalSimpleGrid
{ 
	padding:none;
	margin:none;
	background-color:#F5F2EB; 
}

.portalGridPaging
{
	background-color:#F0E6C8;
	font-weight:bold;
	color:#000000;
}


.portalGridRemoveButton
{
	border:medium none;
	color:#E6DAC3;
	text-decoration:none;
	background:url('../Images/button_remove.gif') no-repeat 0 50%;
}

.portalGridEditButton
{
	border:medium none;
	color:#E6DAC3;
	text-decoration:none;
	background:url('../Images/button_edit.gif') no-repeat 0 50%;
}

.portalLabelCell
{
	background-color:#E6DAC3;
	color:#000000;
	text-align:right;
	font-size:10px;
}

.portalLabelValuesCell
{
	background-color:#E6DAC3;
	color:#770306;
	text-align:left;
	font-size:10px;
}

/*----------------- Breadcrumb Steps -----------------*/

.breadcrumb {
	border-bottom: 2px solid #DAA520;
	font-size: 12px;
	margin-bottom:6px;
	padding-top: 6px;
}

.disabledstep 
{
	color:#C1C1C1; 
}

.previousstep a a:visited a:hover
{
	color:#735C5C;
	padding-bottom:2px;
}

.currentstep {
	
	color:#000000;
	font-weight: bold;
	background-color: #DAA520;
	padding-left: 6px;
	padding-top: 4px;
	padding-right: 6px;
}

.activestep a a:visited 
{
	color:#735C5C;
	text-decoration: underline;
}

span.portalnewstitle
{
	/* Block - forces line break */
	display:block; color:#a00;font-weight:bold;text-decoration:underline;
}

span.portalnewstext
{
	white-space:normal;color:#000;font-weight:bold;	
}

.textlabel 
{
	font-size:11px;
	font-weight:bold;
}

/* --------- Warning messages */
.errortitle 
{
	font-size:13px;
	font-weight: bold;
	color: #990000;	
}

.errortext
{
	color: #990000;	
}

.errortext ul
{
	margin-top: 2px;
	margin-bottom: 2px;
	padding-top: 2px;
	padding-bottom: 2px;
}

table.error 
{
	margin:10px 10px 0 10px;
	border:1px solid #990000;
	padding:2px;
	width:550px;
}

table.error tr 
{
	background-color: #FFFFD5; 
}

table.error tr td
{
	width:500px;
}

.processingtext
{
	color: Blue;
	font-weight: bold;
}

.buttonsright
{
	MARGIN-TOP: 10px; 
	MARGIN-BOTTOM: 10px; 
	TEXT-ALIGN: right
}

.buttonpadding
{
	padding-right: 5px;
}
/* ------------------------ Login Div - Top of Page ------------- */

#custLogin {
	/* Block - forces line break */
	display: block;
	position: absolute;
	width: 100%;
	font-family: Tahoma, sans-serif;
	font-size: 10px;
	color: #000;
	background-color: #E6DAC3;
	/* Border - Size, Style, Color */
	border: 1px solid #E6DAC3;
	height: 18px;
	text-align: right;
	
}

#custLogin a {
	color: #7B0002;
	/* Top, Right, Bottom, Left */
	padding: 0px 25px 4px 0px;
}

/*-----------------------Used by the JCatalogProductBrowser */

.RevealHideText
{
	cursor:hand;
}

.catalogStyle
{
	background:#E6DAC3 url('../Images/bg_sidebar.gif') no-repeat left bottom;
	border:3px solid #E6DAC3&ocirc;;
	
}

.catalogStyle a
{
	color:#7B0002;
}

.catalogStyle a:hover {
	color:#9E9A9B;
}

.catalogContainer
{
	border:solid 1px #9E9A9B;
	background-color:#F5F2EB;
}

.catalogListing
{
}

.catalogLevel1
{
	padding-left:5px;
}
.catalogLevel2
{
	padding-left:25px;
}


		/* ------ table for bottom of marketing area on main Portal Page ----- */
table.mainpage {
margin:3 0 0 0px;
border-top:0px;
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
padding:3 0 0 0;
height:auto;
font-size: 12px;
font-family: verdana, ariel, sans-serif;
color:#224A95;
width: 450px;
background-color:#E2E9F5;
}



table.mainpage a a:visited {
color:#DEC025;
text-decoration:none;
font-weight: bold;
}

table.mainpage a:hover {
color:#C2CFE6;
}

table.mainpage2 {
width:100%;
background-color:#FAE994;
}


/* Style used for genealogy Tree View control i.e. DistGeneTree.aspx */
.selectedNode
{
	color: #ffffff;
	background-color:Navy;
	 
}

.highlightedNode1
{
	color: #ffffff;
	background-color: #0099ff;
}

/* Style used for genealogy Tree View control i.e. DistGeneTree.aspx */
.nonSelectedNode
{
	background-color:White; 
}

.mywrap
{
	white-space: normal;
	width:200px;
}
.portal  
{
	white-space: normal;
	margin:3 0 0 0px;
	border:4px solid #ffffff;
	padding:0 0 0 0;
	spacing:10 0 0 0;
	height:auto;
	font-size: 11px;
	font-family: verdana, ariel, sans-serif;
	color: #000000;
	


}


.portal2 
	{
	background:#F9D936 url('http://joyce.aurastella.com/CustomAssets/Images/PortalConferenceCalls.jpg') no-repeat left;
	spacing:0 0 0 100;
	white-space: normal;
	text-align:right

}





/*---------------------  Resume Enrollment --------------------------*/

.resumeStatusTitle {
	font-size: 12px;
	font-weight: bold;
}

.resumeStatusComplete {
	font-size: 12px;
	font-weight: bold;
	color: #8BBC27;
}

.resumeStatusIncomplete {
	font-size: 12px;
	font-weight: bold;
	color: #880100;
}

/*************** Button Styles **************/
/*Back button*/
.btnbackground1
{
	background:url('../Images/button_bg1.gif') no-repeat center top;
	width:71px;
	height:20px;
	color:White
}

/*Approved button */
.btnbackground2
{
	background:url('../Images/button_noText_76px.gif') no-repeat center top;
	width:76px;
	height:20px;
	color:White
}

/*longer button */
.btnbackground3
{
	background:url('../Images/button_noText_115px.gif') no-repeat center top;
	width:115px;
	height:20px;
	color:White
}

.linkButton
{
	font-size: 16px;
	position: relative;
}

.tblsimpleheader
{
	background-color:#D9C4CD;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	color:#693E48;
	font-size:11px;
	border-width:0px;
}

.tblsimpleodd
{
	border-width:0px;
	font-family:tahoma,verdana,helvetica,arial,sans-serif;
	font-size:10px;
	text-align:left;
	background-color:#FBF3F7;

	white-space: normal;
	width:640px;
}

.tblBtnStyle {
	border: 0px;
	width: 820px;
	padding: 0px;
	margin-left: -6px;
	word-wrap: break-word;
}

.simpleBorder {
	border: 1px solid #cccccc;
}

.borderNoTop {
	
	border-left: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 6px;
	background-color: #ffffff;
}

/* ------------ TREE -------------- */
table#tblCtls 
{
	width: auto;
}
 
table#tblCtls table, tr
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	height: auto;
	width: auto;
}
 
.GeneTreeNode
{
	width: auto;
	height: auto;
	padding: 0px;
	margin: 0px;
	color: #004236;
}

.Highlighted
{
	width: auto;
	height: auto;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
}

.Hidden
{
	visibility: hidden;
	display: none;
}

.PickerSelected 
{
	margin: 2px;
	padding-left: 4px;
	padding-right: 4px;
	border: solid 1px black;
	background-color: #AEC373;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

.PickerNotSelected
{
	margin: 2px;
	padding-left: 4px;
	padding-right: 4px;
	border: solid 1px #AEC373;
	background-color: #D5E0B7;
	color: #AEC373;
	cursor: pointer;
}

/* --- OBJECT TABLE DEFAULT STYLE --- */
.ObjectTable_Field 
{
	font-weight: bold;
	padding: 2px;
}

.ObjectTable_Value
{
	padding: 2px;
}


.header_label {
    font-weight: bold;
    color: white
}
.header_value {
    font-weight: normal;
    color: #491c64 
}

div.BoundTextBoxPlain {
    width: 0%;
    border: 1px solid #cccccc;
}
div.BoundTextBox {
    width: 0%;
    border: 1px solid black;
}

.boundTextBoxPlain {
    border: none;
    border-bottom: 1px solid #cccccc;
    font-family: monospace;
}
.boundTextBoxes {
    border: none;
    font-family: monospace;
}

.shipcommentswrap
{
        white-space: normal;
        width:300px;
}


/************** DATE CHOOSER ***************/

.DateChooserDayHeaderStyle 
{
background-color: #F5F5DC;
color: #3c3c3c;
}

.DateChooserDayStyle
{
	cursor: pointer;
}

.DateChooserNextPrevStyle
{
background-color: #EDEDC2;
}

.DateChooserOtherMonthDayStyle
{
	font-style: italic;
	font-size: smaller;
}

.DateChooserSelectedDayStyle
{
}

.DateChooserSelectorStyle
{

}

.DateChooserTitleStyle
{
border: 2px solid #A3A3A3;
font-weight: bold;
margin-right: 4px;
margin-bottom: 8px;
background-color: #a3a3a3;
color: #ffffff;
}

.DateChooserTodayDayStyle
{
	cursor: pointer;
	background-color: #F5EA9F;
}

.DateChooserWeekendDayStyle
{
	cursor: pointer;
}

.DateChooserClientSelected 
{
	background-color: #F0E68C;
	color: #3c3c3c;
}
.add1 {
	white-space: wrap;
	margin-right: 4px;
	margin-left: 4px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 15pt;
	font-weight: normal;
	background-color: #F2E4A6;
	color: #000000;
                  width:900px;
}
.add2 {
	white-space: wrap;
	margin-right: 4px;
	margin-left: 4px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 15pt;
	font-weight: normal;
	background-color: #F2E4A6;
	color: #000000;
                  width:200px;
}

.home_bnr {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style:italic;
	line-height: 16pt;
	padding:113px 12px 0px 12px;
	width:300px;
	
	}
#main5 #j2 #iframe {
	background-position: center;
	background-color: #FFFFFF;
}

#main5 #j2 #iframe a:link {
	background-position: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #663300;
	font-weight: bold;
}
