/* Start of CMSMS style sheet 'infoblue_CSS' */
/* DEBUGGER
div {border: 1px solid red;} */
/*****************
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: "Helvetica Neue Light", Helvetica, Arial, Verdana, sans-serif; */
   font-family: "Helvetica Neue Light", Arial, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rulesf
*/
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 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: #19275c;
   line-height: 1em;
}

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


/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
	/*   background-color: #C3D4DF;
   color: #27409B; */
   color: #CC0000;
}

/*****************
basic layout 
*****************/
body {
   background-color: #e6d1b2;
   color: #333;
/*   margin:1em;     gives some air for the pagewrapper */
   margin: 0 auto;
}

div#bkg {
   background:url(uploads/images/Sand_bkg.jpg);
	z-index: -1;  /* this one */
   height: 100%;
	margin: 0px;  /* this one */
	padding: 10px;
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
  margin: 0 auto;      /*   this centers wrapper */
   max-width: 80em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   color: black;
   background: #fff  url(uploads/images/ghosted.jpg) no-repeat -50px 0px;  /*  background in body content area */
}


/*** 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 {
   height: 228px;    /* adjust according your image size */
   background: url(uploads/images/header2.jpg) no-repeat 0 0px;           
   display: block;
}

div#header h1 a {
/* you can set your own image here */
   display: block;
   text-indent: -999em;  /* this hides the text  */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
   background: url(uploads/images/icon128.png) no-repeat 0 0px;           
}

div.flash {
  margin: 0px;
  position: relative;
  height: 125px;
  width: 154px;
  top: 20px;
  left: 365px;
  border: solid #0000FF;
}

/* position for the search box */
div.search {
   float: right;
   width: 25em;    /* enough width for the search input box */
   text-align: left;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
   position: relative;
   top: 153px;
/*    border: 1px solid #0000FF
  left: 850px; */
}
div.AddThis {
   float: right;
   width: 7em;    /* enough width for the AddThis button */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 ;
   position: relative;
   top: 155px;
/*    border: 1px solid #0000FF
  left: 850px; */
}

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 */
   text-indent: 5px;
   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: 1.5em auto 2em 0;   /* some air above and under menu and content */
}


div#main {
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 4%; /* and some air on the right */
}

div#main_home {
   margin-left: 0%; /* adjusted for the home page */
   margin-right: 0%; /* and some air on the right */
}

div#main2_home {
   margin-left: 10%; /* adjusted for the home page */
   margin-right: 10%; /* and some air on the right */
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 3%;
}

div#prefooter {
   clear: both;       /* keep footer below content and menu */
   color: #000;     /* black */
   background-color: #fff; /* white */
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #000;     /* black */
   background-color: #fff; /* white */
}

div#footer p {
   font-size: 1em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #blue; /* needed because 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;
}

/* 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%;
  text-align: right;
}




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

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0 0 0.5em 0;
}
/* div#content h2 {
	color: #19275c;
	font-size: 1.5em;
	text-align: left;
	/ * some air around the text * /
	padding-left: 0.5em;
	padding-bottom: 1px;
	/ * set borders around header * /
	border-bottom: 1px solid #e7ab0b;
	border-left: 1.1em solid #e7ab0b;
	line-height: 1.5em;
	/ * and some air under the border * /
        margin: 0 0 0.5em 0;
} */
div#content h2 {
	color: #19275c;
	font-size: 1.5em;
	line-height: 1.5em;
	margin: 0 0 0.5em 0;
}
div#content h3 {
	color: #19275c;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0 0;
}
div#content h4 {
	color: #ff6600;
	font-size: 1.1em;
	line-height: 1.1em;
	margin: 0 0 0.5em 0;
}
div#content h5 {
	color: #19275c;
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#content h6 {
	color: #19275c;
	font-size: 1.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: 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;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

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

.cms-module-bookmarks-header {
 	color: #ff6600;
	font-size: 1.2em;
	line-height: 1.1em;
	margin: 0 0 0.5em 0;
 	font-weight: bold;
}

.bookmark-link {
 	color: #19275c;
	font-size: 1.15em;
	line-height: 1.1em;
	margin: 0 0 0.5em 0;
 	font-weight: bold;
}
/* END LISTS */

/* Jyther's Mods */
.inner1 {
	width: 435px;
	position: relative;
        float:left;
        padding:0 10px 0 0;
}
div.inner2 {
	width: 500px;
	position: relative;
        float:none;
	color: #808080;
	font-size: 1.0em;
	line-height: 1.2em;
	margin: 0 0 0.25em 0;
	height: 65px;
}
.gmap ul li {
list-style:none;
}
div.sumcat {
	color: #808080;
	font-size: .8em;
	line-height: 1.0em;
	margin: 0 0 0.25em 0;
}
.s2h h3{
	line-height: 1.1em;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.biz-container {
	/* 
	position: relative;
width: 485px; */
	width: 600px;
}
.biz-entry {
  height: 75px;
}
.image_border {
	border-style: solid;
	border-color: black;
	border-width: 2px;
}
.fd_container {
  position: relative;
  float: left;
}
.full_details {
  display: block;
  left: 80px;
  width: 85px;
  height: 16px;
  background: url("/uploads/images/full_details2.jpg") no-repeat 0 0;
}
.full_details:hover { 
  background-position: 0 -16px;
}
.full_details span {
  display: none;
}
#correction_report {
  display: block;
  width: 111px;
  height: 16px;
  background: url("/uploads/images/report.jpg") no-repeat 0 0;
}
#correction_report:hover { 
  background-position: 0 -16px;
}
#correction_report span {
  display: none;
}
.numbg {
        float:left;
        width:100px; /* was 70px */
        height:72px;   /* was 50px */
 /*        font-size: 20px;
        overflow:hidden;
        text-align: center;
        clear: both;
        margin-top: 0px;
border: 1px solid red;
*/
        padding: 0 10px 0 0;
} 
.pic {
	left: 0px;
	position: relative;
	top: 0px;
	width: 70px;
	height: 50px;
}
.pic a .large {
	border: 0px;
	display: block;
	height: 50px;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 70px;
	z-index: 200;
}
.pic a img {
	height: 50px;
	width: 70px;
	border: 0;
}
.pic a.p1, .pic a.p1:visited {
	/* border: 1px solid #000000; */
	display: block;
	height: 50px;
	left: 0;
	text-decoration: none;
	top: 0;
	width: 70px;
}
.pic a.p1:hover {
	background-color: #8C97A3;
	color: #000000;
	text-decoration: none;
}
.pic a.p1:hover .large {
	border: 1px solid #000000;
	display: block;
	height: 243px;
	left: -278px; /* was 80px */
	position: absolute;
	top: -60px;
	width: 340px;
	z-index: 201;
}
#mycrawler2 {
border: 1px solid red;
}
/* End of 'infoblue_CSS' */

