/*** basic ***/
/*** For Jenny, I have tidied up teh CSS a bit to help you read it.  
 I have also adjusted all the widths for the actual text and images. Next
 time you want to create a website 800px wide you can use this same style sheet 
 and it will just work.  I have reomved the 	background-color:#ffffff; from all
 divs since this was overwritting your lovely background image.***/
body{
	padding: 0px;
	margin:0px;
	width:745px; /*** this is the width of the webpage.***/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color: #000000; /*** color of the font, your design used black which looked good.***/
	background-color:#ffffff;
}

/*** setting the sizes of the three levels of heading ***/  
h1{
	margin: 0px;
	padding: 0px;
  font-size: 250%;
  color:#008E5B;
}

h2{
	margin: 0px;
	padding: 0px;
  font-size: 124%;
  color:#008E5B;
}

h3{
	margin: 0px;
	padding: 0px;
  font-size: 90%;
  color:#008E5B;
}

strong{
  color:#008E5B;
}

li {

	font-size: 12px;
	line-height: 18px;
	font-weight: normal;
	color: #000000;
	list-style-image: url(../images/arrow.gif);
	list-style-position: outside;
	text-align: left;
	margin: 0px 0px 10px;
	padding: 0px 0px 0px 10px;
	list-style-type: none;
}

/*** colors and styles for the links show on the page ***/
a:link, a:visited, a:hover {
	color: #1D688F;
	text-decoration: underline;
}

a:hover {
	text-decoration: underline;
}

/*** Main sections divs on the website ***/

#website_branding{
	color:#ffffff;
	text-align:right;
	padding-right:5px;
	height:90px;
	width:750px;
	width: auto;
	background-image: url(../images/pink1.jpg);
	background-repeat: no-repeat;
	background-position: 0px -5px;
	font-size: xx-large;
	font-weight: bolder;
}

#website_branding a{
color:#000000;
}

#website_container
{
 width:745px;
 padding:0px;
 float:left;
 	background-image: url(../images/pink3.jpg);
	background-repeat: no-repeat;
	padding-bottom:35px;
 
}

#mainpage
{
  padding-top:20px;
  padding-left:10px;

}

#content{
 margin:auto;
}

#col_one
{

}

/*** two col pages ***/
#col_one.text
{
  width:490px;
}

#col_two
{
  width:243px;
  padding:0px;
  margin:0px;
  text-align:right;
}

/*** more main divs ***/

#website_footer
{
	 display:none;
}

#website_footer a{
}

#global_footer
{
  width:745px;
  border-top:solid 1px #008E5B;
	text-align:center;
	color:#008E5B;
	margin:auto; 
	margin-top:50px;
}

#global_footer a{
	color:#008E5B;
}

/*** styles of detailed content ***/

#website_container.Home
{
	background-image: url(../images/pen.jpg);
	background-repeat: no-repeat;
	padding-top:160px;
}

/*** MENU ***/
#website_menu
{
  border-top:solid 0px #525252;
  text-align:left; 
  margin:auto; 
  width:745px;  
  background-image: url(../images/pink2.jpg);
  height:29px;
  padding-top:0px;
}

#website_menu ul
{
  list-style: none;
  margin: 0px;
	text-align:left;
}

#website_menu li
{
	float: left;
		list-style-image: none;
}

#website_menu li a
{
  display: block;
  color: #000000;
  font-weight:normal;
  text-decoration: none;
  padding-right:3px;
  padding-left:3px;
  font-size:1em;
}

#website_menu li a:hover
{
  color:#ffffff;
}

#website_menu li a.last
{
  border-right:solid 0px red;
}

#website_menu li a.current
{
	color: #ffffff;
}



