/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
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: 11px;
   line-height: 15px;
color: #333333;
list-style-type: circle;
}

 /*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 11px;
}


/*
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: 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: #001D49; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #00327E;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #001D49;
}

.clear {
clear: both;
}

/*****************
basic layout 
*****************/
body {
   background-color: #001C49;
   color: #C3D6E3;
   margin:0em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   width: 940px; 
   background-color: #001C49;
   background-image: url(images/design/main_back_shadow.jpg);
   background-repeat: repeat-y;
   color: ffffff;
}


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

div#header {
   height: 125px; /* adjust according your image size */
   background-color: #001C49;
   background-image: url(images/design/header.jpg);
   background-repeat: no-repeat;          
}

div#header h1 a {
/* you can set your own image here */
   background-color: #001C49;
   background-image: url(images/design/header.jpg);
   background-repeat: no-repeat;
   display: block; 
   height: 125px;             /* 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: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div#topsmmenu {
   float: right;
   text-align: right;
   font-size: 11px; 
   width: 23em;   
   padding: 0px 37px 0 0;
   margin: 0 0 0 0;
   color: #8393A5;
}

div.breadcrumbs {
   padding: 8px 0 5px 40px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 9px;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 0px 0 0px;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   background-color: #001C49;
   width: 900px;
   color:ffffff;
   margin: 0 auto;     /* this centers wrapper */
   color: #8393A5;
}

div.breadcrumbs a{
   text-decoration: underline; 
   color: #8393A5;
}

.breadcrumbs a{
   text-decoration: underline; 
   color: #8393A5;
}


div.breadcrumbs a:hover {
   text-decoration: underline; 
   color: #8393A5;
}
div.breadcrumbs a:visited {
   text-decoration: underline; 
   color: #8393A5;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 div#content {
   margin: 0px 0px 0px 0; /* some air above and under menu and content */
}

 div#contentwrapper {
   margin: 6px 42px 0px 43px; 
   padding: 0px 12px 0px 0px; 
   border: 1px solid #526C7D;
   background-color: #FFFFFF;
   color: #222222;
   background-image: url(images/design/back_sidearea.gif);
   background-repeat: repeat-y;
   background-position: left top;
}


div#main {
   margin-left: 221px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 8px; /* and some air on the right */
   margin-top: 15px;
   margin-bottom: 32px; 
}


div#mainflash {
   width: 868px;
   height: 325px;
   padding: 0px 0px 0px 37px;
}

div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 220px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
   padding-right: 0;
   padding-top: 8px;
}

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

div#bottommenu{
   clear:both;       /* keep footer below content and menu */
   width: 940px;
   height: 14px;
   background-color: #001C49;
   margin: 0 0 0 0px;  
   padding: 2px 0  1px 0;  
   text-align: center;
   font-size: 9px; 
   color: #8393A5;
}

div#bottommenu a{
   color: #8393A5;
   text-decoration: underline;
}

div#bottommenu a:hover{
   color: #8393A5;
   text-decoration: none;
}
div#copyright{
   clear:both;       /* keep copyright below content and menu */
   width: 940px;
   margin: 0 0 0 0px;  
   padding: 2px 0  1px 0;  
   text-align: center;
   font-size: 9px;  
   background-color: #001C49;
   color: #8393A5;
}

div#copyright a{
   color: #8393A5;
   text-decoration: none;
}
div#copyright a:hover{
   color: #8393A5;
   text-decoration: none;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   background-color: #001C49;
   background-image: url(images/design/footer.jpg);
   background-repeat: no-repeat; 
   height: 138px;
   font-size: 10px;
   line-height: 12px;
}

div#footer p {
   font-size: 10px;
   padding: 5px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
   line-height: 13px;
}

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

div#footerbox {
   float: left;
   height: 100px;
   width: 428px;
vertical-align: bottom;
padding: 2px 0 0 0;

}

div#footerbox img{
padding: 10px 0 0 0;

}

