@import url("common.css");

/* PHP Page Layout */
body  { 
    font: Helvetica, Arial, sans-serif;
	background: url(../images/bg.png) repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.twoColFixRtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	/* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #side_bars { 
	width: 900x;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
} 
.twoColFixRtHdr #header {
	background: #113d7a;
	padding: 8px 10px 8px 0px;
	text-align:right;
	max-height:25px;
	
	/* 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. */
} 
.twoColFixRtHdr #header2 { 
	background: url(../images/header2.png) no-repeat;
	height:300px;
	border-bottom:solid 2px #999999; 
	/* 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. */
} 
.twoColFixRtHdr #right_column {
	float: right; /* since this element is floated, a width must be given */
	width: 245px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:428px;
	background: #E4E4E4; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 0px 10px; /* padding keeps the content of the div away from the edges */
}
.twoColFixRtHdr #mainContent {
	padding: 20px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height:425px;
	background:#E4E4E4;
} 
.twoColFixRtHdr #mainParagraph1 {
	height:190px;
} 
.twoColFixRtHdr #mainParagraph2 {
	height:230px;
	margin-bottom:10px
} 
.twoColFixRtHdr #left_column {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #E4E4E4; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 0 15px; /* padding keeps the content of the div away from the edges */
	height:425px;
}
.twoColFixRtHdr #footer { 
	padding: 0 0 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(../images/footer.png) no-repeat;
	width: 900px;
	height: 90px;
} 
.twoColFixRtHdr #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 */
}
.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;
}

/* Begin CSS Drop Down Menu */

#menuh-container
	{ 
	background:#2a5fa5;
	width:900px;
	height:28px;
	border-bottom:solid 1px #999999;
	}

#menuh
	{
	padding-left:20px;
	font-size: 12px;
	font-family: helvetica, arial, sans-serif;
	width:100%;
	float:left;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	border: 1px solid #2a5fa5;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
	}

#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: white;
	background-color:#2a5fa5;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: white;
	background-color: cornflowerblue;
	text-decoration:none;
	}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(../images/navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(../images/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:135px;	/* width of all menu boxes */
	}

#menuh li
	{
	position:relative;
    min-height: 1px; 			/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */

/* Font Settings */	
.language_text {
	font-family: Helvetica, Arial, sans-serif; 
	color:#FFFFFF;
	font-size: 8pt;
	top: 5px;
	padding-right:5px;
	padding-bottom:2px;
	font-variant:small-caps;
}

/* Footer*/
.footer_text {
	font-family: Helvetica, Arial, sans-serif; 
	color:#666666;
	font-size: 10pt;
	margin-top:2px;
	float:right;
}
.footer_text a {
	font-family: Helvetica, Arial, sans-serif; 
	color:#666666;
	font-size: 10pt;
	margin-top:2px;
}
.footer_text a:hover {
	font-family: Helvetica, Arial, sans-serif; 
	color:#2a5fa5;
	font-size: 10pt;
	margin-top:2px;
}
img.year { 
	float:right; 
	margin-top:-55px;
	margin-right:10px;
}
/* END Footer*/

/* Right Paragraph - Testimonials*/
.testimonial_main_text {
	font-family: Helvetica, Arial, sans-serif;
	color:#999999;
	font-size: 9pt;
	text-align: justify;
	line-height: 110%;
	margin-left:0;
	margin-top:25px;
	margin-right: 20px;
	margin-bottom:12px;
	word-spacing:.5px;
}
.testimonial_text {
	font-family: Helvetica, Arial, sans-serif; 
	color:#2a5fa5;
	font-size: 8pt;
	line-height:11px; 
}
img.bar-left { 
	float:left; 
	margin-top:55px;
	margin-right:12px;
	margin-left:10px;
}
img.client-test { 
	margin-top:10px;
}
img.locate_retailer { 
	float:right;
	border:solid 1px #333333;
	margin-right:5px;
	margin-top:180px;
}
/* Right Paragraph - Testimonials*/

/* Main Paragraph - Welcome to Hillcrest*/
.welcome_text {
	font-family: Helvetica, Arial, sans-serif; 
	color:#333333;
	font-size: 10pt; 
	line-height: 140%; 
	font-weight:bold;
}
.welcome_text2 {
	font-family: Helvetica, Arial, sans-serif; 
	color:#333333;
	margin-top:10px;
	font-size: 9pt; 
	line-height: 140%;
	text-align:justify;
}
.welcome_text3 {
	font-family: Helvetica, Arial, sans-serif; 
	color:#666666;
	font-size: 9pt; 
	line-height: 120%;
	text-align:justify;
}
img.align-left { 
	float:left; 
	margin-top:30px;
	margin-right:10px;
}
img.image-box { 
	float:left; 
	border:solid 1px #999999;
	margin-right:15px;
	margin-top:6px;
}
.main_link_text a {
	font-family: Helvetica, Arial, sans-serif; 
	color:#396c15;
	font-size: 9pt;
}
.main_link_text a:hover {
	font-family: Helvetica, Arial, sans-serif; 
	color:#62c01f;
	font-size: 9pt;
	margin-top:4px;
}
/* End Main Paragraph - Welcome to Hillcrest*/

/* Left Paragraph*/
img.rss-img {
	margin-right:15px;
}
.rss_header_text {
	font-family: Helvetica, Arial, sans-serif; 
	color:#333333;
	font-size: 10pt;  
	font-weight:bold;
	margin-top:9px;
}
img.video {
	margin-top:12px;
	margin-right:10px; 
	border:solid 3px #999999;
}
.rss_text {
	font-family: Helvetica, Arial, sans-serif; 
	color:#666666;
	font-size: 9pt; 
	line-height: 120%;
	text-align:justify;
	width:200px;
}
/* End Left Paragraph*/

/* End Font Settings*/
	

#wrapper { width: 580px; margin-top: 0; } /*********ALTERED FOR 800 by 600*********/
#right_content { width: 232px; background: url("../graphics/bg_right_content.gif") no-repeat; float: right; display: none; }/*********ALTERED FOR 800 by 600*********/
#left_content { display: none; }
#footer { font: .9em Georgia, "Times New Roman", Times, serif; color: #196180; clear: both; margin-left: 185px; width: 540px; /*background: #FFF1E6;*/ display: none; text-align: center; padding: 10px; line-height: 1.5; }
#header { display: none; }
#filler { background: url("../graphics/bg_right_content.gif") no-repeat; float: right; display: block; width: 20px; height: 40px;  }
#main_content { width: 580px; background: transparent url("../graphics/bg_main_content_800.gif") no-repeat; float: left; padding-right: 20px; }
#left_wrapper { float: left; width: 775px; }