@import url(luna_core.css);

/*
This file inherits from luna_core.css, so styles in this file will override
styles defined in it.  Changes to this file will NOT be overwritten during
upgrades.

Here's a quick tutorial on overriding styles.  Say you want to change the
background colour of the body.  Looking at luna_core.css, the colour is
defined in the rule:

    body {
      margin: 0px;
      padding: 0px;
      color: #33332e;
      background: #ffffff;
      font: normal 11px tahoma, geneva, verdana, sans-serif;
      text-align: center;
    }

To change the background colour of white (#ffffff) to gray (#dddddd), you would
add the following to this file:

    body {
      background: #dddddd;
    }

If you also wanted to change the font as well as the background, then you could
use:

    body {
      background: #dddddd;
      font: normal 12px times new roman;
    }

Also note that every template's body id is assigned the template name (without
the .html extension).  So if you want to change the h2 heading in the
category.html template, you can do this by:

    #category h2 { 
      color: red; 
      font-weight: bold; 
    }

To start you off, some sample overriding styles have been provided below.  Note
that you will have to uncomment the rules for them to work.
*/

/* Logo size and image source */
/*
#logo {
  width: 250px;
  height: 80px;
  background-image: url(images/logo.gif);
}
*/
/* If the height of your logo changes from the original, then you will probably
want to also change the vertical position of the login link */
/*
#loginbar a {
  margin-top: 25px;
}
*/

/* Show the left sidebar */
/*
#ocwrapper {
  border-left-width: 200px;
}
#leftsidebar {
  display: block;
}
#contentheader .error, #contentheader .message {
  margin: 0px 200px 0px 200px;
}
*/

/* Hide the right sidebar */
/*
#ocwrapper {
  border-right-width: 0px;
}
#rightsidebar {
  display: none;
}
#contentheader .error, #contentheader .message {
  margin: 0px;
}
*/

/* Change the right sidebar width.  Note that the sidebars have a 10px left or
right padding (left sidebar has a left padding and right sidebar has a right
padding), hence the 150px - 10px = 140px width */
#ocwrapper {
  border-right-width: 300px;
}
#rightsidebar {
  margin-right: -300px;
  background: #E5E5E5;
  width: 290px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 300px 0px 0px;
}

/* Change width of document */
#wrapper {
  width: 950px;
}

/* Don't want the shadows? */
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtopleft, .shadowtopright, .shadowbottomleft, .shadowbottomright {
  width: auto;
  height: auto;
  float: none;
  background: none;
}

/* If you change the globals category_cols or home_category_cols, then you will
need to change the width of the columns themselves.  Note that IE sometimes has
problems if this value adds up to 100%, so keep the width a little under 100%.
For example, if you changed category_cols to 3, then this example would set
the width of the columns to 33% (99% total).  If you want to change the columns
on the home page as well, then remember to set a rule for "#home dl" as well. */
/*
#category dl {
  width: 33%;
}
*/

body {
    margin-bottom: 5px;
}

.section-body,
.rb-body,
.section-body-rb {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 0px;
    /* margin-bottom: 20px; */
    position: relative;
}

.section-body-rb .rb-t { background: url(images/green-section-body-rb-t.gif) 0 0 repeat-x }
.section-body-rb .rb-tr { background: url(images/rounded-greencorner.gif) 100% 0 no-repeat }
.section-body-rb .rb-tl { background: url(images/green-section-body-rb-tl.gif) 0 0 no-repeat }
.section-body-rb .rb-l { background: url(images/section-body-rb-l.gif) 0 0 repeat-y }
.section-body-rb .rb-r { background: url(images/section-body-rb-r.gif) 100% 0 repeat-y }
.section-body-rb .rb-br { background: url(images/white-header-br.gif) 100% 100% no-repeat }
.section-body-rb .rb-bl { background: url(images/white-header-bl.gif) 0 100% no-repeat }
.section-body-rb .rb-b { background: url(images/section-body-rb-b.gif) 0 100% repeat-x }

.section-body h3.blue, .section-body h2.blue,
.rb-body h3.blue, .rb-body h2.blue {
    margin: 0px;
    padding: 0px;
    color: #ffffff;
    position: absolute;
    top: 8px;
    left: 10px;
    font-weight: bold;
}

.rb-outer {
margin: 0px;
padding: 0px;
}

.section-body-rb h3.blue {
    color: white;
}

