/* Start of CMSMS style sheet 'Lampa i Sadek: Layout' */
/*****************
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;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
  text-decoration: none;
  outline: none; 
  color: #7578eb; 
  font-weight: bold;
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   color: #ccc;
}

/*****************
basic layout 
*****************/
body {
   background-color: #050755;
   color: #f0f0f0;
}

/* center wrapper, min max width */
div#pagewrapper {
  width: 900px;
  margin: 0 auto;       /* this centers wrapper */
  background: url(uploads/images/layout/pagewrapper_bg.gif) repeat-y center top;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
position: relative; 
   height: 250px;    /* adjust according your image size */
   background: url(uploads/images/layout/top.jpg) no-repeat left top;
}

div#header h1 a {
position: relative;
  top: 135px;
  left: 240px;
  display: block;
  height: 90px;             
  width: 460px;
  text-indent: -999em;  /* this hides the text */
  text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#header #lampa_home_btn a,
div#header #sadek_home_btn a {
  position: absolute;
  display: block;
  width: 180px;
  height: 180px;  
  bottom: 0;  
}

div#header #lampa_home_btn a {
  left: 10px;
}

div#header #sadek_home_btn a {
  right: 10px;
}

/* position for the search box */
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.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#content {
}

div#main {
  width: 460px;
  padding: 0 10px 10px 10px;
  float: left;
  background: url(/uploads/images/layout/main_header.png) no-repeat left top #fff;
}

div#main .text_block {
  width: 460px;
  padding-top: 8px;
  background: url(/uploads/images/layout/news_bg_01.png) no-repeat left top #050755;
}

div#main .text_block .text_block_main {
  padding: 0 6px;
}

div#main .text_block .text_block_main h1 {
  margin-bottom: 10px;
  padding: 0 0 5px 22px;
  font-size: 16px;
  color: #c0c0c0;
}

div#main .text_block .text_block_main h2 {
  margin-bottom: 10px;
  padding: 0 0 5px 22px;
  font-size: 14px;
  text-align: left;
  color: #c0c0c0;
}

div#main .text_block .text_block_main h3 {
  margin-bottom: 10px;
  padding: 10px 0 10px 22px;
  font-size: 12px;
  color: #c0c0c0;
  border-bottom: 1px solid #4d4e9b;
  background: url(/uploads/images/layout/point_01.png) no-repeat left center;
}

div#main .text_block .text_block_main p {
  margin: 0;
  padding-bottom: 10px;
  font-size: 11px;
}

div#main .text_block .text_block_bottom {
  height: 21px;
  line-height: 21px;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  background: url(/uploads/images/layout/news_bg_02.png) no-repeat left top #fff;
}

div#main .text_block .text_block_bottom a { color: #c0c0c0; text-decoration: none;}
div#main .text_block .text_block_bottom a:hover { color: #f0f0f0; }

div#sidebar_left, div#sidebar_right {
   float: left;        
   width: 210px;
  padding-top: 60px;
   display: inline;  
}

div#sidebar_left { background: url(/uploads/images/layout/sidebar_left_bg.jpg) no-repeat left top; }
div#sidebar_right { background: url(/uploads/images/layout/sidebar_right_bg.jpg) no-repeat left top; }

div#footer {
  position: relative;
  height: 70px;
  clear: both;      
  color: #fff;
  background: url(/uploads/images/layout/footer.png) no-repeat left top;
}

div#footer p {
  font-size: 10px;
  padding-top: 35px;
  text-align: center;  /* centered text */
  margin: 0;
}

div#footer img {
  margin-bottom: -7px;
} 

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

div#footer div {
  position: absolute;
  left: 670px;
}

div#footer div a {
  display: block;
  height: 10px;
  width: 10px;
  background: url(/uploads/images/layout/top_btn.png) no-repeat left top;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
}

div.right49 a {

}


/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
  /*padding-top: 30px;*/
  margin-bottom: 25px;
  font-size: 13px;
  font-variant: small-caps;
  text-align: center;    
  line-height: 60px;
}

div#content h3 {
  /* color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;*/
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0 5px;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}


/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 90%;
   line-height: 1.4em;
   margin: 0.2em 0 0.5em 1em;
}

div#main ul li,
div#main ol li {
  margin: 0.2em 0 0.2em 1em;
}

div#main ul {
  list-style: none;  
  list-style: square inside url(uploads/images/layout/btn2_normal_l.png);
}

div#main ul ul {
  font-size: 100%;
}

div#main img {
  margin: 5px;
  padding: 5px;
  border: 1px solid #4d4e9b;
}

/* END LISTS */
/* End of 'Lampa i Sadek: Layout' */

