/* Start of CMSMS style sheet 'Layout: Top menu + sidebox right' */
/*****************
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: 0.7em;
   line-height: 1.8em;

}

/*
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;
/* 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: #036bb6; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #036bb6;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   color: #036bb6;
}

/*****************
basic layout 
*****************/
body {
   background: #ffffff;
   color: #5e5e5e;
   margin:0em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0px auto;     /* this centers wrapper */
   padding: 0 0 0 0 0;
   width:960px; 
   background: #ffffff;
   color: black;
}



/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 55px; /* adjust according your image size */
   background-color: #ffffff;  
   padding: 0.5em 0 0 0;
   align: center;
    
}

table.center {margin-left:auto; margin-right:auto;}

div#header h1 a {
/* you can set your own image here */

   display: block; 
   height: 80px;             /* 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 */
}

div#search {
   float: right;
   width: 230px;     /* enough width for the search input box */
   text-align: center;
   padding: 0px;
   margin: 0 0 0 0;
   vertical-align: middle;
   background:#000000;
}

fieldset.search {
	border: none;
	width: 230px;
	margin: 0 auto;
	background: #222;
}
.search input, .search button {
	border: none;
	float: left;
}
.search input.box {
	color: #fff;
	font-size: 1.1em;
	width: 140px;
	padding: 3px 5px 0px;
	background: #616161;
	margin-right: 0px;
}
.search input.box:focus {
	background: #616161;
	outline: none;
}
.search button.btn {
	width: 50px;
	height: 24px;
	cursor: pointer;
	text-indent: -9999px;
	background: #ffffff url(uploads/images/searchbutton.jpg) no-repeat top right;
}


div#language {
   border: 0px solid black;
   margin: 0px auto;     /* this centers wrapper */
   padding-right: 15px;
   width:960px; 
   background-color: #cecece;
   color: black;
   text-align: right;
}

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 {
   margin: 0 0 0 0; /* some air above and under menu and content */
   background: transparent; 
   padding: 1em 0 0 0;
}

div#sidebox{
   margin: 3px 0px 0px 0px; /* some air above and under menu and content */
   padding: 15px 15px 15px 15px;
   border-left: 0px solid #cecece;
   border-right: 0px solid #cecece;
   border-bottom: 0px solid #cecece;
   background: transparent url(uploads/images/sidebar_background.png) no-repeat; 
   color: #333333;   
   height: 130px;
}

div#sidebox2{
   margin: 3px 0px 0px 0px; /* some air above and under menu and content */
   padding: 15px 15px 15px 15px;
   border-left: 0px solid #cecece;
   border-right: 0px solid #cecece;
   border-bottom: 0px solid #cecece;
   background: transparent url(uploads/images/sidebar_background5.png) no-repeat; 
   color: #333333;   
   height: 130px;
}

div#sidebox3{
   margin: 3px 0px 0px 0px; /* some air above and under menu and content */
   padding: 15px 15px 15px 15px;
   border-left: 0px solid #cecece;
   border-right: 0px solid #cecece;
   border-bottom: 0px solid #cecece;
   background: transparent url(uploads/images/sidebar_background4.png) no-repeat; 
   color: #333333;   
   height: 70px;
}

div#sidebox4{
   margin: 3px 0px 0px 0px; /* some air above and under menu and content */
   padding: 15px 15px 15px 15px;
   border-left: 0px solid #cecece;
   border-right: 0px solid #cecece;
   border-bottom: 0px solid #cecece;
   background: transparent url(uploads/images/sidebar_background2.png) no-repeat; 
   color: #333333;   
   height: 130px;
}

div#logobox{
   margin: 0 15px 1em 15px; /* some air above and under menu and content */
   padding: 10px 10px 10px 10px;
   border-left: 1px solid #cecece;
   border-right: 1px solid #cecece;
   border-bottom: 1px solid #cecece;
   background: #FFFFFF; 
   color: #333333;   
}

div#sidebox_header{
   margin: 0 15px 0 15px; /* some air above and under menu and content */
   background: #FFFFFF url(uploads/images/sidebox_header.jpg) no-repeat; 
   padding: 5px 10px 0px 10px;
   border-bottom: 1px solid #cecece;

}

