/* Start of CMSMS style sheet 'Master CSS' */
/* 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;
/* 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: #f47320;
}
a:visited {
	text-decoration: none;
	background-color: inherit;
	color: #f47320;
/* a different color can be used for visited links */
}
/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
	background-color: inherit;
	color: #78695d;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
/* default text color for entire site*/
	color: #333;
/* you can set your own image and background color here */
	background: #264b91 url(uploads/custom/body-bg.jpg);
}

div#pagewrapper {
/* min max width, IE wont understand these, so we will use java script magic in the <head> */
	width: 914px;
position: relative;
/* now that width is set this centers wrapper */
	margin: 0 auto;
	color: black;
}
/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
/* adjust according your image size */
	height: 137px;
	margin: 0;
              margin-top: 20px;
	padding: 0;
	/* you can set your own image here, will go behind h1 a image */
	background: #02153b url(uploads/custom/header.jpg) no-repeat;

}
div#header h1 a {
/* you can set your own image here */
	background: #02153b url(uploads/custom/header.jpg) no-repeat;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 137px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	background: #02153b url(uploads/custom/header.jpg) no-repeat;
}
div#header h2 {
/* this is where the site name is */
	float: right;
	line-height: 1.2em;
/* this keeps IE6 from not showing the whole text */
	font-size: 1.5em;
/* keeps the size uniform */
	margin: 35px 65px 0px 0px;
/* adjust according your text size */
	color: #f4f4f4;
}



div#content {
/* some air above and under menu and content */
	margin: 1.5em auto 2em 0;
	padding: 0px;
}
/* this gets all the outside calls that were used on the div#main before  */
div.back1 {
/* this will give room for sidebar to be on the left side, make sure this number is bigger than sidebar width */
	margin-left: 29%;
/* and some air on the right */
	margin-right: 2%;
/* you can set your own image here */
	background: url(uploads/ngrey/mainrt1.gif) no-repeat right top;
}
/* this is an IE6 hack, you may see these through out the CSS */
* html div.back1 {
/* unlike other browser IE6 needs float:right and a width */
	float: right;
	width: 69%;
/* and we take this out or it will stop at the bottom  */
	margin-left: 0%;
/* and some air on the right */
	margin-right: 10px;
/* you can set your own image here */
	background: url(uploads/ngrey/mainrt1.gif) no-repeat right top;
}
div.back2 {
/* you can set your own image here */
	background: url(uploads/ngrey/mainleft1.gif) no-repeat left top;
}
div.back3 {
/* you can set your own image here */
	background: url(uploads/ngrey/wbtmleft.gif) no-repeat left bottom;
}
div#main {
/* this is the last inside div so we set the space inside it to keep all content away from the edges of images/box */
	padding: 10px 15px;
/* you can set your own image here */
	background: url(uploads/ngrey/rtup.gif) no-repeat right bottom;
}

/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	font-size: 2em;
	line-height: 1em;
	margin: 0;
}
div#main-content-wrapper h2 {
	color: #f47320;
/* font size for h2 the higher the h number the smaller the font size, most times */
	font-size: 1.5em;
	text-align: left;
font-family: Georgia, 'Times New Roman', Times, serif;
/* some air around the text */
	padding-bottom: 1px;
/* a larder than h1 line height */
	line-height: 1.5em;
/* and some air under the border */
	margin: 0 0 0.5em 0;
}
div#main-content-wrapper h3 {
	color: #f47320;
font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#main-content-wrapper h4 {
	color: #294B5F;
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#main-content-wrapper 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 {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
/* some air around p elements */
	margin: 0 0 1.5em 0;
	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 {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	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 */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
div#main-content-wrapper ul,
div#main-content-wrapper ol,
div#main-content-wrapper dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main-content-wrapper ul li,
div#main-content-wrapper 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;
}
/* END LISTS */

/* CUSTOM CSS */

div#content-top {
width: 914px;
height: 19px;
float: left;
background: url(uploads/custom/content-top.jpg) no-repeat;
}

div#main-content-wrapper {
float: left;
clear: both;
width: 914px;
height: auto;
background: url(uploads/custom/content-sides.jpg) repeat-y;
}


div#content-left {
width: 659px;
height: auto;
float: left;
margin-left: 4px;
background: url(uploads/custom/clouds.jpg) no-repeat;
}

div#content-left-sub {
width: 619px;
height: auto;
min-height: 300px;
float: left;
margin-left: 20px;
margin-right: 20px;
margin-top: 10px;
}

div#content-left-sub-two {
width: 599px;
height: auto;
min-height: 345px;
float: left;
margin-left: 20px;
margin-right: 20px;
margin-top: 10px;
padding: 10px;
background: url(uploads/custom/white-mask.png) no-repeat;

}

div#content-right {
width: 247px;
height: auto;
float: right;
margin-right: 4px;
background-color: #d9d5d2;
}

div#footer-top {
width: 914px;
height: 16px;
float: left;
background: url(uploads/custom/footer-top.jpg) no-repeat;
}

div#footer-middle {
width: 914px;
height: 50px;
float: left;
background: url(uploads/custom/footer-middle.jpg) repeat-y;
text-align: centre;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 9pt;
line-height: 1em;
color: #48372a;
}

div#footer-bottom {
width: 914px;
height: 31px;
float: left;
background: url(uploads/custom/footer-bottom.png) no-repeat;
}

