/***********************
	FILE
************************
Author:			Benjamin Stellmacher
				<benjamin.stellmacher@hellgrau.com>
Description:	Contains global definitions
***********************/

/***********************
	DOCUMENT
***********************/

/* Global White Space Reset */
* {
	margin: 0;
	padding: 0;
}

html {}

body {
	margin: 0;
	text-align: center;
	font-family: Verdana, Arial, sans-serif;
	background: #d3d4d4 url(../images/bg_main.jpg) repeat-x left top;
}


/***********************
	GENERAL DEFINITIONS
***********************/

h1, h2,h3,p,div,span,a,form,label,input,select,textarea,ul,ol,li {
	font-family: Verdana, Arial, sans-serif;
}

/* text elements */

div,span,p,li {
	font-size: 11px;
	color: #4e4f50;
}

/* forms */

fieldset{ border: none; }
label {}
input,textarea,select {}
input {}

/* links */

img 		{ border: none; }
a img 		{ border: none; }
a 			{ font-size: 11px; text-decoration: underline; }
a:visited 	{  }
a:focus 	{  }
a:hover 	{  }
a:active	{  }

/* utility */

.bold 		{ font-weight: bold; }
.underline 	{ text-decoration: underline; }
.notice 	{ font-weight: bold; color: #f00; }

.pre 		{ white-space: pre; }
.no-indent 	{ text-indent: 0px; }
.no-break 	{ white-space: nowrap; }

.float-left 	{ float: left; margin: 0 5px 0 0; }
.float-right 	{ float: right; margin: 0 0 0 5px; }
.float-none 	{ float: none; }
.clear 			{ clear: both; }
.centered 		{ text-align: center; }


/***********************
	MAIN
***********************/

div#main {
	margin: 0 auto;
	padding: 5px 0;
	width: 975px;
	text-align: left;
}


/***********************
	HEADER
***********************/

div#header {
	margin: 0 0 12px 0;
	width: 975px;
	height: 67px;
	background: transparent url(../images/header.png) no-repeat;
	behavior: url(scripts/iepngfix.htc);
}

div#header div#header-left {
	float: left;
	margin: 5px 0 0 8px;
	width: 200px;
}

div#header div#header-right {
	float: right;
	margin: 0 0 0 8px;
	width: 700px;
}

div#header div#header-right div {
	float: right;
	margin: 18px 5px 0 0;
	color: #fff;
	text-align: right;
}

div#header div#header-right div span {
	color: #fff;
}
div#header div#header-right img {
	float: right;
	margin: 2px 7px 0 0;
}

/***********************
	CONTENT
***********************/

div#content {
	margin: 0;
	padding: 0;
}

/* content elements */

div#content h1 {
	margin: 5px 0 15px 0;
	padding: 0 5px 5px 5px;
	font-size: 16px;
	font-weight: normal;
	color: #1c6dbc;
}

div#content h2 {
	margin: 0 0 2px 0;
	font-size: 11px;
	line-height: 25px;
	font-weight: bold;
	color: #ffffff;
	background: #1c6dbc url(../images/headline-bar.png) repeat-x;
	behavior: url(scripts/iepngfix.htc);
}

div#content h2 span {
	margin: 0 0 0 5px;
	color: #ffffff;
}

div#content h3 {
	margin: 0 0 5px 0;
	font-size: 11px;
	font-weight: bold;
	color: #1c6dbc;
}

div#content p {
	margin: 0 0 10px 0;
	padding: 0 0 0 0;
}

div#content a {
	display: block;
	padding-left: 18px;
	color: #1c6dbc;
	text-decoration: underline;
	background: #d4d4d4 url(../images/icon_link_wide_dark.gif) no-repeat;
}
div#content div.element-grey a {
	background: #e8e8e8 url(../images/icon_link_wide_light.gif) no-repeat;
}

div#content a div.link-arrow {
	float: left;
	margin: 3px 4px 0 0;
	width: 9px;
	height: 9px;
	background: #1c6dbc url(../images/icon_link.gif) no-repeat;
}

div#content a.cta,
div#content .element-grey a.cta {
	padding: 3px 6px 3px 18px;
	border: 1px solid #e0dfdf;
	background: #1c6dbc url(../images/icon_link_cta_wide.gif) no-repeat;
}

div#content a.cta.left { float: left; }
div#content a.cta.right { float: right; }

div#content ul,
div#content ol {
	margin: 5px 0 5px 0px;
}

div#content ul li {
	margin: 0 0 5px 0;
	padding: 0 0 0 15px;
	list-style: none;
	font-size: 11px;
	font-weight: bold;
	color: #1c6dbc;
	background: #e8e8e8 url(../images/icon_link_wide_light.gif) no-repeat;
}
div#content ul li a {
	padding-left: 0;
	text-decoration: none;
	background: transparent none;
}
div#content div.element-grey ul li a {
	padding-left: 0;
	text-decoration: none;
	background: transparent none;
}

div#content ul li li { font-weight: normal; }
div#content ul li li a { text-decoration: underline; }
