@charset "utf-8";
/*
	created by: Klaus Hoermann <klaus@3b-solutions.net>
	created for: Invite Business Consulting
	Client: Invite Business Consulting
	Description: Main CSS styles
	Copyright: (C) 3B-Solutions Klaus Hoermann 2010
*/


/********************************************************************/
/* HTML */

/* html tag */
html {
	/*height:100%;*/
	/*margin-bottom:1px;*/
}


/********************************************************************/
/* BODY */

/* body tag, general settings, color, font, ... */
body {
	background-color:#333333;
	color:#666666;
	font-family:Verdana, Geneva, sans-serif;
	height:100%;
	line-height:15px;
	margin:0;
	padding:0;
}


/********************************************************************/
/* GENERAL BODY STYLE */

/* H1 style */
body h1 {
	color:#67b6ea;
	font-size:20px;
	font-weight:normal;
	padding:0 0 15px 0;
}

/* H2 style */
body h2 {
	color:#666666;
	font-size:17px;
	font-weight:600;
	padding:5px 0 15px 0;
}

/* H3 style */
body h3 {
}

/* paragraph style */
body p {
	color:#666666;
	font-size:13px;
	line-height:17px;
	padding:0 0 10px 0;
	text-align:justify;
}

body ul {
	font-size:13px;
	line-height:17px;
	list-style-type:circle;
	margin:0 0 0 20px;
}

body ul li {
}

body ul ul {
}

body ul ul li {
}

/* general link style */
body a {
	color:#67b6ea;
}

/* general link hover style */
body a:hover {
}


/********************************************************************/
/* GLOBAL CLASSES */

/* clearing the floats (left and right) */
.clearer {
	clear:both;
}

/* red color text */
.redcol {
	color:red;
}


/********************************************************************/
/* CONTAINER */

/* main container div holding the whole website content */
#container {
	background-color:white;
	margin:20px auto;
	width:960px;
}


/********************************************************************/
/* HEADER */

/* header div */
#header {
	height:100px;
	position:relative;
	width:960px;
}

/* the header menu in the header div */
#headermenu {
	bottom:0;
	height:20px;
	position:absolute;
	right:0;
}

/* the headermenu list */
#headermenu ul {
	list-style-type:none;
}

/* the listitems are floating right */
#headermenu ul li {
	float:right;
	position:relative;
	overflow:hidden;
}

/* links in the headermenu */
#headermenu ul li a {
	cursor:pointer;
	display:block;
	float:left;
	margin:0 5px 0 0;
	outline:none;
	text-decoration:none;
	width:24px;
}

/* link text, which shows when mouse over */
#headermenu ul li a span {
	color:#666666;
	display:none;
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	font-weight:bold;
	height:18px;
	margin:0 0 0 20px;
	padding:0 0 0 10px;
	position:absolute;
	width:120px;
}


/********************************************************************/
/* MAINMENU */

/* mainmenu container */
#mainmenu {
	background-image:url(../img/backgrounds/main_menu_background.png);
	background-position:top left;
	background-repeat:repeat;
	height:30px;
	width:960px;
}

/* list style for main menu list */
#mainmenu ul {
	list-style-type:none;
	padding:0;
	margin:0;
}

/* first level items */
#mainmenu ul li {
	background-image:url(../img/backgrounds/separator.png);
	background-position:center right;
	background-repeat:no-repeat;
	float:left;
	font-size:12px;
	height:24px;
	padding:6px 10px 0 10px;
	position:relative;
}

/* first level links */
#mainmenu ul li a {
	color:white;
	display:block;
	float:left;
	height:30px;
	text-decoration:none;
}

/* hover and selected styles */
#mainmenu ul li a:hover, #mainmenu ul li a.selected {
	color:#999999;
}
/* only for selected */
#mainmenu ul li a.selected {
	font-weight:bold;
}

#mainmenu ul li ul {
	display:none;
}

/* subhover */
#mainmenu ul li span.subhover {
	background-position:bottom center;
	cursor: pointer;
}

/* style of subnav list*/
#mainmenu ul li ul.subnav {
	background-color:transparent;
	display:none;
	float:left;
	left:0px;
	list-style-type:none;
	position:absolute;
	top:30px;
	z-index:1000;
}

#mainmenu ul li ul.subnav li {
	background-image:none;
	border-bottom:1px solid #888888;
	background-color:#191919;
	/*filter:alpha(opacity=80);*/
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
	clear:both;
	height:20px;
	width:150px;
}

#mainmenu ul li ul.subnav li a {
	line-height:14px;
	height:20px;
	float:left;
	width:100%;
}

