/* STYLE SHEET FOR YOGA WITH VICKIE HOME PAGE */


@charset "UTF-8";


/* BODY */

body  {
	font-size: 100%;
	font-family: Georgia, Times New Roman, Times, serif;
	background-color: #993300;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.twoColElsLtHdr  {
	font-size: 100%;
	font-family: Georgia, Times New Roman, Times, serif;
	background: #993300;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}


/* CONTAINER */

.twoColElsLtHdr #container { 
	width: 48em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(images/Cherry_blossoms_white.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
} 


/* HEADER */

.twoColElsLtHdr #header1 .endofclassphrase { 
	background-color: #333300; 
	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 20px;  /* 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. *//* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #999966;
	font-style: italic;
	font-size: 80%;
	text-align: right;
	zoom: 1;
} 

.twoColElsLtHdr #header2 { 
	background-color: #FFFFFF; 
	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: 0;  /* 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. *//* using padding instead of margin will allow you to keep the element away from the edges of the div */
	zoom: 1;
} 


/* SIDEBAR */

.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 125px; /* since this element is floated, a width must be given */
	background-color: #666633; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0; /* top and bottom padding create visual space within this div */
	zoom: 1;
}

.twoColElsLtHdr #sidebar1 p {
	margin: 0 15px; /* the left and right margin should be given to every element that will be placed in the side columns */
	padding: 10px 0; /* top and bottom padding create visual space within this div */
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-align: right;
	font-style: normal;
	text-decoration: none;
	zoom: 1;
}

.twoColElsLtHdr #sidebar1 p a {
	padding: 10px 0; /* top and bottom padding create visual space within this div */
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-align: right;
	font-style: normal;
	text-decoration: none;
	zoom: 1;
}

.twoColElsLtHdr #sidebar1 .copyright {
	font-size: 65%;
	font-family: Arial, Helvetica, sans-serif;
	color: #999966;
	text-align: right;
	font-style: normal;
	text-decoration: none;
	zoom: 1;
}


/* MAIN CONTENT */

.twoColElsLtHdr #mainContent {
	margin: 0 12em 0 11em; /* the margin can be given in ems or pixels. It creates the space down the sides of the page. */
	zoom: 1;
} 

.twoColElsLtHdr #mainContent h2 {
	font-size: 150%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #993300;
	text-transform: lowercase;
	zoom: 1;
} 

.twoColElsLtHdr #mainContent h3 {
	font-size: 75%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #993300;
	text-transform: uppercase;
	zoom: 1;
} 

.twoColElsLtHdr #mainContent p {
	font-size: 95%;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: normal;
	color: #333300;
	zoom: 1;
} 

.twoColElsLtHdr #mainContent p.smalltext {
	margin: 0;
	font-size: 90%;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: normal;
	color: #333300;
	zoom: 1;
} 

.twoColElsLtHdr #mainContent p.smalltext a {
	font-weight: normal;
	font-style: normal;
	text-decoration: underline;
	color: #333300;
	zoom: 1;
} 



/* FOOTER */

.twoColElsLtHdr #footer { 
	background-color: #333300; 
	margin: 0;
	padding: 0;  /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-image: url(images/Cherry_blossoms_green.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
	zoom: 1;
} 

.twoColElsLtHdr #footer h1 {
	margin: 0;
	padding-top: 10px;  /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-left: 20px;
	color: #999966;
	font-style: italic;
	font-size: 90%;
	text-align: left;
	zoom: 1;
}

.twoColElsLtHdr #footer p {
	margin: 0;
	padding-bottom: 15px;
	padding-left: 20px;
	color: #999966;
	font-style: normal;
	font-size: 85%;
	text-align: left;
	zoom: 1;
}


/* MISC */

.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;
	zoom: 1;
}

p.credit {
	font-size: 80%;
	color: #CC6633;
	zoom: 1;
}

p.credit a {
	color: #CC6633;
	text-decoration: underline;
	zoom: 1;
}
