@charset "UTF-8";

/*

Colors:
Dark Red: #6d1d04
Bright Red: #8e1e04
Dark Brown: #3B2B00
Medium Brown: #5A4432
Dark Teal: #233943
Teal: #315060
*/






body  {
	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;
	font-family: Times, "Times New Roman", serif;
	font-size: 100%;
	background-color: #FFFFFF;
	background-image: url(images/RAOBTopGradient.jpg);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	line-height: 100%;
}


/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container {
	width: 750px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
} 
/*
#headerhome {
	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. 
	background-image: url(images/RAOBHomeTopLogo.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0px;
	height: 150px;
	width: 750px;
	display: block;
	position: relative;
} 

#header {
	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. 
	background-image: url(images/RAOBTopLogoBar.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0px;
	height: 150px;
	width: 750px;
	display: block;
	position: relative;
}
*/
#header {
	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. */
	margin: 0px;
	height: 150px;
	width: 750px;
}
#logoone {
	background-image: url(images/RAOBLogoOne.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 150px;
	width: 750px;
}
#logotwo {
	background-image: url(images/RAOBLogoTwo.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 150px;
	width: 750px;
}
#logoone a, #logotwo a {
	display: block;
	float: left;
}
#logoone a span, #logotwo a span {
	display: none;
}
#logoone a#logoonelink {
	height: 150px;
	width: 750px;
}
#logotwo a#logotwolink {
	height: 90px;
	width: 485px;
}


#navigation {
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	position:relative;
	top: -42px;
}	
#navigation li {
	text-decoration: none;
	color: #FFFFFF;
	display: inline;
	font-style: normal;
	margin: 0px;
	padding: 0px;
}
#navigation a {
	height: 35px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 80%;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #3B2B00;
	border-style: solid;
	border-width: 2px;
	border-color: #5A4432;
	margin: 0px;
	letter-spacing: 0.07em;
}
/*
#navigation a:hover {
	color: #069;
	background-color: #fff;
	border-color: #8f8f8f;
	}
*/
body#features #features_tab a,
body#modules #modules_tab a,
body#downloads #downloads_tab a,
body#support #support_tab a,
body#search #search_tab a,
body#order #order_tab a {
	color: #fff;
	background-color: #6d1d04;
	border-color: #8e1e04;
	}	


/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. 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 ".twoColElsRtHdr #sidebar1 p" rule.
*/
#sidebar {
	float: right;
	width: 190px; /* since this element is floated, a width must be given */
	background: none;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #315060;
	padding: 5px 0 10px 0px;
	margin: 0px 0px 10px 0px;
}
#sidebar dl {
	margin: 0px;
	padding: 0px;
}
#sidebar  dt    {
	font-size: 120%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
	font-weight: bold;
	line-height: 120%;
	text-indent: 0px;
}
#sidebar dd {
	list-style: none;
	text-decoration: none;
	margin: 0px;
	font-size: 80%;
	padding: 0px;
	text-indent: 0px;
	background-position: left;
}
#sidebar a {
	display: block;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	margin: 0px;
	padding: 2px 5px 2px 10px;
}
#sidebar a:hover  {
	color: #FFFFFF;
	background-color: #233943;
	}
	
#sidebar a.current {
	background-color: #315060;
	}
	
#search_side a {
	color: #8e1e04;
	}	
	

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. 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.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#maincontent {
	margin: 0px 0px 0px 0px; /* the left margin will look best if you match the padding amount to the header and footer. */
	width: 540px;
	padding: 0 10px 10px 0;
	background-color: #FFFFFF;
	text-align: left;
} 

 
#maincontent h1 {
	font-size: 300%;
	font-weight: bold;
	color: #8e1e04;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	line-height: 100%;
}

#maincontent h2 {
	font-size: 200%;
	font-weight: bold;
	color: #000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	line-height: 120%;
	list-style: none;
}

#maincontent h2 a, #maincontent h3 a {
	text-decoration: none;
	color: #000;
	}	

