@charset "utf-8";
/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #002157;
	background-image: url("http://www.yourvirtualhomeoffice.com/css/img/bg.gif");
	background-repeat: repeat-x;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #000;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 825px;
}
#outerWrapper #header {
	background-color: #002F66;
	font-size: 18px;
	font-weight: bold;
	height: 150px;
	line-height: 15px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #yvho_header dl {
	width: 350px;
	margin: 5px 5px 10px 20px;
	float: left;
	font-size: 20px;
	font-style: oblique;
	color: #FFFFF;
}

#outerWrapper #topNavigation {
	background-image: url(img/nav_top.gif);
	background-repeat: repeat;
	border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	height: 35px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation h1 a {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	background-color: none;
}
#outerWrapper #topNavigation h1 a:hover { 
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	background-color: none;
}
#outerWrapper #topNavigation h1 a:visited {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	background-color:#000252;
}

#outerWrapper #topNavigation h2 {
	color: #F8892D;
	font-size: 14px;
	padding: 10px 0 5px 0;
}
#outerWrapper #contentWrapper {
	background-image: url("http://www.yourvirtualhomeoffice.com/css/img/contentWrapper_bg.png");
	background-repeat: repeat-y;
	overflow: hidden;
}
#outerWrapper #contentWrapper #rightColumn {
	background-color: #CDE76D;
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
#outerWrapper #contentWrapper #rightColumn .top {
	background-image: url(img/nav_top.gif);
	background-repeat: repeat;
	padding: 5px 10px 5px 0;
	width: 200px;
	height: 10px;
	font-size: 16px;
	color: #F8892D;
}
#leftColumn {
	background-image: url(img/lcol_bg.gif);
	background-repeat: repeat;
	background-color: #CDE76D;
	float: left;
	padding: 75px 2px 0 10px;
	width: 30px;
	height: 700px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 20px 220px 0 45px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content a, a:visited {
	background-color: #CDE76D;
	color: #000;
	text-decoration: none;
}

#outerWrapper #contentWrapper #content a:hover {
	background-color: none;
	color: #006;
	text-decoration: underline;
	font-size: 12px;	
}
#outerWrapper #footer {
	width: 805px;
	background-color: #CDE76D; /* #002157 --- decide what color*/
	color: #002157;
	font-size: 14px;
	font-weight: bold;
	height: 80px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer a, a:visited {
	color: #002157;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
}
#outerWrapper #footer a:hover {
	text-decoration: underline;
	font-size: 14px;
}
.hspacer {
	height: 30px;
	width: 100%;
}
.vspacer {
	width: 20px;
	height: 100%;
}
.i {
	font-style: italic;
}
.bcolor {
	font-weight: bold;
	color: #006;
}
.b {
	font-weight: bold;
}
.b-i {
	font-style: italic;
	font-weight: bold;
}

.b-i-color {
	font-style: italic;
	font-weight: bold;
	font-size: 12px;
}

.b-i-color a, a:hover, a:visited {
	font-style: italic;
	font-weight: bold;
	font-size: 12px;
}
/**********************QUOTE SECTION **************************/

.quote {
	width: 400px;
	border: 3px ridge #006;
	background-color: #CDE76D;
	padding: 18px;
	margin: 10px 15px 5px 43px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
}
.quote a, a:visited {
 	color:#000; 
}

.quote a:hover {
 	color:#000066; 
	text-decoration: underline;
	font-size: 13px;
}
.cite {
	margin-left: 10px;
	font-weight: bold;
	color: #006;
}
/**********************FLOATS **************************/

.imgl {
	float: left;
	margin: 5px 19px 5px 5px;
}
.imgr {
	float: right;
	margin: 5px 5px 5px 9px;
}
.imgl-b {
	float: left;
	margin: 5px;
	border: 2px groove #006;
}
.imgr-b {
	float: right;
	margin: 5px;
	border: 2px groove #006;
}
.floatlft {
	float: left;
	margin: 8px;
}
.floatrgt {
	float: right;
	margin: 8px;
}
.b-i-color {
	font-style: italic;
	font-weight: bold;
	font-size: 12px;
	color: 006;
}