.section-body h4 {
    margin: 0px 0px 0px 0px; 
    padding: 4px 20px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 12px;
    color: #543976;
}

/*
.section-body ul {
    list-style-type: none;
    margin: 0px;
    font-size: .7em;
    padding: 0px;
    float: left;
    position: relative; /* required to prevent IE6 from making this block disappear */
/*
}

.section-body li {
    padding: 0 0 0 12px;
    margin: 0px ;
    background: url(/static/blue/images/arrow.gif) 0 .4em no-repeat;
}
*/

.header-body {
    margin: 10px;
    position: relative;
}
.header-body-rb .rb-t { background: #ffffff; }
.header-body-rb .rb-tr { background: url(images/white-footer-tr-noborder.gif) 100% 0 no-repeat }
.header-body-rb .rb-tl { background: url(images/white-footer-tl-noborder.gif) 0 0 no-repeat }
.header-body-rb .rb-l { background: url(images/section-body-rb-l.gif) 0 0 repeat-y }
.header-body-rb .rb-r { background: url(images/section-body-rb-r.gif) 100% 0 repeat-y }
/*
.header-body-rb .rb-br { background: url(images/section-body-rb-br.gif) bottom right no-repeat }
.header-body-rb .rb-bl { background: url(images/section-body-rb-bl.gif) bottom left no-repeat }
.header-body-rb .rb-b { background: url(images/section-body-rb-b.gif) 0 100% repeat-x }
*/

.navbar-body {
    /*padding-bottom: 10px;
    border: 1px solid red;*/
}
.navbar-body-rb { margin:0px; padding:0px }

.navbar-body-rb .rb-t { background: #000000; }
.navbar-body-rb .rb-tr { background: #ffffff; }
.navbar-body-rb .rb-tl { background: #ffffff; }
.navbar-body-rb .rb-l { background: url(images/section-body-rb-l.gif) 0 0 repeat-y }
.navbar-body-rb .rb-r { background: url(images/section-body-rb-r.gif) 100% 0 repeat-y }
.navbar-body-rb .rb-br { background: url(images/section-body-rb-br.gif) bottom right no-repeat }
.navbar-body-rb .rb-bl { background: url(images/section-body-rb-bl.gif) bottom left no-repeat }
.navbar-body-rb .rb-b { background: url(images/section-body-rb-b.gif) 0 100% repeat-x }

.padded { 
  padding: 35px 15px 15px 15px;
}

.rb-body .padded { 
  padding: 35px 5px 5px 20px;
}

body {
    background: #E5E5E5;
}


#home dl {
  width: 98%;
}

#header {
  margin:0px; padding:0px;
  border: 1px solid green;
}
#logo {
  margin-left: 10px;
  width: 370px;
  height: 65px;
}
#content {
  background: #ffffff;
  padding: 0px;
  margin: 0px 0px 0px 0px;
}
#ocwrapper {
/* background colour of left sidebar */
  border-left: 0px solid #ffffff;
  border-right-color: #E5E5E5;
/* background colour of right sidebar */
  background: #E5E5E5;
}
#leftsidebar {
  padding: 10px 0px 10px 0px;
}

.menu_padded { 
    /*padding: 0px 5px 15px 5px;*/
    padding: 0px;
}
ul.menu {
  margin: 0px;
  padding: 0px;
  float: left;
  list-style: none;
  width: 100%;
}
ul.menu li {
  height: 33px;
  float: left;
  list-style: none;
}
ul.menu a {
  text-align: center;
  /*padding: 9px 21px 7px 21px;*/
  padding: 9px 21px 7px 20px;
  float: left;
  color: #ffffff;
  font-weight: bold;
  font-size: 11px;
  text-decoration: none;
}
ul.menu a:visited {
  color: #ffffff;
}
ul.menu a:hover {
  color: #ffffff;
}
ul.menu li {
  border: 0px;
}
ul.menu li.separator {
  text-indent: -1px;
}
ul.menu li.separator1 {
  background: url(images/nav/separator1.gif) no-repeat;
}
ul.menu li.separator2 {
  background: transparent url(images/nav/separator2.gif) no-repeat;
}
ul.menu li.separator3 {
  background: transparent url(images/nav/separator3.gif) top left no-repeat;
}
ul.menu li.separator4 {
  background: transparent url(images/nav/separator4.gif) top left no-repeat;
}
ul.menu li.separator5 {
  background: transparent url(images/nav/separator5.gif) top left no-repeat;
}
ul.menu li.separator6 {
  background: transparent url(images/nav/separator6.gif) top left no-repeat;
}
ul.menu li.separator7 {
  background: transparent url(images/nav/separator7.gif) top left no-repeat;
}
ul.menu li.menu-item-camp-directory {
  background: url(images/nav/rounded-redcorner.gif) top left no-repeat; 
}
ul.menu li.menu-item-job-fair {
  background: url(images/nav/orange.gif) repeat-x; 
}
ul.menu li.menu-item-camp-forum {
  background: url(images/nav/yellow.gif) repeat-x; 
}
ul.menu li.menu-item-rent-a-camp {
  background: url(images/nav/green.gif) repeat-x; 
}
ul.menu li.menu-item-vender-outlet {
  background: url(images/nav/purple.gif) repeat-x; 
}
ul.menu li.menu-item-resources {
  background: url(images/nav/lighterpurple.gif) repeat-x; 
}
ul.menu li.menu-item-camp-owner {
  background: url(images/nav/blue.gif) repeat-x; 
}
ul.menu li.menu-item-all-about-us {
  width: 122px;
  background: url(images/nav/rounded-grey-corner.gif) top left no-repeat;
}

