/* Start of CMSMS style sheet 'Stratosphere: Layout CSS' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

body {
text-align: left;
font-family:Georgia, "Times New Roman", serif;
font-size: 75.01%;
line-height: 1em;
}

div {
font-size: 1em;
}

img {
border: 0;
}

a,
a:link 
a:active {
text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
background-color: inherit; 
color:#F5C816;
font-weight:bold;
}

a:visited {
text-decoration: underline;
background-color: inherit;
color: #F5C816;
}

a:hover {
text-decoration: underline;
/*background-color: #C3D4DF;*/
/*color: #CE2318;*/
color:#fff;
}

/* basic layout */

body {
background-color:#09071B;
color:#F4C717;
}

div#pagewrapper {
width:840px;
margin:10px auto;
background-color:#09071B;
color:#F4C717;
background-image:url(images/layout/page-bg-narrow.jpg);
background-repeat:repeat-y;
}

div#header {
height:220px;
background: #09071B;    
}


div#header h1 a {
background: #09071B url(images/layout/header.jpg) no-repeat 0 0; 
display: block; 
height:220px;             /* adjust according your image size */
text-indent: -999em;  /* this hides the text */
text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}


* html div#header, * html div#header h1 a {/* hack for ie6 to fix extra space at bottom of header*/
margin:0 0 -10px 0;
}

div#content {
float:left;
padding:0px 30px;
}


#content-wide {
width:840;
padding:0px 30px;
}

div#main {
float:left;
width:460px;
}

div#main .inside {
padding:15px 0 0 0;
}

div#sidebar {
float:right;
width:320px;
display: inline;  /* FIX ie doublemargin bug */
margin-left: 0;
}

div#sidebar .inside {
padding:15px 0 0 20px;
}

div#sidebar div.inside img {
padding:4px;
border:1px solid #fff;
}

.columnbox {
width:100%;
overflow:hidden;
margin:20px 0;
padding:0 0 10px 0;
border-bottom:1px solid #ccc;
}

.columnbox-left {
float:left;
width:460px;
}

.columnbox-right{
float:right;
width:300px;
}

.columnbox-right img {
padding:4px;
border:1px solid #fff;
}



div#footer {
clear:both;
height:40px;
}

* html div#footer {/* hack for ie6 to fix extra space at bottom of footer*/
margin:0 0 -10px 0;
}

div#siteinfo p {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
text-align: center;
font-size: 0.8em;
font-weight:normal;
}

div#siteinfo p a {
font-weight:normal;
text-decoration:none;
color:#F5C816;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
height: 1px;
margin: 1em;
border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
float: left;
width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
float: right;
width: 49%;
text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1, div#content-wide h1 {
font-size: 2em;
line-height: 1em;
margin: 0;
font-weight:normal;
}

div#content h2, div#content-wide h2 {
/*color:#F5C816;*/
color:#fff;  
font-size:2em; 
text-align: left; 
padding:0;
padding-bottom: 1px;
border-bottom: 1px solid #e7ab0b; 
line-height: 1.5em;
margin: 0 0 0.5em 0;
font-weight:normal;
}

div#content h3, .columnbox h3 {
color:#fff; 
font-size: 1.5em;
line-height: 1.5em;
margin: 0 0 0.5em 0;
font-weight:normal;
}

div#content h4 {
color: #fff; 
font-size: 1.2em;
line-height: 1.3em;
margin: 0 0 0.25em 0;
}

div#content h5 {
font-size: 1.1em;
line-height: 1.3em;
margin: 0 0 0.25em 0;
}
h6 {
font-size: 1em;
line-height: 1.3em;
margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
font-size: 1.3em;
margin: 0 0 1.5em 0;  /* some air around p elements */
line-height:1.5em;
padding: 0;
}
blockquote {
border-left: 10px solid #ddd;
margin-left: 10px;
}
pre {
font-family: monospace;
font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
font-weight: bold;
}
em, i {
/* explicit setting for these */
font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
white-space: pre-wrap;       /* css-3 */
white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
white-space: -pre-wrap;      /* Opera 4-6 */
white-space: -o-pre-wrap;    /* Opera 7 */
word-wrap: break-word;       /* Internet Explorer 5.5+ */
font-family: "Courier New", Courier, monospace;
font-size: 1em;
}

pre {
border: 1px solid #000;  /* black border for pre blocks */
background-color: #ddd;
margin: 0 1em 1em 1em;
padding: 0.5em;
line-height: 1.5em;
font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
font-size: 1.0em;
line-height:1.4em;
margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
margin: 0 0 0.25em 3em;
}

div#dl dt {
font-weight: bold;
margin: 0 0 0.25em 3em;
}
div#dl dd {
margin: 0 0 0 3em;
}
/* END LISTS */
/* End of 'Stratosphere: Layout CSS' */

