@charset "UTF-8";
/* CSS Document */

.twoColLiqLtHdr #container { 
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqLtHdr #header { 
	background: #DDDDDD; 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColLiqLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqLtHdr #sidebar1 {
	float: left; 
	width: 24%; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
}
.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

h1 {
	font-size: 15px;
	font-weight: lighter;
	text-transform: capitalise;
	color: #fa8cb3;	
}

h2 {
	font-size: 15px;
	font-weight: lighter;
	text-transform: capitalize;
	color: #fa8cb3;	
	
}
h3 {
	font-size: 12px;
	font-weight: lighter;
	text-transform: capitalize;
	color: #fa8cb3;	
	
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqLtHdr #mainContent { 
	margin: 0 20px 0 26%; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.twoColLiqLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.twoColLiqLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.logobottom {
	height: 50px;
}
.longbottom {
	background: url(../images/lefttablebg.png) no-repeat;
	margin: 0px;
	padding: 0px;
	border-width: 0px;
}
.tablemiddle {
	background: #FFFFFF url(../images/index_06.jpg) no-repeat;
	height: 25px;
	width: 329px;
}


body {
	font: normal 11px/140% "Century Gothic", "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #666666;
	background: #FFFFFF url(../images/bg.gif);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
	vertical-align: top;
}
.footercopy {
	font: 9px;
	text-align: center;
}

.bullettext {
	list-style: circle url(../images/bullet.png) outside;
}

.body {
	color: #666666;
	font: lighter 11px/130% "Century Gothic", Helvetica, Arial;
	padding: 0px;
	list-style: circle url(../images/bullet.png) outside;
	text-align: left;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	color: #666666;
}
a:active {
	text-decoration: none;
	color: #ef97b6;
}
.pagetitlelinks {
	color: #ef97b6;
	padding: 10px 40px 0px 10px;
	text-transform: uppercase;
}
.mainheading {
	text-transform: uppercase;
	color: #ef97b6;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	font: 12px;
}
.subheading {
	color: #ef97b6;
	font: lighter 12px "Century Gothic", Helvetica, Arial;
	text-transform: capitalize;
}
body,td,th {
	color: #333333;
	font-family: Century Gothic, Helvetica, Arial;
}
Table_01 {
	background: url(file:///di/Documents/WIP/The%20Powder%20Room/images/index_06.jpg) no-repeat fixed left top;
}

html, body{
}

body{
	background-image: url(../images/bg.gif);
	font: normal 11px/160% "Century Gothic", Helvetica, Arial;
}

#mainTbl{
}	

#mainTb2{
	margin: auto;
	vertical-align: middle;
	height: 100%;
}	


.pagetitlelinks {
	padding-right: 30px;
a img{
	border: none;
	text-transform: uppercase;
	color: #B74D7A;
}

img{
}

#logo{
	text-align: left;
	position: relative;
	z-index: 1000;
	bottom: -50px;
}

#mainNav {
}

#mainNav a{
	/*color: #9D9FA1;*/
	
	color: #aaaaaa;
	
	line-height: 30px;
	text-transform:uppercase;	
	letter-spacing: 1px;
	
}

#mainNav a:hover{
	color: #ffffff;
}

.mainNavLeft{
	width: 176px;
	float: left;
	position: relative;
}

.mainNavLeft a img{
	/*padding: 0px 30px 0px 2px;*/
padding: 9px 10px 6px 0px;
}


.mainNavRight{
	float: right;
	position: relative;
	z-index: 2000;
	text-align: right;
}

.mainNavRight a img{
}

#subNav{
	color: #56585a;
	font-size: 10px;
	line-height: 20px;
	font-size: 11px;
}

#subNav a{
	color: #56585a;
	padding: 0px 2px;
	line-height: 20px;
}

#subNav a:hover{
		color: #D7AEBF;
}

.subNavLeft{
	width: 500px;
	float: left;
	position: relative;	
	z-index: 2000;
	padding: 0px 0px 0px 40px
}

#breadcrumbs, #breadcrumbs a{
	/*color: #D08AA8;*/
	color: #B74D7A;
	text-decoration: none;
	text-transform:uppercase;
	font-size: 11px;
	letter-spacing: 1px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-variant:small-caps;
	/*font-weight: bold;*/	
}

.bcnavtext, .bcnavtext a {
	color:  #B74D7A;
}


#breadcrumbs a:hover {
	color: #D08AA8;
}

.zoom{
	color: #999999;
	text-decoration: none;
	text-transform:lowercase;
	font-size: 11px;
	letter-spacing: 1px;
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;

}



.subNavRight{
	float: right;
	width: 300px;
	position: relative;	
	z-index: 2000;
	text-align: right;
	padding: 0px 40px 0px 0px;
	color: #D08AA8;
	text-decoration: none;
	font-size: 11px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-variant:small-caps;
	letter-spacing: 1px;
	text-transform: uppercase;
	vertical-align: middle;
}