#maincontent h2 a:hover, #maincontent h3 a:hover {
	text-decoration: none;
	color: #8E1E04;
	}		


#maincontent h3 {
	font-size: 130%;
	line-height: 110%;
	list-style: none;
}
#maincontent h4 {
	font-size: 170%;
	line-height: 100%;
	margin: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


.page_nav {
	text-decoration: overline;
	font-style: normal;
	margin: 0px;
	padding: 0px;
	text-align: left;
}


.page_nav2 {
	text-decoration: none;
	font-style: normal;
	margin: 0px;
	padding: 0px;
	text-align: left;
}



.page_nav li, .page_nav2 li {
	display: inline;
	font-style: normal;
	margin: 0px;
	padding: 0 5px 0 0;
	text-align: left;
}

.page_nav a, .page_nav2 a {
	text-decoration: none;
	font-size: 75%;
	margin: 0px;
}

.page_nav a:hover, .page_nav2 a:hover {
	color: #069;
	}


.list_col2, .list_col3 {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding: 0px;
}

.list_col2 ul, .list_col3 ul {
	width: 525px;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

.list_col2 li {
	float: left;
	width: 262px;
	font-size: 90%;
	text-decoration: none;
	text-indent: 0px;
	display: inline;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	line-height: 95%;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.list_col3 li {
	float: left;
	width: 175px;
	font-size: 90%;
	text-decoration: none;
	text-indent: 0px;
	display: inline;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	line-height: 95%;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.clear_left {
    clear: left;
}

.small_text {
	font-size: 90%;
	}


table {
	border-collapse: collapse;
	border: 2px solid #000000;
	color: #fff;
	background-color: #325160;
}

table td, th {
	border: 1px solid #000000;
	padding: 6px;
	}
	
thead th {
	border: 1px solid #000000;
	text-align: left;
	font-size: 1em;
	font-weight: normal;
	color: #fff;
	background-color: #203641;
	}


	

.prod_table table {
	color: #000000;
	background-color: #FFFFFF;
	list-style-type: none;
}

.tbl_item1 {
	color: #000;
	border-left-width: 2px;
	font-weight: bold;
	line-height: 110%;
	width: 200px;
}

.tbl_item2 {
	color: #000;
	border-left-width: 2px;
	font-weight: bold;
	line-height: 110%;
	width: 400px;
}

.tbl_item3 {
	color: #000;
	border-left-width: 2px;
	font-weight: bold;
	line-height: 110%;
	width: 200px;
}

.prod_table a {
	color: #315060;
}

.tbl_item a:hover {
	color: #8E1E04;
}

.tbl_price {
	font-weight: bold;
}

.tbl_desc {
	font-size: 80%;
	font-weight: normal;
	line-height: 110%;
}

.tbl_button {
	width: 65px;
}


.small_para {
	font-size: 90%;
	line-height: 135%;
	width: 280px;
	}

.rule {
	border-top-width: medium;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #21353E;
	}


/* image float left

.image_caption {
	float: left;
	font-size: 80%;
	font-style: italic;
	text-align: center;
	}
	
.image_caption p {
	margin: 0 20px 10px 0;
	padding: 0;
	}
	
.image_caption img {
	border: 2px solid #000;
	margin: 0;
	padding: 3px;
	}	

 */


.image_caption {
	float: right;
	font-size: 70%;
	font-style: italic;
	text-align: center;
	}
	
.image_caption p {
	margin: 0 5px 15px 10px;
	padding: 0;
	line-height: 20%;
	}
	
.image_caption img {
	border: 2px solid #000;
	margin: 10px 5px 0 10px;
	padding: 3px;
	}	


.image_caption_r {
	float: right;
	clear: right;
	font-size: 70%;
	font-style: italic;
	text-align: center;
	}
	
.image_caption_r p {
	margin: 0 5px 15px 10px;
	padding: 0;
	line-height: 20%;
	}
	
.image_caption_r img {
	border: 2px solid #000;
	margin: 10px 5px 0 10px;
	padding: 3px;
	}






.large_list {
	list-style: none;
	margin: 0px;
	padding: 0px;
	}

.large_list dt, #maincontent h3 {
	font-size: 130%;
	font-weight: bold;
	}

.large_list dd {
	padding: 0;
	font-size: 90%;
	font-weight: normal;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 15px;
	margin-left: 20px;
	}	
	
.large_list a {
	text-decoration: none;
	color: #000;
	}	

.large_list a:hover {
	text-decoration: none;
	color: #8E1E04;
	}		


.def_list {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	}

.def_list dt {
	font-weight: bold;
	line-height: 110%;
	padding: 20px 0 0 0;

}

.def_list dd {
	font-weight: normal;
	line-height: 110%;
	margin: 0px;
	padding: 0 0 5px 20px;
	}
	
	

.def_list2 {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	}

.def_list2 dt {
	font-weight: bold;
	line-height: 120%;
	padding: 0;

}

.def_list2 dd {
	font-weight: normal;
	line-height: 100%;
	margin: 0px;
	padding: 0 0 5px 20px;
	}


.quoted_text dt {
	color: #2C4957;
	font-family: Tahoma-Bold, "Arial Black", sans-serif;
	font-size: 80%;
	font-weight: normal;
	line-height: 110%;
}
.quoted_text dd {
	font-size: 80%;
	color: #000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	font-style: italic;
}


.mod_list {
	list-style-type: none;
	padding: 0;
	margin: 0 0 10px 0;
	}

.mod_list li {
	font-size: 90%;
	font-weight: normal;
	line-height: 110%;
	padding: 0 0 10px 10px;
	background-image: url(images/RAOBBullet.jpg);
	background-repeat: no-repeat;
	background-position: 0px 5px;
	}
	
.sub_list {
	list-style-type: none;
	padding: 0;
	margin: 0 0 0 15px;
	}

.sub_list li {
	font-size: 90%;
	margin: 3px 0 0 0;
	padding: 0 0 0 10px;
	font-weight: normal;
	line-height: 110%;
	}

.brightred {
	color: #f00;
}


li a, p a, dt a, dd a {
	text-decoration: underline;
	color: #315060;
}

li a:hover, p a:hover, dt a:hover, dd a:hover {
	text-decoration: underline;
	color: #8E1E04;
}



#search ul {
	list-style-type: none;
}

#search li {
	float: left;
}