#rightsidebar {
  padding: 10px 0px 10px 10px;
}
#leftsidebar {
  padding: 10px 0px 10px 0px;
}

.footer-body,
.footer-body-rb {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    background: #ffffff;
}

.footer-body-rb .rb-t { background: url(images/section-body-rb-b.gif) 0 0 repeat-x }
.footer-body-rb .rb-tr { background: url(images/white-header-tr.gif) 100% 0 no-repeat }
.footer-body-rb .rb-tl { background: url(images/white-header-tl.gif) 0 0 no-repeat }
.footer-body-rb .rb-l { background: url(images/section-body-rb-l.gif) 0 0 repeat-y }
.footer-body-rb .rb-r { background: url(images/section-body-rb-r.gif) 100% 0 repeat-y }
.footer-body-rb .rb-br { background: url(images/white-header-br.gif) 100% 100% no-repeat }
.footer-body-rb .rb-bl { background: url(images/white-header-bl.gif) 0 100% no-repeat }
.footer-body-rb .rb-b { background: url(images/section-body-rb-b.gif) 0 100% repeat-x }

.footer-padded { 
    padding: 1px 0px 1px 0px;
    margin: 5px 5px 5px 5px;
}

#topbar {
  float: right;
  text-align: right;
}
.topmenu {
    position: absolute;
    right: 10px;
    top: 5px;
}
.topsearchbar {
    position: absolute;
    right: 10px;
    top: 30px;
}
.topsearchbar .submit {
    background: #F37E31;
    color: #FFFFFF;
}

.section-body, .section-body-rb {
background: white;
}

