/* Start of CMSMS style sheet 'Kibo Main' */
* {
margin:0;
padding:0;
}

body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
   line-height: 1.2em;
   background: url(uploads/images/layout/body_bg.jpg);
   background-color: #1b1111;
   color: #fff;
}

div {
font-size: 1em;
}

img {
border: 0;
}

a,
a:link 
a:active,
a:visited {
   text-decoration: none;
   color: #f00; 
  outline: 0;  /* usuwa kropkowane obramowanie pod FF itp. */
}

a:hover {
   text-decoration: none;
   color: #c60000;
}

/*****************
basic layout 
*****************/

div#pagewrapper {
margin: 0 auto; 
width: 950px;
background-color: #000;
color: #fff;
}

div#header {
position: relative;
height: 100px; 
width: 950px;
background: url(uploads/images/layout/top.jpg) no-repeat left top;
}

div#header a#kibo_link, div#header a#bokskobiet_link {
  position: absolute;
  display: block;
  top: 30px;
  outline: 0;
}

div#header a#kibo_link {
  left: 90px;
  width: 120px;
  height:45px;
}

div#header a#bokskobiet_link {
  left: 535px;
  width: 230px;
  height:45px;  
}

div#header h1 {
display: inline;
padding: 0px;
margin: 0px;
}

div#header h1 a,
div#header h1 a:link,
div#header h1 a:visited,
div#header h1 a:active {
/* you can set your own image here 
   background: #460000 url('images/newKibo/kibo_950_volley.png') no-repeat;
*/
   display: block; 
height: 95px;
width: 950px;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
padding: 0px;
margin: 0px;
border: 0px;
}

div#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

div#content {
   margin: 1.5em auto 2em 0; /* some air abobe and under menu and content */
}

div#main {
   margin-left: 150px;
   margin-right: 10px;
}


div#sidebar {
   float: left; 
   width: 140px;
   display: inline; 
  padding-top: 40px;
  background: url(uploads/images/layout/sidebar_header.gif) no-repeat center top;
}

div#footer {
  position: relative;
  clear:both;       /* keep footer below content and menu */
  color: #fff;
  background: url(uploads/images/layout/footer.png) repeat-x left top #530f0b; 
  height: 35px;
}

div#footer p {
  line-height: 35px;
   font-size: 0.8em;
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

div#footer #footer_left, div#footer #footer_right {
  width: 35px;
  height: 35px;
}

div#footer #footer_left {
  position: absolute;
  top: 0;
  left: 10px;
  background: url(uploads/images/layout/footer_kibo.png) no-repeat left top;
}

div#footer #footer_right {
  position: absolute;
  top: 0;
  right: 10px;
  background: url(uploads/images/layout/footer_bk.png) no-repeat left top;
}


/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 2px;
margin: 0.1em 4em 0.7em 4em;
   border-bottom: 1px solid #760000;
}

/* 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 {
clear: both;
  /*float: right;*/
  /*width: 49%;*/
display: block;
}

div.right49 p {
  text-align: right;
}


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

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
  height: 28px;
  padding-left: 0.5em;
  margin: 0 0 0.5em 0;
  font-size: 1.3em; 
  text-align: left; 
  line-height: 28px;
  color: #fff; 
  background: url(uploads/images/layout/header_01.jpg) no-repeat left top;
}
div#content h3 {
   color: #fff; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}

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: 1em;
   margin: 0.5em 0 0.5em 0;  /* some air around p elements */
   line-height: 1.3em;
   padding: 0;
text-align: justify;
text-indent: 30px;
}

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;
}


/* 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 */

h2 a,
h2 a:link,
h2 a:visited {
color: #fff;
text-decoration: none;
border: none;
}

h2 a:hover {
color: #eee;
}

/* End of 'Kibo Main' */