div#footerboxmed {
   float: left;
   height: 60px;
   width: 313px;

}
div#footerboxsml {
   float: left;
   height: 35px;
   width: 145px;
   padding: 3px 10px 0 0px;
   font-size: 9px;

}
div#footerboxsmr {
   float: left;
   height: 35px;
   width: 145px;
   padding: 3px 0 0 10px;
   font-size: 9px;
}


/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin-bottom: 15px;
 margin-top: 25px;
   border-top: 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 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #ffffff; 
   font-size: 19px; 
   text-align: left; 
/* some air around the text */
   padding-left: 0em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 0px solid #e7ab0b; 
   border-left: 0em solid #e7ab0b; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 10px 0;
}

#contentwrapper #main h2 {
   color: #111111;
font-size: 15px; 
   margin: 0 0 15px 0;
}


div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 15px;
   margin: 0px 0 0px 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 25px 0 10px 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 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 0px solid #ddd;
   margin-left: 22px;
}
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 0em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

/* IMAGES */

.imageright{
   margin: 0 0 20px 20px;
}
.imageleft{
   margin: 0 20px 20px 0px;
}

/* END IMAGES */

/* SUBMENU SIDEBAR */
 div#submenuwrapper {
width: 162px;
   margin: 2px 0px 7px 0px;
   padding: 12px 5px 12px 5px;
   border-right: 0px solid #071C48;
   border-left: 0px solid #071C48;
   border-top: 0px solid #071C48;
   border-bottom: 0px solid #071C48;
   clear:both;

}



 div#submenuwrapper2{
width: 172px;
   margin: 5px 0px 7px 0px;
   padding: 30px 0px 3px 0px;
   border-right: 1px solid #B4B7AE;
   border-left: 1px solid #B4B7AE;
   border-top: 1px solid #B4B7AE;
   border-bottom: 1px solid #B4B7AE;
   background-color: #C7C8BE;
   clear:both;
   background-position: center top;
   background-image: url(images/design/back_solid_dkblue.gif);
   background-repeat: repeat-x;

}
#submenuwrapper .separator {
   border-bottom-width: 1px;
   border-bottom-style: solid;
   border-bottom-color: #59758D;
   line-height: 2px;
}

#sidebar li { 
   border-bottom-width: 0px;
   border-bottom-style: solid;
   border-bottom-color: #59758D;
   border-top-width: 0px;
   border-top-style: solid;
   border-top-color: #666666;
   padding: 5px 5px  0px 5px; 
   margin: 0px 0  0px 0px;   
}

#sidebar li li { 
list-style-type: square;
   margin: 0px 0  0px 20px;  
   padding: 3px 0  0px 0px;  
   line-height: 16px;
}

#submenuwrapper .activeparent .activeparent { 
   font-weight: bold;
   font-size: 10px;
   line-height: 16px;
   margin: 0px 0  0.0em 0px;  
   padding: 0px 0  0px 0px;  
}

#submenuwrapper .activeparent .currentpage h3{ 
list-style-type: square;
   margin: 0px 0  0.0em 0px;  
   padding: 0px 0  0px 0px;  
   font-size: 10px;
   line-height: 16px;
   font-weight: bold;
}

