/**
 * styles.css
 *
 * $Id: styles.css 2470 2011-09-09 18:17:20Z admin $
 */

@import url(/dhlib/css/common.css);

/**
 *
 * LAYOUT
 *
 */

html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, Sans-serif;
    font-size: 95%;
    color: #111;
    background-color: #fff;
    text-align: center;
    min-width: 880px;
    height: 100%;   
}
#wrapper {
    margin: 0;    
    min-height: 100%;
}
#header {
    height: 100px;
    border-bottom: 4px solid #880404;
    background-color: #bbb;     
}
#header_inner {
    width: 820px;
    clear: both;
    font-size: 75%;
    margin: 0 auto;
    text-align: left;
    vertical-align: bottom; 
}
#header_inner .logo {
    float: left;
    margin: 0;
    padding: 20px 0 0 0px;
}    
#header_inner .damil_text {
    float: left;
    margin: 0;
    padding: 22px 0 0 5px;
}
#page_title {
    padding-top: 5px;
    padding-bottom: 10px;
} 
#page_title img {
    padding: 0 5px 0 0;
    vertical-align: middle; 
}   
#content {
    width: 820px;
    text-align: left; 
    margin: 0 auto;
    overflow:hidden;
    padding: 5px 5px 80px 5px; /* 'b' must be same height as the footer */
    color: #111;
    background-color: #fff;    
}
#content p,
#content form {
    font-size: 0.9em;
    line-height: 1.5em;
    padding-bottom: 10px;
}
#content table {
    font-size: 0.9em;
    line-height: 1.5em;
}
#main {
    padding: 10px 0 20px 0;
}
#footer {
    margin: 0;    
    position: relative;
    margin-top: -80px; /* negative value of footer height (incl border) */
    height: 76px;
    clear:both;
    color:#ccc;
    border-top: 4px solid #bbb;
    background-color: #880404;
}
#footer_inner {
    width: 820px;
    clear: both;
    font-size: 75%;
    margin: 0 auto;
    text-align: left;
    vertical-align: bottom; 
    padding: 10px 0 10px 0;    
}
#footer .section {
    float: left;
    padding-right: 10px;
    vertical-align: top;
}    

/* Opera Fix */
body:before {/* thanks to Maleika (Kohoutec)*/
    content:"";
    height:100%;
    float:left;
    width:0;
    margin-top:-32767px; /* thank you Erik J - negate effect of float*/
}

/**
 *
 * NAVIGATION
 *
 */

/* Anchors */
a:link,
a:visited,
a:active {
    color: #006;
    text-decoration: underline;
}
a:hover {
    color:#00f;
    text-decoration: underline;
}

/* Top Menu */
#nav {
    float: right;
    margin: 20px 0 0 0;
    padding: 3px 0 0 0;
    color: #fff;
    font-family: Arial, Helvetica, Sans-serif;
    font-size: 120%;
    font-weight: bold;
    list-style-type: none;
} 
#nav ul {
	list-style:none;
	float:left;
	width:100%;
    margin: 0;
    padding: 0;	
}
#nav ul li{
	float:left;
	position:relative;
    margin: 0 2px 0 0;
    padding: 0;
    line-height: 2em;
    list-style-type: none;
}
#nav ul a{
    float: left;
    width: 100px;
    margin: 0;
    padding: 0;        
    text-decoration: none;
    text-align: center;
}
#nav ul a:link,
#nav ul a:visited,
#nav ul a:active {
    color: #999;
    background-color: #880404;
}
#nav ul a.current {
    color:#fff;
}
#nav ul a:hover {
    color:#fff;
    background-color: #c00;
}

/* Dropdown */
#nav ul ul{
	background-color: transparent;
	list-style:none;
	position:absolute;
	width: 160px;	
	top: 2em;
	left:-9999px;  /* Hide it by placing it out of vision */
}
#nav ul ul li{
	padding-bottom: 1px;
	float:none;
}
#nav ul ul a{
	white-space:nowrap;
	width:100%;
	text-align: left;
	padding-left: 3px;
	border-top: 2px solid #bbb;
}
#nav ul li:hover ul{
	left:0; /* Display it on hover by bringing it back into vision */
}

/* Footer Menu */
#footer_nav {
    clear: both;
    background-color: transparent;
    text-align: center;
    padding-top: 12px;    
}
#footer_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#footer_nav li {
    display: inline;
    padding-left: 2px;
    color: #bbb;    
}
#footer_nav a:link,
#footer_nav a:visited,
#footer_nav a:active {
    color: #999;
    background-color: transparent;
    text-decoration:  none;
}
#footer_nav a:hover {
    color: #fff;
    background-color: transparent;
    text-decoration: underline;
}

/**
 *
 * SUNDRY
 *
 */
   
h1 {
    font-size: 1.25em;
    color: #c00;    
    vertical-align: middle; 
}
h2 {
    font-size: 1.1em;
}
h3 {
    font-size: 1.0em;
}
img {
    border: 0px;
}
.clear {
    clear: both;
}
.left {
    float: left;
}
.right {
    float: right;
}

.lhs {
    text-align: left;
}
.rhs {
    text-align: right;
}
.vtop {
    vertical-align: top;
}