/* BUTTON BOX

.button a {
	font-style: normal;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
	padding: 3px 5px 5px 5px;
	background-color: #8e1e04;
	font-size: 70%;
	border: thin solid #6d1d04;
}
.button a:hover  {
	color: #FFFFFF;
	background-color: #315060;
	border-color: #233943;
	}
	
*/

.button a {
	font-style: normal;
	font-weight: bold;
	color: #8e1e04;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	font-size: 70%;
}
.button a:hover  {
	color: #233943;
	}
	





#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0;
	height: 41px;
	background-image: url(images/RAOBBottomBar.jpg);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	background-color: #FFFFFF;
	position: relative;
} 


#bottom_utilities {
	margin: 0px;
	padding: 0px;
	width: 750px;
	position:relative;
	top: 3px;
	left: -20px;
}
#bottom_utilities li {
	text-decoration: none;
	color: #FFFFFF;
	display: inline;
}
#bottom_utilities a {
	color: #FFFFFF;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-decoration: none;
	font-size: 75%;
	margin-top: 0px;
}
#bottom_utilities a:hover {
	color: #ccc;
	}

.bottom_text {
	margin: 0px;
	padding: 0px;
	position:relative;
	font-size: 70%;
	font-style: normal;
	text-align: right;
	right: 15px;
	color: #A0A0A4;
}

.bottom_text a {
	text-decoration: none;
	color: #2C4957;
	}	

.bottom_text a:hover {
	text-decoration: none;
	color: #8E1E04;
	}	

/* 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;
}