.subNavRight img {
	padding-bottom: 2px;
}

.subNavRight a{
	color: #DA92AE;
	
}


#mainWrapper{
	clear: both;
}

#leftNav{
	float: left;
	width: 176px;
	background-image: url(../images/lefttablebg.png);
}
#leftNav span {
	display: block;
}
#leftNav span a {
	padding-left:30px;
}
#leftNav span a:hover {
	background: url(../images/mo-image.gif) center left no-repeat;
}

#leftNav a{
	display: block;
	padding: 0px 0px 0px 0px;
	text-decoration: none;
	/*font-variant: small-caps;*/
	
	text-transform:uppercase;
	/*font-weight: bold;*/
	font-size: 10px;
	letter-spacing: 1px;
	font-family: "Century Gothic";

	/*text-transform: uppercase;*/
}

#leftNav a.subcat{
	color: #B74D7A;
	padding: 0px 0px 0px 20px;
	text-transform:none;
}

#leftNav a.selected{
	/*color: #ba728f;*/
	color: #666666;
}

#leftNav a.subselected{
	color: #666666;
	text-transform: none;
}
#leftNav a:hover{
	color: #000000;
}


.hr{
	line-height: 1px;
	height: 1px;
	font-size: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 7px;
	margin-bottom: 15px;
	margin-left: 20px;
	background-color: #BB8599;
}

.prevnext {
	margin-bottom: 5px;
	text-align: right;
	color: #666666;
	text-transform:uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	font-family: "Century Gothic";
}


#mainContent{
	float: left;
	padding-top: 0px;
	width: 872px;
}


#footer{
	line-height: 20px;
}

.clear{
	clear: both;
	line-height: 1px;
	height: 1px;
	font-size: 1px;
}

.gray{
	color: #808284;
	font-family: "Century Gothic", Helvetica, Arial;
	padding: 0px 3px;
}


.cart{
	font-size: 11px;
}

.cart img{
	vertical-align: middle;
}

.pad1{
}

.pad2{
	padding: 0px 40px 0px 0px;
}

.box1TopLeft{
	background:url(../images/box1_top_left.gif) no-repeat top left #f3e7eb;
}

.box1TopRight{
	background:url(../images/box1_top_right.gif) no-repeat top right;
	padding: 3px 0px 0px 0px;	
}


.box2TopLeft{
	background: url(../images/box2_top_left.gif) no-repeat bottom left;
}

body {
	font: 11px/150% "Century Gothic", Helvetica, Arial;
	color: #666666;
	background: #FFFFFF url(file:///di/Documents/WIP/The%20Powder%20Room/images/bg.gif) repeat;
}
.footercopy {
	font: 9px;
}
.body {
	color: #666666;
	font: 11px/150% "Century Gothic", Helvetica, Arial;
	padding: 0px;
}
a:link {
	color: #5C5C5C;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #ef97b6;
}
a:hover {
	color: #ef97b6;
}
a:active {
	text-decoration: none;
	color: #ef97b6;
}
.pagetitlelinks {
	color: #ef97b6;
	padding: 10px 40px 0px 10px;
	text-transform: uppercase;
}
.mainheading {
	text-transform: uppercase;
	color: #ef97b6;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	font: 12px;
}
.subheading {
	color: #ef97b6;
	font: 13px "Century Gothic", Helvetica, Arial;
	letter-spacing: 1px;
	text-transform: capitalize;
}
body,td,th {
	color: #333333;
	font-family: Century Gothic, Helvetica, Arial;
}
Table_01 {
	background: url(file:///di/Documents/WIP/The%20Powder%20Room/images/index_06.jpg) no-repeat fixed left top;
}
#Table_01 td {
}
.bottomhalflogo {
	background: url(file:///di/Documents/WIP/The%20Powder%20Room/images/leftsidelogobottom.png) no-repeat;
	height: 50px;
	width: 176px;
}
.pagetitlelinks1 {	color: #ef97b6;
	padding: 10px 40px 0px 10px;
	text-transform: uppercase;
}

@charset "UTF-8";
body  {
	background: #FFFFFF url(../images/bg.gif);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
	vertical-align: top;
}
.twoColLiqLtHdr #container { 
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqLtHdr #header { 
	background: #DDDDDD; 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColLiqLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqLtHdr #sidebar1 {
	float: left; 
	width: 24%; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
}
.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqLtHdr #mainContent { 
	margin: 0 20px 0 26%; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.twoColLiqLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.twoColLiqLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.logobottom {
	height: 50px;
}
.longbottom {
	background: url(../images/lefttablebg.png) no-repeat;
	margin: 0px;
	padding: 0px;
	border-width: 0px;
}
.tablemiddle {
	background: #FFFFFF url(../images/index_06.jpg) no-repeat;
	height: 25px;
	width: 329px;
}
.pagetitlelinks h1 {
}
