/* 
    Document   : header
    Created on : Feb 14, 2009, 2:40:07 PM
    Author     : rbsfou
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

div#header {
    padding-top: 10px;
    margin-bottom: 0;
	background-image: url(/_resources/images/textures/sky.jpg);
	background-position: 0 -114px;
	background-color: transparent;
	background-repeat: no-repeat;
}

div#header div {
    margin-left: 20px;
}

div#headerlogo {
    width: 905px ;
    height: 100px;
    background-image: url(/_resources/images/logos/automech-uk_shiny.png);
    background-repeat: no-repeat;
    clear: right;
}

div#headercaption {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.2em;
    clear: right;
	color: #000B8B;
	font-weight: bold;
}

div#header div#menu {
    margin-left: 0;
    padding-top: 0.1em;
    background-color: #000B8B;
}

div#menu ul {
    list-style-type: none;
    height: 1.7em; /* we need to give this a height because all the child elements are floated, so this is no longer floated itself*/
    margin: 0;
    padding: 5px 0 0 35px;
}

div#menu li {
    float: left;
    width: auto;
	margin: 0 3em 0 0;
}

div#menu li.selected {
    color: yellow;
    text-decoration: underline;
}

div#menu li a,div#menu li a:active,div#menu li a:visited {
    color: white;
    text-decoration: none;
}

div#menu li a:hover {
    color: white;
    text-decoration: underline;
}

