/* GENERAL STYLES */
/* 
General style definitions (applicapable to entire site).

Site: Klima-it.dk
Author: Joakim Jensen Møller & Adam Barry
Date: 9 September 2008
Base by Adam Barry
----------------------------------------------------------*/

/***********************************************************
Overall style definition
***********************************************************/
* { 	/* Remove padding and margin for all classes where
	   these attributes are not defined. Fixes some IE
	   bugs. */
	padding: 0;
	margin: 0;
}

body {
	background-color: #e8e8e8;
	background-position: 0 0;
	background-repeat: repeat-x;
	font-family: "georgia", serif;
	font-size: small;
	text-align: center;
	color: black;
	padding-bottom: 30px;
	cursor: default;
}


/*: Headings
----------------------------------------------------------*/
h1, h2, h3 {
	font-family: "myriad pro",sans-serif;
	text-align: left;
	cursor: text;
}

h1 {
	background-color: inherit;
	font-size: 1.8em;
	font-weight: normal;
	color: black;
padding-bottom: 10px;
}

h1:first-letter {
	text-transform: capitalize;
}

h2 {
	background-color: inherit;
	font-size: 1.5em; 
	font-weight: bolder;
	text-align: left;
	letter-spacing: 0;
	color: black;
	margin-top: 1.2em;
	margin-bottom: .2em;
}

h2:first-letter {
	text-transform: capitalize;
}

h3 {
	background-color: inherit;
	font-size: 1.2em; 
	font-weight: bold;	 
	text-align: left;
	color: black;
	margin-top: 1.2em;
	margin-bottom: .2em;
	clear: right;
}

h3:first-letter {
	text-transform: capitalize;
}


/*: Paragraphs
----------------------------------------------------------*/
p {
	font-size: 1em;
	text-align: left;
	line-height: 1.3em;
	margin-bottom: 1em;
	cursor: text;
}


/*: Lists
----------------------------------------------------------*/
ul, ol {
	font-size: 1em;
	text-align: left;
}

li {
	line-height: 1.3em;
}

dl {
	list-style-type: none;
}

dt {
	font-family: georgia, serif;
	text-align: left;
	cursor: text;
	background-color: inherit;
	font-size: 1.2em; 
	font-weight: bolder;
	letter-spacing: 0em;
	color: black;
	margin-top: .7em;
	margin-bottom: .7em;
	list-style-type: none;
}

dd {
	list-style-type: none;
}


/*: Anchors/Links
----------------------------------------------------------*/
a {
	background-color: inherit;
	font-weight: normal;
	text-decoration: none;
	color: #e57200;
	cursor: pointer;
}

#site a:hover {
	background-color: inherit;
	color: #8b9980;
	text-decoration: none;
}

a:active {
	background-color: inherit;
	color: #e57200;
}

a:visited {
	background-color: inherit;
	color: #e57200;
}


/*: Images
----------------------------------------------------------*/
img {
	border: none;
}


/*: Form elements
----------------------------------------------------------*/
fieldset {
	width: 100%;
	padding-bottom: 10px;	
	float: left;
}

legend {
	font-family: arial, "trebuchet ms", sans-serif;
	background-color: inherit;
	font-weight: bold;
	color: #032958;	
	margin-left: 5px;	
}

fieldset ul {
	width: 100%;
	padding-top: 10px;
	float: left;
}

fieldset li {
	width: 100%;
	list-style-type: none;
	padding-top: 2px;
	padding-bottom: 2px;
	float: left;
}

fieldset label {
	width: 70px;
	float: left;
}

fieldset input {
	font-size: 1em;
	border: 1px solid #658FA4;
	padding-left: 2px;
	float: left;
}

fieldset input.text {
	height: 19px;
	background-color: white;
	font-size: 1.2em;
	color: inherit;	
	border-color: #cdc9c0;
}

fieldset input.text.filled {
	background-color: #D6EBCF;
	color: black;
}

fieldset input.text.required, fieldset p.required {
	background-image: url(../graphics/form/field_required.png);
	background-repeat: no-repeat;
	background-position: right top;
}

fieldset input.text.required.filled {
	background-image: none;
}

fieldset p.required {
	background-position: 0 3px;
	font-size: .85em;
	font-weight: bold;
	padding-left: 15px;
	margin-left: 15px;
}

fieldset textarea {
	font-size: 1em;
	border: 1px solid #CDC9C0;
	float: left;
}

fieldset span.validator {
	background-color: inherit;
	color: red;
	padding-left: 5px;
	float: left;
}

button {
	width: auto;		/* IE requires this paramater to avoid extra width on buttons. Is dependent on overflow:visible in same CSS class :| */
	height: 21px;
	background-color: inherit;
	background-image: url(../graphics/buttons/bg.gif);
	background-position: 0 0;
	background-repeat: repeat-x;
	font-family: georgia, serif;
	font-size: 0.85em;
	color: white;
	text-transform: uppercase;
	border: 1px solid #874301;
	padding-top: 1px;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 1px;
	margin-top: 5px;
	overflow: visible;
	z-index: 0;
	cursor: pointer;
}

