/* Start of CMSMS style sheet 'Voter Owned Hawaii' */
/*****************
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: Arial, Verdana, Geneva, 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 {
/*
   background-color: #DFF2F8; 
   color: #ea7120; 
*/
color:#24397A;
text-decoration:underline;
}

a:visited {
text-decoration:none;
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C9E5F1;
   color: #000;

}

/*****************
basic layout 
*****************/
body {
   background-color: #d0edf5; 
   color: #252F49;
   margin:20px;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
background:#fff url(uploads/images/footer_shadow.jpg) repeat-x scroll bottom left;
margin:0 auto;
padding:0 0 5px 0;
width:882px;
}

div#page {
border:1px solid #78DAF3;
padding:15px;
}


/*** header ****/

div#header {
   background: #24397a url(uploads/images/header_bg.jpg) repeat-x; 
   height: 134px;    /* adjust according your image size */

}


div#banner {
   background: transparent url(uploads/images/banner.jpg) no-repeat;
width:850px;
   height: 127px;    /* adjust according your image size */

}


div#logo {
float:left;
height: 125px;
width:215px;
}

div#slogan {
   float: right;
   width: 348px;
   height:45px
   text-align: right;
   padding: 15px 15px 0 0;
   margin: 0;
font-size:19px;
line-height:22px;
font-weight:bold;
color:#e1ad62;
text-align:right;
letter-spacing:.03em;
}

div#search {
float:right;
margin:0 1em;
padding:15px 10px 0.2em 0;
text-align:right;
width:27em;
clear:right;
}

div#search label {
display:none;
}

div#search submit {
background-color:#2bb4d8;
border-color:#2bb4d8;
color:#fff;
}


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#contentwrap {
   background: transparent url(uploads/images/fishwrap.jpg) repeat-y 0 0; 
}

div#contentwrap  div#content {
   background: transparent url(uploads/images/fish.jpg) no-repeat 0 0; 
}


div#mainwrap {
width:635px;
margin:0 0 0 215px;
}

div#main {
padding:15px 28px;
}
div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 215px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
   background-color: #041f26; 
}

div.slogan{
   background: #dbeef4 url(uploads/images/slash_bg.jpg) repeat-x 0 0; 
padding:8px 20px;
border-bottom:1px solid #93dff6;
color:#0b7e99;
font-size:12px;
line-height:1.2em;
}

div.clear{
clear:both;
height:15px;
}
div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #24397a; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 5px 15px;       /* some air for footer */
   text-align: right;  /* centered text */
   margin: 0;
font-size:1.2em;
}

div#footer p a {
   color: #fff; /* 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;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}



/********************
CONTENT STYLING
*********************/
div#content {
   line-height: 1.6em;
}

/* HEADINGS */
h1 {

color:#56B9D0;
font-size:1.8em;
font-weight:normal;
line-height:1.4em;
margin:0 0 10px;

}

h2 {
	color: #eb7b31; 
	font-size: 1.5em; 
   letter-spacing: .03em;
font-weight:bold;
line-height:1.5em;
}

div#content h2 a {
	color: #56b9d0; 
background-color:#dff2f8;
text-decoration:none;
padding:5px;

}
h3 {
color:#385C72;
font-size:1.4em;
font-weight:bold;
line-height:1.6em;
margin:0 0 0.5em;
}


/* END HEADINGS */

/* TEXT */
p {
font-size:1.2em;
line-height:1.4em;
margin:0.5em 0 1em;
padding:0;
}

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

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


}

/* 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: 1.0em;
   line-height: 1.4em;

}

div#main ul li,
div#main ol li {

}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */

.space{
padding:0 5px;
}

.clearright{
clear:right;
}

.copyright {
font-size:.8em;
}

.image_spacing_left{
padding: 0 15px 10px 0;
}

/* Large radius image backgrounds */
.rounded {
position:relative;
background: #71d3f0 url(uploads/images/stripes.jpg) repeat;
color:#FFFFFF;
padding:7px 15px;
   font-size: 2.2em; /* font size for h1 */
   line-height: auto;
   margin: 0;
   letter-spacing: .03em;
font-weight:bold;

}
.rounded b.cn { 
height: 10px; 
width: 10px; 
background: url(uploads/images/white.png) repeat;
position:absolute;

}
 
.rounded b.tl {top: -1px; left: -1px; background-position: top left;}
.rounded b.tr {top: -1px; right: -1px; background-position: top right;}
.rounded b.bl {bottom: -1px; left: -1px; background-position: bottom left;}
.rounded b.br {bottom: -1px; right: -1px; background-position: bottom right;}

     /* IE Filters */
    * html .rounded b.bl {bottom:-2px}
    * html .rounded b.br {bottom:-2px}
    * html .rounded b.cn {background-image: url(uploads/images/white.gif);}
	
ul.columns{
list-style-type:none;
margin:0;
padding:0;
clear:both;
}

ul.columns li{
float:left;
width:279px;
padding:0 0 20px;
}

ul.columns li.one{
margin:15px 20px 0 0;
}

ul.columns li.two{
margin:15px 0 0 0;
}

ul.columns li .rounded {

background: #ffae42 url(uploads/images/arrow.jpg) no-repeat top right;
font-weight:normal;
font-size:1.6em;
line-height:18px;
}

.feature{
background-color:#f7e4c6;
padding: 15px;
font-size:1.2em;
line-height:1.6em;
}
/* End of 'Voter Owned Hawaii' */

