
/*
Set initial font styles
*/
body {
   text-align: left;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}
td{
vertical-align:top;
}
/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background: none; 
   color: #385C72;
}

a:visited {
   text-decoration: none;
   background: none; 
   color: #385C72;              /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
text-decoration: underline;
   
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #fff;
   margin:0px; /* gives some air for the pagewrapper */
}


/* home intro */
#intro{
width:685px;
height:358px;
padding-left:18px;
padding-top:22px;

}
#intro_box{
width:314px;
height:192px;
padding-left:14px;
padding-top:14px;
}
#intro_box h1{
font-family:Tahoma, Geneva, sans-serif;
font-size:24px;
color: #581D00;
letter-spacing:-1px;
margin-top:0px;
margin-bottom:14px;
}
#intro_box_txt{
float:left;
width:300px;
padding-right:6px;
font-size:12px;
color:#333333;
}
#intro_box_txt p{
margin-top:0px;
line-height:16px;
}
#intro_box_img{

}
#intro_footer{
width:685px;
height:61px;
background: #DCC7B0 url(img/home_intro_footer.gif) no-repeat;
border-top: #FFFFFF 1px dashed;
margin:0px;
}
#intro_footer_txt{
padding-top:12px;
padding-left:18px;
}
#intro_footer_txt p{
margin-top:2px;
line-height:16px;
}
.txt_blue_med{
color:#00718F;
}
.txt_pink_dark{
color:#AD208E;
}
.txt_blue_light{
color:#0099CC;
}
.txt_brown_dark{
color:#581D00;
}
.txt_blue_dark{
color:#24484C;
}


/* END LISTS */