div#search-container {
width: 237px;
height: 65px;
padding-left: 10px;
padding-top: 10px;
float: left;
background: url(uploads/custom/search-bg.jpg) repeat;
border-bottom: 1px solid #FFF;
color: #a0958c;
font-weight: bold;
}

div#search {
/* position for the search box */
	float: left;
/* enough width for the search input box */
	width: 45em;
	text-align: left;
	margin: 0;
}
/* a class for Submit button for the search input box */
input.search-button {
	border: none;
	height: 27px;
	width: 27px;
	margin-left: 5px;
	padding: 0px 2px 2px 0px;
	cursor: pointer;
	background: url(uploads/ngrey/search.png) no-repeat center center;
}

div#why-gr {
width: 227px;
height: auto;
padding: 10px;
float: left;
background-color: #ada59e;
border-bottom: 1px solid #FFF;
color: #FFF;
font-size: 10pt;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
line-height: 1.25em;
}

div#why-gr-bullets {
width: 227px;
height: auto;
padding: 10px;
float: left;
background-color: #f47320;
border-bottom: 1px solid #FFF;
color: #FFF;
font-weight: bold;
}

div#newsletter {
width: 227px;
height: auto;
padding: 10px;
float: left;
font-size: 9pt;
line-height: 1.25em;
}


.bullets {
        margin-left: 35px;
        line-height: 1.5em;
        list-style-type: none;
        list-style-image: url("uploads/custom/bullet.png");
}


/* NEWSLETTER SIGNUP FORM STYLES */


.newsletter input {
              width: 200px;
              height: 25px;
              color:#9d9188;
              font-size:13px;
              background:#fff;
              border:1px solid #968f88;
              vertical-align: middle;
              margin-bottom: 10px;
}

.contact input {
              width: 400px;
              height: 25px;
              color:#9d9188;
              font-size:13px;
              background:#fff;
              border:1px solid #a39a93;
              vertical-align: middle;
              margin-bottom: 10px;
}


.contact textarea {
              width: 400px;
              height: 100px;
              color:#9d9188;
              font-size:13px;
              background:#fff;
              border:1px solid #a39a93;
              vertical-align: middle;
              margin-bottom: 10px;   
}


.contact select {
              width: 100px;
              height: 25px;
              color:#9d9188;
              font-size:13px;
              background:#fff;
              border:1px solid #9d9188;
              vertical-align: middle;
              margin-bottom: 10px;
}


.fbsubmit {
              border: none;
              color:#FFF;
              font-size:13px;
	height: 30px;
	width: 100px;
	padding: 0px 2px 0px 0px;
	cursor: pointer;
	background: url(uploads/custom/buttons.jpg) no-repeat center center;
}


div#how-left-wrapper {
width: 394px;
height: auto;
float: left;
}

div#how-title {
width: 169px;
height: auto;
background-color: #f47320;
padding: 10px;
color: #FFF;
font-weight: bold;
float: right;
}
div#how-title-two {
width: 169px;
height: auto;
background-color: #f47320;
padding: 10px;
color: #FFF;
font-weight: bold;
float: left;
}

div#how-left-one {
width: 169px;
height: 250px;
float: left;
background-color: #e6e1dd;
padding: 10px;
}

div#how-left-two {
width: 169px;
height: 250px;
float: right;
background-color: #e6e1dd;
padding: 10px;
}

div#how-wrapper-left {
width: 169px;
float: left;
height: auto;
}
div#how-wrapper-right {
width: 169px;
float: right;
height: auto;
}

div#how-right {
width: 169px;
height: 250px;
float: right;
background-color: #e6e1dd;
padding: 10px;
}

div#packages-top {
width: 599px;
height: 6px;
float: left;
background: url(uploads/custom/packages-top.png) no-repeat;
}

div#packages-middle {
width: 599px;
height: auto;
float: left;
background: url(uploads/custom/packages-middle.jpg) repeat-y;
}

div#packages-middle-left {
width: 570px;
height: auto;
margin: 10px;
float: left;
}
div#packages-middle-right {
width: 148px;
height: auto;
margin: 10px;
float: right;
}

div#packages-bottom {
width: 599px;
height: 11px;
float: left;
background: url(uploads/custom/packages-bottom.jpg) no-repeat;
margin-bottom: 10px;
}

.orange-text {
color: #f47320;
}

div#news-top {
width: 599px;
height: 23px;
float: left;
background: url(uploads/custom/news-top.jpg) no-repeat;
}

div#news-middle {
width: 559px;
height: 224px;
padding-left: 20px;
padding-right: 20px;
float: left;
background: url(uploads/custom/news-middle.jpg) no-repeat;
}

div#news-left {
width: 265px;
height: 180px;
float: left;
}
div#news-right {
width: 265px;
height: 180px;
float: right;
}

div#news-bottom {
width: 599px;
height: 23px;
float: left;
background: url(uploads/custom/news-bottom.jpg) no-repeat;
}





div#new-news-top {
width: 599px;
height: 20px;
float: left;
background: url(uploads/custom/news-top.png) no-repeat;
}

div#new-news-middle {
width: 559px;
height: auto;
padding-left: 20px;
padding-right: 20px;
float: left;
background: url(uploads/custom/news-middle.png) repeat;
}
div#new-news-bottom {
width: 599px;
height: 24px;
float: left;
background: url(uploads/custom/news-bottom.png) no-repeat;
}
/* End of 'Master CSS' */

