/*
 *
 * BASE
 *
 */


body {
padding: 0;
margin: 0;
font-family: "lucida grande", verdana, sans-serif;
font-size: 12px;
line-height: 20px;
}

/* Reverse some of the changes caused by reset.css */
strong {
font-weight: bold;
}

.small {
font-size: 10px;
}

.boxed {
border: solid 1px #000;
}

a {
text-decoration: underline;
color: #39526b;
}

#content a:hover {
color: #73a5d3;
}


/*
 *
 * HEADER
 *
 */


#banner {
padding: 15px;
/* height = background image height - padding * 2 */
height: 20px;
text-align: right;
color: #fff;
font-size: 13px;
border-top: solid 1px #4e89b7;
border-bottom: solid 1px #3e6d92;
background-color: #ffffff;
background-image: url(/images/logo.png);
background-repeat: no-repeat;
}

#banner.alt {
background-image: url(/images/berg2.png);
}

#path {
/* top, right, bottom, left || top|bottom, left|right */
padding: 4px 0 5px 10px;
background: #eee;
color: #000;
font-size: 10px;
border-top: solid 1px #bbb;
border-bottom: solid 1px #bbb;
}


/*
 *
 * FOOTER
 *
 */


#fineprint {
margin: 40px 0 10px 0;
font-size: 9px;
}


/*
 *
 * MENU SIDEBAR
 *
 */


#menu {
float: left;
width: 110px;
padding: 0;
margin: 0;
font-size: 10px;
line-height: 13px;
}

#menu li {
padding: 0;
margin: 0;
border-top: 0;
border-right: solid 1px #ddd;
border-bottom: solid 1px #ddd;
border-left: 0;
}

.external {
background-color: #f7f7f7;
}

#menu li a {
display: block;
padding: 3px 18px;
text-decoration: none;
}

#menu li a:hover {
background: #eee;
color: #39526b;
}


/*
 *
 * COLUMN CONTENT LAYOUT
 *
 */


div.half {
    width: 44%;
}

div.right {
    clear: right;
    float: right;
}

div.half.right {
    margin: 0 4% 0 0;
}

div.left {
    /*clear: left;*/
    float: left;
}

div.full {
        width: 92%;
        float: none;
        clear: both;
}

div.clear {
    clear: left;
    float: left;
}

/*
 *
 * CONTENT AND HEADINGS
 *
 */

#content {
/* margin-left = #menu.width + a bit of spacing*/
margin-left: 120px;
}

/* Heading title */
#content h1 {
margin-top: 13px;
color: #444;
font-size: 15px;
}

/* Heading subtitle */
#content h2 {
margin: 5px 0 0 10px;
color: #555;
font-size: 12px;
}

#content .projectlogo {
float: right;
margin-right: 15px;
}

/* Content title */
#content h3 {
margin: 25px 0 5px 0;
color: #333;
font-size: 13px;
/* Leave some extra space between text and dotted line */
padding-bottom: 4px;
border-bottom: 1px dotted #ddd;
font-weight: bold;
}

/* Content subtitle */
#content h4 {
margin: 20px 0 0 10px;
color: #333;
font-size: 11px;
font-weight: bold;
}

#content p {
margin: 14px 0 0 10px;
}

#content blockquote {
border: solid 1px #bbb;
}

#content pre {
padding: 5px 9px;
background: #f4f4f4;
color: #333;
font-family: monospace;
}

#content ul
{
	list-style-type: square;
	margin-top: 5px;
	/* margin-left = #content p.margin-left + width of the square */
	margin-left: 25px;
}

#content table {
margin: 10px 0 0 10px;
}

#content input, select {
margin: 3px 0 0 5px;
}

#content .sidethrobber {
margin: 10px 0 0 20px;
}


/*
 *
 * EXTRA
 *
 */

.rss 
{
margin: 10px 0 0 20px;
padding-left: 20px;
height: 14px;
background-image: url(/images/rssfeed.png);
background-repeat: no-repeat;
}

/* The content of an element receiving the rss class always gets wrapped in a link, don't change the color of the element */
.rss a
{
text-decoration: none;
color: inherit;
}



/* From: http://matthewjamestaylor.com/blog/perfect-3-column.htm */
/* column container */
        .colmask {
                position:relative;      /* This fixes the IE7 overflow hidden bug */
                clear:both;
                float:left;
                width:1000px;                   /* width of whole page */
                overflow:hidden;                /* This chops off any overhanging divs */
        }
        /* common column settings */
        .colright,
        .colmid,
        .colleft {
                float:left;
                width:1000px;                   /* width of page */
                position:relative;
        }
        .col1,
        .col2,
        .col3 {
                float:left;
                position:relative;
                padding:0 0 1em 0;      /* no left and right padding on columns, we just make them narrower instead
                                                only padding top and bottom is included here, make it whatever value you need */
                overflow:hidden;
        }
        /* 3 Column settings */
        .threecol {
        }
        .threecol .colmid {
                right:330px;                    /* width of the right column */
        }
        .threecol .colleft {
                right:330px;                    /* width of the middle column */
        }
        .threecol .col1 {
                width:310px;                    /* width of center column content (column width minus padding on either side) */
                left:1010px;                    /* 100% plus left padding of center column */
        }
        .threecol .col2 {
                width:310px;                    /* Width of left column content (column width minus padding on either side) */
                left:360px;                     /* width of (right column) plus (center column left and right padding) plus (left column left padding) */
        }
        .threecol .col3 {
                width:310px;                    /* Width of right column content (column width minus padding on either side) */
                left:720px;                     /* Please make note of the brackets here:
                                                (100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
        }