#mainmenu ul li ul.subnav li a:hover {
	text-decoration:underline;
}


/********************************************************************/
/* HEADERIMAGE */

/* the headerimages */
#headerimage {
	border-bottom:2px solid #52a2d5;
	height:202px;
	overflow:hidden;
	width:960px;
}


/********************************************************************/
/* BREADCRUMB MENU */

/* breadcrum menu container */
#breadcrumbmenu {
	border-bottom:1px solid #999999;
	height:21px;	
	padding:4px 0 0 0;
	width:960px;
}

/* link style in the breadcrumb menu */
#breadcrumbmenu a {
	color:#666666;
	font-size:11px;
	font-weight:bold;
	padding:0 10px 0 10px;
	text-decoration:none;
}

/* hover link style */
#breadcrumbmenu a:hover {
	text-decoration:underline;
}

/* span class for text in the breadcrumb menu */
#breadcrumbmenu span.regular {
	font-size:11px;
	padding:0 0 0 10px;
}


/********************************************************************/
/* SIDEBAR */

/* sidebar div container */
#sidebar {
	background-image:url(../img/backgrounds/sidebar_background.png);
	background-position:top left;
	background-repeat:no-repeat;
	float:left;
	min-height:300px;
	width:218px;
}

/* navigation item content */
.item {
	background-color:transparent;
	padding:10px;
	width:198px;
}

/*  */
.item span.heading {
	color:#385fa4;
	font-size:12px;
	font-weight:bold;
	text-transform:uppercase;
}

/*  */
.item ul.navigation {
	list-style-image:url(../img/icons/arrow.png);
	font-size:12px;
	margin:0;
	padding:10px 0 0 15px;
}

/*  */
.item ul.navigation li {	
	border-top:1px dotted #999;
	padding:3px 0 3px 0;
}

/*  */
.item ul.navigation li:first-child
{
	border-top:0;
}

/*  */
.item ul.navigation li a {
	color:#666666;
	text-decoration:none;
}

/*  */
.item ul.navigation li a:hover {
	font-weight:bold;
}

/*  */
.item ul.navigation li ul.subnav{
	color:#666666;
	list-style-type:square;	
	margin:0 0 0 10px;
	padding:0 0 0 15px;
}

/*  */
.item ul.navigation li ul.subnav li {
	border:0;
}

/*  */
.item ul.navigation li ul.subnav li a {
	color:#385fa4;
	font-size:11px;
}

/*  */
.item ul.navigation li ul.subnav li a:hover {
}

/*  */
.item ul.navigation a.selected {
	color:#666666;
	font-weight:bold;
	text-decoration:none;
}

/*  */
.item ul.navigation a.selected {
	color:#67b6ea;
	list-style-type:square;
}

/*  */
.item ul.navigation li ul.subnav li a.selected {
	color:#385fa4;
}


/********************************************************************/
/* CONTENT */

/* content container */
#content {
	float:left;
	padding:7px;
	width:728px;
}


/********************************************************************/
/* FOOTER */

/* footer container */
#footer {
	background-color:#222222;
	height:70px;
	width:960px;
}

/*  */
#copyright, #footermenu, #contact {
	color:#888888;
	float:left;
}

/*  */
#copyright p, #footermenu ul li a, #contact p a {
	font-size:11px;
}

/*  */
#copyright {
	padding:25px 0 0 10px;
	width:380px;
}

/*  */
#footermenu {
	padding:24px 0 0 0;
	width:250px;
}

/*  */
#footermenu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	text-decoration:none;
}

/*  */
#footermenu ul li {
	float:left;
	width:50px;
	padding:0 10px 0 10px;
	text-align:center;
}

/*  */
#footermenu ul li a {
	color:#888888;
	text-decoration:none;
}

/*  */
#footermenu ul li a:hover, #contact p a:hover {
	color:white;
	font-weight:bold;
}

/*  */
#contact {
	float:right;
	padding:16px 0 0 0;
	width:250px;
}

/*  */
#contact p {
	float:right;
	height:20px;
	padding:0 5px 0 0;
}

/*  */
#contact p a {
	color:#888888;
}

/*  */
#contact img {
	float:right;
	padding:0 10px 0 0;
}


/********************************************************************/
/* CONTENT TABLE */

/* table style */
.contenttable {
	border:0px solid white;
	width:700px;
}

/* table row style */
.contenttable tr {
	height:50px;
}

/* table cell style */
.contenttable td {
	border:0;
	padding:0px;
	vertical-align:top;
}

/* style for images in a table cell */
.contenttable td img {
	padding:0 5px 0 0;
}

/* paragraph style in a table cell */
.contenttable td p {
	text-align:left;
}