.sc-normal{background-color:transparent;color:#000;font-family:verdana,sans-serif;font-size:11px;font-weight:normal;text-decoration:none;}
.sc-normal a:link{color:#039;text-decoration:underline;}
.sc-normal a:visited{color:#039;text-decoration:underline;}
.sc-normal a:hover{color:#3c3;text-decoration:underline;}
.sc-normal a:active{color:#c00;text-decoration:underline;}
.sc-subnav {background-color:transparent;color:#fff;font-family:verdana,sans-serif;font-size:10px;font-weight:bold;text-decoration:none;} 
.sc-subnav a:link{background-color:transparent;color:#fff;font-family:verdana,sans-serif;font-size:10px;font-weight:bold;text-decoration:none;} 
.sc-subnav a:visited{background-color:transparent;color:#fff;font-family:verdana,sans-serif;font-size:10px;font-weight:bold;text-decoration:none;}
.sc-subnav a:hover{background-color:transparent;color:#ccc;font-family:verdana,sans-serif;font-size:10px;font-weight:bold;text-decoration:none;}
.sc-subnav a:active{background-color:transparent;color:#ccc;font-family:verdana,sans-serif;font-size:10px;font-weight:bold;text-decoration:none;}
.sc-title{background-color:transparent;color:#000;font-family:verdana,sans-serif;font-size:12px;font-weight:bold;text-decoration:none;}
.sc-title a:link{text-decoration:underline;}
.sc-title a:visited{text-decoration:underline;}
.sc-title a:hover{text-decoration:none;}
.sc-title a:active{text-decoration:none;}
.sc-sub{background-color:transparent;color:#000;font-family:verdana,sans-serif;font-size:10px;font-weight:normal;text-decoration:none;}
.sc-sub a:link{text-decoration:underline;}
.sc-sub a:visited{color:#c0c0c0;text-decoration:underline;}
.sc-sub a:hover{background-color:#c00;color:#fff;text-decoration:underline;}
.sc-sub a:active{color:#c00;text-decoration:underline;}

.cat-minus, .cat-plus {
    float: left;
}

#home .desc {
    margin-left: 0px;
    padding-bottom: 5px;
}

#home .desc-line {
    border-bottom: 1px solid #FFCC00;
    margin-left: 10px;
    padding: 5px 10px 0px 5px;
    margin-bottom: 5px;
}

#subcat h2 {
font-family:verdana,arial,sans-serif;
font-size:12px;
color:#000f99;
font-weight:bold;
text-decoration:none;
margin-top:0px;
margin-bottom:0px;
margin-left:5px;
}

a:link, a:visited {
    color: #000f99;
}
a:hover {
    color: #33cc33;
}
.linkactions {
  margin: 4px;
}
.linkactions a {
  padding: 1px 4px;
  border: 1px solid #000f99;
  font-size: 12px;
  text-decoration: none;
}
.linkactions a:link {
  background-color: #cc0000;
  color: #ffffff;
  text-decoration: none;
}
.linkactions a:hover {
  background: #33CC33;
  color: #ffffff;
}
#zipcodesearch {
/*
  border: 1px solid #A32D2D;
*/
  text-align: center;
  border-top: dotted #999999 1px;
  margin-top: 2px;
}

#zipcodesearch h3 {
  font-size: 12pt;
  font-weight: bold;
  color: #F07800;
  font-family: verdana,arial,sans-serif;
  text-align: center;
  margin: 3px 0px 1px 0px;
}

#zipcodesearch form {
  margin: 0px 0px 3px 0px;
}

.faq_title {
  font-size: 16px;
  color: #0000cc;
  font-weight: bold;
  padding: 4px 0;
}

.faq_question {
  font-size: 13px;
  color: #cc3333;
  padding-top: 6px;
  margin-top: 10px;
  border-top: 1px solid #000000;
}

.crumb {
  color: #000f99;
  font-size:12px;
  font-weight:bold;
  text-decoration:none;
  margin-left:5px;
}

#detailed .desc_tbl {
  padding: 2px; 
  border: 1px outset #A8DDA0; 
  border-collapse: collapse; 
  background-color: #EBFFED;
  width: 468px; 
  text-align: left;
}

/* Commmunity Part */
#community .section-body,
#community .rb-body,
#community .section-body-rb {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 0px;
    position: relative;
}

#communtiy .section-body-rb .rb-t { background: url(images/red-section-body-rb-t.gif) 0 0 repeat-x }
#communtiy .section-body-rb .rb-tr { background: url(images/red-section-body-rb-tr.gif) 100% 0 no-repeat }
#communtiy .section-body-rb .rb-tl { background: url(images/red-section-body-rb-tl.gif) 0 0 no-repeat }
#communtiy .section-body-rb .rb-l { background: url(images/section-body-rb-l.gif) 0 0 repeat-y }
#communtiy .section-body-rb .rb-r { background: url(images/section-body-rb-r.gif) 100% 0 repeat-y }
#communtiy .section-body-rb .rb-br { background: url(images/white-header-br.gif) 100% 100% no-repeat }
#communtiy .section-body-rb .rb-bl { background: url(images/white-header-bl.gif) 0 100% no-repeat }
#communtiy .section-body-rb .rb-b { background: url(images/section-body-rb-b.gif) 0 100% repeat-x }

#communtiy .section-body h3.blue, #communtiy .section-body h2.blue,
#communtiy .rb-body h3.blue, #communtiy .rb-body h2.blue {
    margin: 0px;
    padding: 0px;
    color: #ffffff;
    position: absolute;
    top: 8px;
    left: 10px;
    font-weight: bold;
}
/* Commmunity Part Ends */

/* Misc */

p {
  padding: 4px 0;
  margin: 2px 0;
}

.relative {
  position: relative;
}

.red {
  color: #cc0000;
}

.bold {
  font-weight: bold;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}


.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.clear {
  clear: both;
}
.clear_left {
  clear: left;
}
.clear_right {
  clear: right;
}


/* lists */
/*
#content ul {
  margin: 10px 0px 0px 20px;
  padding: 0px;
  font-size: 12px;
  list-style: none;
}
#content ul.categories {
  margin: 0px;
}
.section-body ul {
    list-style-type: none;
    margin: 0px;
    font-size: .7em;
    padding: 0px;
    float: left;
    position: relative;
}

.section-body li {
    padding: 0 0 0 12px;
    margin: 0px ;
    background: url(/static/blue/images/arrow.gif) 0 .4em no-repeat;
}
*/

h1.heading {
  margin: 0px;
  padding: 0px;
  color: #ffffff;
  position: absolute;
  top: 8px;
  left: 10px;
  font-weight: bold;
}

h1.heading a {
  color: #ffffff;
  text-decoration: none;
}
h1.heading a:link {
  color: #ffffff;
  text-decoration: none;
}
h1.heading a:visited {
  color: #ffffff;
  text-decoration: none;
}
h1.heading a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Link Listing */
.linklisting {
  padding: 5px 5px 0px 10px;
  margin: 15px 5px;
  position: relative;
  left: 0;
  width: 96%;
  background: #ffffff;
}

.linklisting.gold {
  border: 1px solid #ffc62e;
}
.linklisting.silver {
  border: 2px solid #ffc62e;
}
.linklisting.bronze {
  border: 1px solid #ffc62e;
}

.linktitle {
  padding-bottom: 4px;
}

.camp_logo {
  margin: 5px 5px 0 0;
}

.linklisting div.linktitle {
  font-size: 14px;
}

.listingCampType, .linkLocation {
  font-size: 11px;
}

.linklisting .linkdescription {
  font-size: 12px;
  border: none;
  background: none;
  padding: 5px 0;
}

.linklisting #featured_tag {
  font-size: 10px;
  color: #ff0000;
  padding: 0 20px;
}

.listingPhone {
  font-size: 11px;
  margin-left: 0px;
}

.linklisting .linkactions {
  padding: 5px 0px 4px 0px;
}
.linklisting p.linkactions a, .linklisting_free p.linkactions a {
  padding: 1px 4px;
  border: 1px solid #bbbfa1;
  font-size: 11px;
  text-decoration: none;
  background: #ffc62e;
  color: #0033ff;
}
.linklisting p.linkactions a:link {
}
.linklisting p.linkactions a:visited {
}
.linklisting p.linkactions a:hover {
/*#e2e1eb;*/
  background: #75ff75;
  color: #ffffff;
}

.linklisting_free {
  padding: 0 30px;
  background: none;
  border: none;
}
.linklisting_free .with_logo {
  height: auto !important;
  min-height: 90px;
  height: 90px;
}
.linklisting_free .linkactions {
  padding: 4px 0px 4px 0px;
}
.linklisting_free div.linktitle {
  font-size: 14px;
  padding-bottom: 3px;
  margin: 8px 0 0 0;
}

.linklisting_free .listingCampType, .linklisting_free .listingPhone, .linklisting_free .linkLocation, .linklisting_free .linkdescription {
  font-size: 11px;
  background: none;
  border: none;
}
/* */





/* Detailed.html */
.logo {
  margin: 0 15px 0 5px;
  position: relative;
}

.address {
  height: auto !important;
  minimum-height: 180px;
  height: 180px;
  margin-left: 260px;
}

.link_spacer {
  padding-bottom: 3px;
}

#detailed .tabcontent {
  font-size: 12px;
  line-height: 14px;
}

.detailed_request_information {
  font-size: 12px;
}

#detailed .detailed_links a {
  width: 120px;
  display: block;
  border: 1px solid #bbbfa1;
  color: #0000ff;
  background: #ffca00;
  font-size: 12px;
  margin: 5px 4px;
  padding: 2px 6px;
  text-align: center;
}
#detailed .detailed_links a:hover {
  background: #33cc33;
  color: #e2e1eb;
}


#map {
  width: 280px !important;
  width: 260px;
  height: 300px;
  position: relative;
  left: -15px !important;
  left: -5px;
}


h2 .new-item span {
  margin: 0;
  top: 0;
  left: 0;
  font-family: arial, sans-serif;
}


#content #contentheader .error, #content #contentheader .message {
  margin: 0px 0px 0px 0px;
}
#content #contentheader {
  padding: 0;
  background: #ffffff;
}
	a.menuAddSpacing {
		margin-right:1px;
	}