button:hover {
	background-position: 0 -21px;
}

.watermark {
	background-color: inherit;
	color: #808080;
}

#site .error {
	border-color: red;
}


/*: Special styles used throughout the site
----------------------------------------------------------*/
.hidden {
	display: none;
}

.date {
	background-color: inherit;
	font-size: 0.8em;
	font-weight: bold;
	color: #5E5E62;
}

a.rss {
	background-image: url(../graphics/feed-icon-14x14.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 17px;
}

acronym {
	border-bottom: 1px dotted black;
	cursor: help;
}

span.heading {
	font-family: "trebuchet ms", sans-serif;
	font-weight: bold;
	display: block;
}


/***********************************************************
Global Layout definition
***********************************************************/
#container { /* Container responsible for centering #site */
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#site { /* Global site container. Floated to enable Liquid
	   layout */
	width: 940px;
	background-color: white;
	background-image: url(../graphics/);
	background-position: 0 0;
	background-repeat: repeat-x;
	color: inherit;
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 15px;
	margin-bottom: 30px;
	float: left;
	position: relative;
	top: 0;
	left: 0;
}


/*: Logo
----------------------------------------------------------*/
#logo {
	height: 85px;
	float: left;
	cursor: pointer;
	position: relative;
	top: 0;
	left: -13px;
}

#logo img {
	float: left;
}

#logo h1, #logo h2, #logo p {
	display: none;
}


/*: Banner
----------------------------------------------------------*/
.banner {
	float: right;
}

/*: Initiatives
----------------------------------------------------------*/
.initiatives {
	float: right;
}

.initiatives li {
	height: 69px
	list-style-type: none;
	float: left;
	overflow: hidden;
}


/*: Header
----------------------------------------------------------*/
.header {
	width: 903px;
	background-color: #3e552b;
	font-family: arial, sans-serif;
	font-size: 0.93em;
	color: inherit;
	padding-left: 17px;
	padding-right: 20px;
	float: left;
}
.header .search {
	width: 180px;
	border: none;
	padding-top: 13px;
	padding-bottom: 0;
	float: right;
}

.header .search legend, .header .search label {
	display: none;
}

.header .search ul, .header .search li {
	width: 130px;
	padding: 0;
}

.header .search input {
	width: 128px;
}

.header .search button {
	background-image: none;
	background-color: transparent;
	font-family: arial, sans-serif;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	border: none;
	margin-top: 0;
	float: right;
}


/*: Navigation: General
----------------------------------------------------------*/
.navigation li ul li a {
	z-index: 1;
	display: none;		/* initial display state */
}

.navigation li.stretch a {
	display: block;
	z-index: 10;
}


/*: Navigation: Primary
----------------------------------------------------------*/
.primary {
	width: 723px;
	list-style-type: none;
	clear: left;
	float: left;
	position: relative;
	z-index: 2;
}

.primary li {
	float: left;
	position: relative;
}

.primary li:hover {
	background-color: #e57200;
	color: inherit;
}

.primary a {
	height: 37px;
	background-color: inherit;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	line-height: 1.9em;
	padding-top: 13px;
	padding-left: 8px;
	padding-right: 8px;
	float: left;
}

#site .primary a:hover {
	background-color: inherit;
	color: white;	
}


/*: Navigation: Sub level
(remove this section if single level menu)
The initial state of the submenus is set to "display: none"
----------------------------------------------------------*/
.primary li ul {
	list-style-type: none;    
	margin-top: 1px;
	clear: both;
	display: block;		/* initial display state */
	float: left;
	position: absolute;
	top: 49px;
	left: 0;
	z-index: 1;
}

.primary li ul li {
	border-left: none;
	border-right: none;
	clear: both;
	z-index: 1;
}

.primary li ul li a {
	width: 155px;
	height: 100%;
	background-color: #3E552B;
	color: white;
	text-transform: none;
	line-height: 1.3em;
	border-bottom: 1px solid #657756;
	padding-top: 6px;
	padding-left: 17px;
	padding-bottom: 6px;
	float: left;
}

.primary li ul li:first-child a {
	border-top: 4px solid #e57200;
}

.primary li ul li a:hover {
	background-color: #e57200;
	color: white;
}

.primary li.stretch a {
	display: block;
}


/*: Navigation: special
----------------------------------------------------------*/
.primary li.first {
	border-left: none;
}

.primary li.selected a, .primary li.selected ul li.selected a {
	background-color: #e57200;
	color: white;
}

.primary li.selected ul li a {
	background-color: #3E552B;
	color: white;
}

.primary li.selected ul li a:hover {
	background-color: #e57200;
	color: white;	
}