div#contentbox{
   margin: 0 0 1em 0; /* some air above and under menu and content */
   padding: 10px 10px 10px 10px;
   border-left: 1px solid #cecece;
   border-right: 1px solid #cecece;
   border-bottom: 1px solid #cecece;
   background: #FFFFFF url(uploads/images/body_bg_modern.gif); 
   color: #333333;   
}

div#contentbox_header{
   margin: 0 0 0 0; /* some air above and under menu and content */
   background: #FFFFFF url(uploads/images/sidebox_header.jpg) no-repeat; 
   padding: 5px 10px 0px 10px;
   border-bottom: 1px solid #cecece;

}

div#main {
   margin-left: 0px;
   margin-right: 27%;
   min-height: 450px;
   width: 650px;
   margin-top: 0em;
   background: transparent url(uploads/images/main_bg.png) repeat-y; 
   padding: 10px 20px 20px 20px;

}

div#main_top {
   margin-left: 0px;
   margin-right: 27%;
   height: 13px;
   width: 690px;
   margin-top: 5px;
   background: transparent url(uploads/images/main_background.png) no-repeat; 
   padding: 0px 0px 0px 0px;

}


div#sidebar {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 210px;    /* sidebar width, if you change this please also change #main margins */
   margin-right: 0;
   margin-top: 0em;
   padding: 0px 0px 0px 0px;
   background: transparent; 
}

.bottom span {
   display:block;
   position:relative;
   height:8px;
   background:url(uploads/images/sidebar_bottom.png) no-repeat right top;

}


/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0px 0px 0px 0px;
   width: 260px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #949494;
   height: 100px;
   background: url(uploads/images/main_bottom.png) no-repeat transparent; 
}

div#footer p {
   font-size: 0.8em;
   padding: 15px 300px 0.3em 0.3em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
   color: #949494;
}

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

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin:0;
   padding-bottom: 5px;
   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#header h1 {
   font-size: 1.7em;  /* font size for h1 */
   line-height: 1.4em;
   margin: 0px 0 0px 0;
   color: #333333;
   font-weight: normal;

}


div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1.4em;
   margin: 0px 0 15px 5px;
   color: #1a4696;
   font-weight: normal;

}

div#content h1.sidebar {
   font-size: 1.2em;  /* font size for h1 */
   line-height: 1.4em;
   margin: 0px 0 15px 0;
   color: #370859;
   font-weight: bold;
   padding: 0 15px 0px 15px

}
div#content h2 {
   font-size: 1.5em;  /* font size for h1 */
   line-height: 1.4em;
   margin: 30px 0 15px 5px;
   color: #2b89ca;
   font-weight: normal;

}
div#content h3 {
   color: #1a4696; 
   font-size: 1.1em;
   font-weight: bold;
   margin: 0 0 0.8em 0;
}
div#content h4 {
   color: #ffffff; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em;
   border: 1px solid #370859;
   background-color: #8d39cb; 
}


.button,
.button:focus,
.button:active,
.button:visited {
   float:left;
   color:#6509a9; 
   height: 15px;
   margin: 0 0 0.25em;
   padding: 0px 5px 5px 5px;
   border-right: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   background: #8d39cb url(uploads/images/button.jpg); 
   text-decoration:none;
   font-weight:bold;
}

.button:hover {
   float:left;
   color:#6509a9; 
   height: 15px;
   margin: 0 0 0.25em;
   padding: 0px 5px 5px 5px;
   border-right: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   background: #8d39cb url(uploads/images/button.jpg); 
   text-decoration:underline;
}

div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0 0;
}

h6 {
   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 0px;  /* some air around p elements */
   line-height:1.8em;
   padding-left: 5px;
   padding-right: 15px;
   color: #333333;
}

p#blu {
   font-size: 1em;
   margin: 0 10px 1.5em 0px;  /* some air around p elements */
   line-height:1.8em;
   padding: 10px 10px 10px 10px;
   color: #333333;
   background: #ffffff;
   border: 2px dotted #b9dbfd;
}

p.sidebar {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.8em;
   padding: 0px 15px 15px 15px;
   color: #333333;
}

.col-right       { float:right; width:195px; margin-left:102px; }
.col-left       { float:left; width:180px; margin-right:15px;}

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