#sidebar ul { 
list-style-type: none;
   margin: 0px; 
   padding: 0px; 
}
#sidebar ul a{ 
	font-size: 10px;
	text-decoration: none;
    color: #444444;

}
#sidebar ul a:hover{ 
	font-size: 10px;
	text-decoration: none;
    color: #355681;
}
#sidebar #submenuwrapper .currentpage h3{ 
font-size: 10px;
	text-decoration: none;
    color: #001C49
   margin: 0px 0  0 0px;  
   padding: 0px 0  0px 0;  
   line-height: 16px;
   font-weight: bold;
}
/* END SUBMENU SIDEBAR */
/* 3 MINI COLUMNS */
#minicolumns {
	background-image: url(http://islandlifestyleproperties.com/images/design/back_minicolumn.jpg);
        background-repeat: repeat-x;
	background-position: left top;
	min-height:280px;
	height: auto;
	margin-top: 15px;
	margin-right:5px;
	padding: 10px 10px 10px 10px;
	float: left;
	width: 174px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #001C49;
	border-right-color: #001C49;
	border-bottom-color: #001C49;
	border-left-color: #001C49;
}
/* 2 MINI COLUMNS */
#minicolumns2 {
	background-image: url(http://islandlifestyleproperties.com/images/design/back_minicolumn.jpg);
        background-repeat: repeat-x;
	background-position: left top;
	min-height:280px;
	height: auto;
	margin-top: 15px;
	margin-right:15px;
	padding: 10px 10px 10px 10px;
	float: left;
	width: 262px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #001C49;
	border-right-color: #001C49;
	border-bottom-color: #001C49;
	border-left-color: #001C49;
}
#minicolumns4 {
	background-image: url(http://islandlifestyleproperties.com/images/design/back_minicolumn.jpg);
        background-repeat: repeat-x;
	background-position: left top;
	min-height:280px;
	height: auto;
	margin-top: 15px;
	margin-right:4px;
	padding: 10px 10px 10px 10px;
	float: left;
	width: 126px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #001C49;
	border-right-color: #001C49;
	border-bottom-color: #001C49;
	border-left-color: #001C49;
}
#pagewrapper #content #contentwrapper #main #minicolumns li{
background-image: url(http://islandlifestyleproperties.com/uploads/images/icons/pdf.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 0 10px 30px;
	margin: 3px 0 0px 0px;
	list-style-position:outside;
	list-style-image: none;
	list-style-type: none;

}
#pagewrapper #content #contentwrapper #main #minicolumns2 ul{
margin: 20px 0 0px 0px;

}
#pagewrapper #content #contentwrapper #main #minicolumns2 li{
background-image: url(http://islandlifestyleproperties.com/uploads/images/icons/pdf.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 0 10px 30px;
	margin: 3px 0 0px 0px;
	list-style-position:outside;
	list-style-image: none;
	list-style-type: none;

}
#pagewrapper #content #contentwrapper #main #minicolumns4 ul{
margin: 20px 0 0px 0px;

}
#pagewrapper #content #contentwrapper #main #minicolumns4 li{
background-image: url(http://islandlifestyleproperties.com/uploads/images/icons/pdf.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 0 10px 30px;
	margin: 3px 0 0px 0px;
	list-style-position:outside;
	list-style-image: none;
	list-style-type: none;

}
#pagewrapper #content #contentwrapper #main #minicolumns2 ul{
margin: 20px 0 0px 0px;

}
#pagewrapper #content #contentwrapper #main #minicolumns4 ul{
margin: 20px 0 0px 0px;

}
#pagewrapper #content #contentwrapper #main #minicolumns ul{
margin: 20px 0 0px 0px;

}

#minitop {
	float: left;
	width: 600px;
}
/* 3 MINI COLUMNS */

