/*<!-- Edit history -->
 *<!-- KDG 07-09-2008 -->
 *
 *  Analytical Ventura master style controls.
 *
 *  Kariba's color palette: use these codes.
 *
 *  rgb(220,220,220); # light grey
 *  rgb(150,150,150); # dark grey
 *  rgb(50,50,50);    # near black - text
 *  rbg(0,0,0);       # black
 *  rgb(255,255,255); # white
 *  rgb(99,148,247);  # light blue slate
 *  rgb(21,95,243);   # saturated blue (medium)
 *  rgb(10,69,186);   # royal blue (dark)
 *  rgb(245,235,215); # cream  (light)
 *  rgb(228,291,152); # beige  (medium light)
 *  rgb(255,145,25);  # orange (medium dark)
 *  rgb(166,122,44);  # taupe  (dark)
 *
 *  Global elements here:
 */

body {
    font-family: verdana,helvetica,arial,sans-serif;
    background-color: rgb(150,150,150);
    color: rgb(50,50,50);
    font-size: 11px;
}

a:link    { color: rgb( 21,  95, 243); }
a:visited { color: rgb( 10,  69, 186); }
a:hover   { color: rgb(255, 145,  25); }
a:active  { color: rgb(228, 291, 152); }

hr { color: rgb(150,150,150); height: 2px; width: 100%; }
h2 { style="rgb(99,148,247)"; margin-bottom: 1px; font-size: 14px;
	line-height: 110%;
}
	
#container {
    width: 99%;
    max-width: 1169px;
    margin: 0px auto;
    background-color: white;
    line-height: 130%;
}

.round_outer {
    z-index: 50;
	background-image: url(../images/tl.png);
    background-repeat: no-repeat;
    background-position: top left;
	
}

.round_inner {
    z-index: 50;
	background-image: url(../images/tr.png);
    background-repeat: no-repeat;
    background-position: top right;
	
}

.rightfloat {
    float: right;
}

#brand {
    padding: 20px;
}

#brand img {
    float: left;
	padding: 5px;
    vertical-align: middle;
    border: none;
}

#brand p {
    float: right;
	margin-right: 30px;
	margin-top: 30px;
	font: 14px;
	line-height: 180%;
	
}

#brandend {
    clear: both;
    background-color: rgb(220,220,220);
}

#imagebar {
    background-image: url(../images/avhomeimg.png);
    clear: both;
	vertical-align: top;
	height: 110px;
}

#imagebar p {
    color: rgb(245,235,215);
    padding: 15px;
}

#imagebar em {
    font-weight: bold;
}

/* Generic small content box */
.contentbox {
    border: 2px solid rgb(220,220,220);
    padding: 0px;
    margin-bottom: 1px;
	line-height: 120%;
}

.contentheader {
    padding: 3px;
    background: rgb(220,220,220);
	height: 80%;
	line-height: 120%;
}

.contentbox p {
    padding: 3px;
}

/* Master page layout */
#main {
    clear: both;
}
#main hr {
    color: rgb(21,95,243);
}

#home-left {
    float: left;
    width: 20%;
    vertical-align: top;
    padding: 0;
    margin: 8px;
}

#home-center {
    float: left;
    width: 60%;
    vertical-align: top;
	padding: 3px;
    margin: 2px;
	border-right: 1px solid rgb(99,148,247);
}
#home-right img{
	float: center;
	border: 0px 
			 }
#home-right {
    float: right;
    width:15%;
    color: #505050;
	vertical-align: top;
    padding: 1px;
    margin: 1px;
}

/*  Content-only Pages */

#content-left {
    float: left;
    width: 70%;
    vertical-align: top;
    border-right: 1px solid rgb(99,148,247);
    padding: 6px;
    margin: 0;
}

#content-right {
    float: left;
    vertical-align: top;
    padding: 6px;
    margin: 0;
    color: rgb(99,148,247);
}

/* All pages have footers */

#footer {
    border-top: 2px solid rgb(21,95,243);
    margin: 2px;
    clear: both;
    overflow: auto;
	height: 45px;
	font-size: 10px;
}
#footer-left {
    float: left;
	width: 54%;
	vertical-align: top;
    margin: 0;
}

#footer-right {
    float: right;
	width: 43%;
	vertical-align: top;
    margin: 1px;
}
/*  Drop-down menu controls */

#menu {
    width: 100%;
    background: rgb(99,148,247);
    float: left;
	border-bottom: 1px solid rgb(10,69,86);
}

#menu ul {
    list-style: none;
    background-color: rgb(99,148,247);
    margin: 0;
    padding: 0;
	width: *;
    float: left;
	position: relative;
}

#menu a, #menu h1 {
    font: bold 11px/16px arial, helvetica, sans-serif;
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(99,148,247) rgb(99,148,247) rgb(99,148,247) rgb(99,148,247);
    margin: 0;
    padding: 2px 3px;
}
#menu a {
    background: rgb(10,69,86);
    color: rgb(245,235,215);
    text-decoration: none;
}
div#menu h1 a {
    background: rgb(99,148,247);
    color: rgb(245,235,215);
	border color: rgb(99,148,247);
    text-transform: uppercase;
}
#menu a:hover {
    background: rgb(21,95,243);
    color: rgb(255,145,25);
	
}

#menu li {
    background: rgb(99,148,247);
    color: rgb(245,235,215);
    position: relative;
}

#menu ul ul {
    position: absolute;
	width: 10em;
    z-index: 500;
}

#menu ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul {
    display: none;
}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul {
    display: block;
}