/*: Content
----------------------------------------------------------*/
.content {
	width: 940px;
	background-color: white;
	color: inherit;
	text-align: left;
	margin-top: 15px;
	float: left;
	clear: both;
}

.content p a {
	border-bottom: 1px dotted #37658F;
}

.content p a:hover {
	border-bottom: 1px solid #EF7430;
}

.content ul, .content ol {
	padding-top: .5em;
	padding-bottom: 1em;
}

.content ul {
	list-style-type: square;
}

.content li {
	margin-left: 1.2em;
}

.content ol li {
	margin-left: 1.9em;
}

.content address {
	width: 100%;
	font-weight: bold;
	font-style: normal;
	padding-bottom: 1em;
	float: left;
}


/*: Columns
----------------------------------------------------------*/
.column {
	width: 300px;
	float: right;
}

.column blockquote .quotation {
	width: 10px;
	height: 8px;
	background-image: url(/graphics/quotation.png);
	display: inline;
	z-index: 2;
}


.column .banner {
	width: 300px;
	margin-top: 17px;
	overflow: hidden;
}

.column.first {
	width: 620px;
	float: left;
}


/*: RSS anchor
----------------------------------------------------------*/
a.rss-link {
	width: 280px;
	height: 23px;
	background-color: #e57200;
	background-image: url(/graphics/rss.gif);
	background-position: 0 0;
	border-top: 1px solid #e77c12;
	border-bottom: 1px solid #e77c12;
	color: white;
	padding-top: 8px;
	padding-left: 20px;
	margin-bottom: 1px;
	display: block;
	float: left;
}

#site a.rss-link:hover {
	color: #fec790;
}


/*: Login form
----------------------------------------------------------*/
.login {
	width: 260px;
	background-color: #3e552b;
	color: white;
	border: none;
	padding: 20px;
	margin-bottom: 17px;
	float: left;
	position: relative;
}

.login legend {
	display: none;
}

.login ul {
	width: 100%;
}

.login ul, .login li {
	padding: 0;
	margin: 0;
}

.login li {
	margin-bottom: 3px;
}

.login li span {
	font-size: 0.8em;
	font-style: italic;
	display: inline;
	position: relative;
	top: -7px;
	left: 0;
}

.login li span.result {
	font-size: 0.9em;
	display: block;
	position: static;
}

.login li span.error {
	background-color: inherit;
	color: red;
}

.login img {
	width: 80px;
	padding-right: 10px;
	padding-bottom: 10px;
	float: left;
}

.login p {
	text-transform: uppercase;
	float: left;
}

.login p span {
	font-style: normal;
	text-transform: none;
	padding-top: 10px;
	padding-left: 5px;
	display: block;
}

.login label {
	width: 100px;
	background-color: inherit;
	font-size: 0.85em;
	color: white;
}

.login input.text {
	width: 155px;
	font-size: 0.95em;
}

.login input.checkbox {
	border: none;
	padding: 0;
	margin-left: -3px;
}

.login button {
	margin-top: 5px;
	margin-left: 7px;
	float: right;
}

.login button:hover {
	background-position: 0 -21px;
}

.login a {
	font-size: 0.85em;
	font-weight: bold;
}

.login .result {
	background-color: inherit;
	font-size: 1em;
	color: white;
	padding-top: 1em;
	float: left;
}

.login .result li {
	list-style-type: square;
	margin-left: 1.2em;
	float: left;
}


/*: Footer
----------------------------------------------------------*/
#footer {
	width: 900px;
	background-color: #3e552b;
	color: white;
	padding: 20px;
	margin-top: 17px;
	float: left;
	clear: both;
}

#footer address {
	width: 400px;
	font-size: .75em;
	font-style: normal;
	text-align: left;
	float: left;
}

#footer address span {
	width: 134px;
	background-image: url(/graphics/footer/separator.gif);
	background-repeat: repeat-y;
	display: block;
	float: left;
}

#footer address span span {
	width: 45px;
	display: inline;
}

#footer address span.first {
	background-image: none;
	text-transform: uppercase;
	padding-left: 0;
}

#footer address a {
	color: white;
}

#footer address br {
	display: none;
}


/*: Partners
----------------------------------------------------------*/
ul.partners {
	width: 100%;
	list-style-type: none;
	padding-top: 20px;
	float: left;
}

.partners li {
	padding-left: 25px;
	float: left;
}

.partners li.first {
	padding-left: 0;
}


/***********************************************************
Hacks to overcome IE's float bugs:
	* Randomly appearing text (text from the last
	  floated element in the markup).
***********************************************************/
/* Start: Hide from IE5-mac. Only IE-Win sees this. \*/
 
* html p {
  	height: 1%;
  }
  
* html select, * html textarea {
	margin-left: -3px;
  }  
  
/* End: Hide from IE5/mac */

/* EDITOR PROPERTIES */

