/* 
		CSS Start Template for websites
		By Trond Ulseth - trond@idl.no
		   Jørgen Skogås - jorgen@idl.no
		Started 29th September 2009
		
		Goal:
					Not having to create the same stuff each time a new site is created
		
		Change log:
					29th September 2009 - 		started this template
					
		Once implemented for a site this template should/could be edited, added to and deleted from.
		Coments can be deleted as well, but it's adviced not to.
		Parst of this template is based on the article Squeaky Clean CSS by Lokesh
			http://www.huddletogether.com/2006/02/16/practical-web-development-tips/
		Styles for css/js navigation is kept in it's own stylesheet.
		
		Table of Contents:
		
					Setting up some Global Defaults
					Main Layout
					Page elements
					Header
					Logo
					Column Layout
					Footer
					Developed By
					Forms
*/

/* Setting up Some Global defaults
---------------------------------------------------------------------- */

/* since browsers have diferent default measures for margin and padding we're zeroing them out to be treated equaly all over */
@import url('reset.css');

body {
    position:relative;
}

fieldset,img {
    border:0;
}

html {
    height:100%;
    margin-bottom:1px;
}



:focus {
    outline:none;
}
		
/* wrapper setup */
div#wrapper {
    margin:auto;
    width:930px;
}

/* header */
div#header {
    margin:0;
    padding:35px 5px 0 5px;
    overflow:hidden;
}

/* logo */
div#logo {
    border:0;
    float:left;
    padding:0 0 8px 15px;
}

div#tagline {
    float:right;
    padding:5px 20px 0 0;
}

/* main body setup */
div#middle {
    width:auto;
    margin:0;
    clear:both;
    background:url(../wsimages/middle_bg.png) 50% 0 repeat-y;
    padding:0 19px;
    overflow:hidden;
}

div#middle_bg {
    border-top:#e2e2e2 1px solid;
}


/* left column */
div#left {
    width:210px;
    float:left;
    padding:24px 0 0 35px;
}

/* content column */
div#main {
    width:auto;
    margin:0 0 0 302px;
    padding:20px 28px 50px 0;
}

div#mainmiddle {
    margin:0;
    line-height:normal;
}

/* footer */
div#footer {
    margin:auto;
    width:900px;
    padding:54px 20px 20px 0;
    clear:both;
    background:url(../wsimages/footer_bg.png) 50% 0 no-repeat;
    text-align:right;
}

div#footer a {
    font-family:Georgia, "Times New Roman", Times, serif;
    font-size:10px;
    color:#003366;
}

/* clearing & floating */
.clearingfix:after {
    content:".";
    display:block;
    line-height:0;
    clear:both;
    visibility:hidden;
}

.clearingfix {
    display:block;
}

.floatbox {
    overflow:hidden;
}

/* featured */
div#featured {
    background:url(../wsimages/featured_bg.png) 50% 0 no-repeat;
    padding:15px 26px 0 15px;
    margin:11px 0 0 0;
    overflow:hidden;
}

div#featured_links {
    /*width:283px;*/
	width:900px;
	height:249px;
/*	height:220px;
    padding:0 0 30px 0;*/
    padding:5px;
	float:left;
    /*border-right:#e0dfdf 1px solid;*/
}

div#featured_links ul {
    margin:0;
    list-style:none;
    padding:20px 0 0 0;
}

div#featured_links ul li {
    display:block;
}

div#featured_links ul li a {
    border:0;
    padding:15px 0 0 35px;
    display:block;
    font-family:Georgia, "Times New Roman", Times, serif;
    font-size:15px;
    color:#003366;
    width:249px;
	height:30px;
    margin:0px;
	text-decoration:none;
}

div#featured_links ul li a:hover {
    text-decoration:none;
}

div#featured_links ul li a.active {
    color:#669933;  
    background:url(../wsimages/button_bg.png) 0 0 no-repeat;
	background-position: center left;
}

div#featured_content {
    padding:45px 0 0 0;
    float:right;
    width:580px;
    color:#333333;
    line-height:normal;
}

span.thumbnail {
	float:right;
	margin-left: 20px;
	margin-bottom: 10px;
}

/* address */
div#address h4 {
    margin:0 0 15px 0;
    font-family:Georgia, "Times New Roman", Times, serif;
    font-size:14px;
    color:#214d79;
    font-weight:normal;
}

div#address span {
    display:block;
    line-height:13px;
    padding:0 0 10px 0;
}

div#address a {
    color:#333333;
}