/* NEWS COLUMNS */
#newscolumns {
	background-image: url(http://islandlifestyleproperties.com/images/design/back_minicolumn.jpg);
        background-repeat: repeat-x;
	background-position: left top;
	min-height:385px;
	height: auto;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-right:8px;
	padding: 10px 10px 10px 10px;
	float: left;
	width: 268px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #001C49;
	border-right-color: #001C49;
	border-bottom-color: #001C49;
	border-left-color: #001C49;
}
#pagewrapper #content #contentwrapper #main #newscolumns ul{
margin: 20px 0 0px 0px;

}
#newscolumnsfeatured {
	background-image: url(http://islandlifestyleproperties.com/images/design/back_minicolumn.jpg);
        background-repeat: repeat-x;
	background-position: left top;
	min-height:385px;
	height: auto;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-right:8px;
	padding: 10px 10px 10px 10px;
	float: left;
	width: 268px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #001C49;
	border-right-color: #001C49;
	border-bottom-color: #001C49;
	border-left-color: #001C49;
}
#newscolumnsfeaturedwindow {
	background-image: url(http://islandlifestyleproperties.com/images/design/back_minicolumn.jpg);
        background-repeat: repeat-x;
	background-position: left top;
   background-color: #ffffff;
	min-height:385px;
	height: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right:0px;
	padding: 10px 10px 10px 10px;
	float: left;
	width: 268px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #001C49;
	border-right-color: #001C49;
	border-bottom-color: #001C49;
	border-left-color: #001C49;
}
#pagewrapper #content #contentwrapper #main #newscolumnsfeatured  ul{
margin: 20px 0 0px 0px;

}
#pagewrapper #content #contentwrapper #main #newscolumnsfeatured li{
background-image: url(http://islandlifestyleproperties.com/uploads/images/icons/pdf_trans.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 0 10px 30px;
	margin: 3px 0 0px 0px;
	list-style-position:outside;
	list-style-image: none;
	list-style-type: none;

}
#newscolumnsfeaturedwindow li{
background-image: url(http://islandlifestyleproperties.com/uploads/images/icons/pdf_trans.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0px 0 10px 30px;
	margin: 0px 0 0px 0px;
	list-style-position:outside;
	list-style-image: none;
	list-style-type: none;

}
/* END NEWS COLUMNS */
/* QUICKSEARCH */
#submenuwrapper2 select {
	width:140px;
	margin:3px 0 px 4px;
	font-size:11px;
	padding:px;
	color:#D0301;
	font-family:"Trebuchet MS", Arial, Verdana, Helvetica, sans-serif;
	}

#submenuwrapper2 input#search-submit {
	float:right;
	margin:8px 8px 0 0;
	}

#pagewrapper #content #contentwrapper #main .NewsSummary .NewsSummarySummary {
	font-size: 13px;
}
#pagewrapper #content #contentwrapper #main .NewsSummary .NewsSummaryLink {
	font-size: 11px;
}
/* QUICKSEARCH */

/*EMAIL ADDRESS FOOTER*/
#footerbox #footerboxsml img {
	padding: 0px;
}
#footerbox #footerboxsmr img {
	padding: 0px;
}
/*EMAIL ADDRESS FOOTER*/


/*MAIN 2BOX START*/
#mainbox2left{
	float: left;
width: 275px;
padding-right: 20px;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #666666;
}
#mainbox2right{
	float: left;
width: 275px;
padding-left: 25px;
}
#mainboxfull{
	float: left;
margin-top: 15px;
padding-top: 5px;
padding-bottom: 5px;
width: 600px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #666666;
}


/*MAIN 2BOX END*/

/*CALCULATORS START*/
P.err{
  color: #CC0000;
  font-weight: bold;
  font-size: 12px;
}

#params TABLE{
  border: 1px solid #666666;
  background: #EDEDED;
  border-collapse: collapse;
padding: 2px;


}
#params TH{
  border: 1px solid #666666;
  font-size: 12px;
  background: #666666;
  color: #FFFFFF;
padding: 2px;
}

.calculate_btn{
  padding: 10px;
}
#summary{
  margin-bottom: 25px;
}
#schedule TD{
  background: #EDEDED;
}
#schedule TH{
  background: #666666;
  color: #FFFFFF;
}


/*CALCULATORS END*/

/*MISC CSS STYLES*/
#shadedbox {
	background-color: #E7E7E7;
	width: 550px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
padding-right: 25px;
	text-align: center;
}

#usefullinks li {
	padding-top: 2px;
	padding-bottom: 5px;
}
#pagewrapper #content #contentwrapper #main li {
	margin-top: 7px;
}

#buyerslibrary li, #sellerslibrary li, #othermaterial li{
background-image: url(http://islandlifestyleproperties.com/uploads/images/icons/pdf_white.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 0 10px 30px;
	margin: 3px 0 0px 0px;
	list-style-position:inside;
	list-style-image: none;
	list-style-type: none;
	

}
#myframe {
        height:3500px;
}
/*MISC CSS STYLES END*/
/* End of 'Layout: Top menu + 2 columns' */