table#producttable {
    background-color:#FFFFFF;
}

table#producttable td {
   padding: 5px 5px 5px 5px;
}

.toprow {
   border-top: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   border-bottom: 1px solid #c69ce5;
   background-color: #ffffff;
}

.toprowa {
   border-top: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   border-bottom: 1px solid #c69ce5;
   background-color: #ffffff;
}

.toprowleft {
   border-right: 1px solid #c69ce5;
   border-left: 1px solid #ffffff;
   border-bottom: 1px solid #000000;
   background-color: #ffffff;
}


.first {
   border-bottom: 1px solid #c69ce5;
   border-top: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #f8f8f8;
}

.second {
   border-right: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   background-color: #e7e7e7;
}

.firsta {
   border-bottom: 1px solid #c69ce5;
   border-top: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   background-color: #f8f8f8;
}

.seconda {
   border-left: 1px solid #c69ce5;
   background-color: #e7e7e7;
}


.third {
   border-bottom: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   background-color: #e7e7e7;
}


.thirda {
   border-bottom: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   background-color: #e7e7e7;
}

.firstb {
   border-bottom: 1px solid #c69ce5;
   border-left: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #f8f8f8;
}

.secondb {
   border-bottom: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #e7e7e7;
}


.thirdb {
   border-bottom: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #e7e7e7;
}

.fourthb {
   border-bottom: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #e7e7e7;
}

.firstc {
   border-bottom: 1px solid #c69ce5;
   border-left: 1px solid #ffffff;
   border-top: 1px solid #ffffff;
   border-right: 1px solid #c69ce5;
   background-color: #ffffff;
}

.secondc {
   border-bottom: 1px solid #c69ce5;
   border-top: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #d8c1ea;
}


.thirdc {
   border-bottom: 1px solid #c69ce5;
   border-top: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #d8c1ea;
}

.fourthc {
   border-bottom: 1px solid #c69ce5;
   border-top: 1px solid #c69ce5;
   border-right: 1px solid #c69ce5;
   background-color: #d8c1ea;
}

.colspan{
   border-bottom: 0px solid #c69ce5;
}

.colspanb{
   border-bottom: 1px solid #c69ce5;
}


.home1 {
   background:url(uploads/images/sidebar_background3.png) no-repeat transparent;
   padding: 0px 15px 0px 15px;
   font-size: 1.1em;
   font-weight: bold;
}

.home1:hover {
   background:url(uploads/images/sidebar_background6.png) no-repeat transparent;
   padding: 0px 15px 0px 15px;
   font-size: 1.1em;
   font-weight: bold;
}

.home2 {
   background:url(uploads/images/sidebar_background2.png) no-repeat transparent;
   padding: 0px 15px 0px 15px;
   font-size: 1em;
   font-weight: bold;
}


#im {
   padding: 10px 10px 10px 10px;
   margin: 4px 0px 0px 15px;
   vertical-align:top;
   color: #333333;
   font-weight: normal;
   font-size: 1.1em;
   background: transparent;
   height: 255px;
}


#h7 {
   font-size: 1.8em;  /* font size for h1 */
   line-height: 1.4em;
   margin: 0px 0 15px 0;
   color: #333333;
   font-weight: normal;

}


#h8 {
   color: #370859; 
   font-size: 1em;
   font-weight: bold;
   margin: 15px 0 0.8em 0;
}

#h9 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1.4em;
   margin: 15px 0px 10px 15px;
   color: #ffffff;
   font-weight: normal;

}

.class1 A:link {
   text-decoration: none; 
   color: #02416f;
   font-size: 1.4em;
   font-weight: normal;
}

.class1 A:hover {
   text-decoration: underline; 
   color: #02416f;
   font-size: 1.4em;
   font-weight: normal;
}

.class1 A:active {
   text-decoration: none; 
   color: #02416f;
   font-size: 1.4em;
   font-weight: normal;
}

.class1 A:visited {
   text-decoration: none; 
   color: #02416f;
   font-size: 1.4em;
   font-weight: normal;
}


#main_menu {
   font-size: 1em;
   padding-left: 10px;
   padding-top: 15px;
}


/* END LISTS */
/* End of 'Layout: Top menu + sidebox right' */

