html, body {
    margin: 0;
    padding: 0;
    height:100%;
    width:100%;
    /*background: #09c url(../gfx/bg.jpg);
    /*background-repeat: repeat-x;*/
    font-family: Arial, Verdana;
    font-size: 12px;
}

img { border:0; }

h1,h2,h3,h4,h5,h6 { margin-top: 0; }

a { color: #1100aa; }
a:hover { text-decoration: underline; }

/* Top */
#top {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    color: #FFF;
    background-color:#666;
    border-bottom: 1px solid #000;
    text-align: center;
    display: none;
}

#top #top-close {
    position: absolute;
    right:5px;
    top:5px;
    border: 1px solid #000;
    width:15px;
    height:15px;
    line-height:15px;
    font-size:10px;
}

#top #top-close:hover {
    background-color: #333;
    cursor: pointer;
}

/* Container */
#container {
    width:800px;
    position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	/*height:auto !important; /* real browsers */
	/*min-height:100%; /* real browsers */
}

/* Header */
#header {
    position: relative;
    width:800px;
    height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Logo */
#logo
{
    position:absolute;
    top:45px;
    left:50px;
    width: 156px;
    height: 30px;
    background: url(../gfx/vindfang_logo.png) no-repeat;
}

/* Menu */
#menu {
    position:absolute;
    bottom: 0px;
    right: 20px;
    width: auto;
    height: 30px;
    background-color: #fff;
    overflow: hidden;
}

#menu .left_corner {
    float:left;
    width: 15px;
    height: 30px;
    background: url(../gfx/menu_bg_corner.png) no-repeat;
}

#menu .right_corner {
    float:left;
    width: 15px;
    height: 30px;
    background: url(../gfx/menu_bg_corner.png) no-repeat -15px 0px;
}

#menu ul {
    float:left;
	margin:0px;
	padding:0px;
	list-style:none;
    background: url(../gfx/menu_bg_off.jpg);
}
#menu li {
	display:inline;
}
#menu li a {
	float: left;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 16px;
    line-height: 30px;
    font-family: verdana;
    /*border-right: 1px solid #666;*/
    /*font-weight: bold;*/
	color:#FFF;
	text-decoration: none;
}

#menu li a:hover {
    background: url(../gfx/menu_bg_on.jpg);
}

#menu li a.active {
    background: url(../gfx/menu_bg_on.jpg);
}

#menu li a.active:hover {
    color: #DDD;
}

/* Submenu */
#submenu {
    position:absolute;
    bottom: 0px;
    right: 20px;
    width: 780px;
    height: 30px;
    overflow: hidden;
    background: #91acc0;
}

/* Content */
#content {
    margin-top: 0px;
    padding-bottom: 15px;
    /*background: url(../gfx/background.jpg) no-repeat;*/
}
#content p { margin-top:0; }

/* Footer */
#footer {
    text-align: center;
    font-size: 10px;
    color: #999;
}

/* Miscellaneous */
.clear_left {
    clear: left;
    overflow: hidden;
    height: 1px;
}

.clear_right {
    clear: right;
    overflow: hidden;
    height: 1px;
}

.clear_both {
    clear: both;
    overflow: hidden;
    height: 1px;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility:hidden;
}

label.error { 
    margin-left: 5px;
    color: red;
    font-weight: bold;
}

span.red {
    color: red;
}

span.green {
    color: green;
}

span.bold {
    font-weight: bold;
}

div.grad75 {
    /*background-image: url(../gfx/grad75.png);*/
}