@import url(luna_core.css);
html { min-height: 100%; margin-bottom: 1px; } /* forces vertical scrollbar in non-IE browsers to prevent "page shifting"*/





a, a:visited, a:hover {
   color: #560806;
   font-family: Arial;
}

#home #wrapperinside a, #home #wrapperinside a:visited, #home #wrapperinside a:hover {
   color: #F3BF35;
   font-family: Arial;
}

#home a, #home a:visited, #home a:hover {
   color: #fff;
   font-family: Arial;
}



#content {
  margin: 0px;
  padding: 20px;
  background: #D8D8D8;
}

#footer {
  text-align:center;
  margin-top: 0px;
  padding: 3px;
  border: 0px;
  color:#FFF;
  background-color: #222;
  line-height:15px;
  font-size: 10px;
}
#footer p {
  margin-top: 5px;
  padding: 10px 0px;
  color: #ffffff;
  font-size: 9px;
}
#footer a {
  color: #ffffff;
  text-decoration: underline;
}

.crumb, .crumb a {
  font-size: 11px;
  font-family:Arial,Helvetica;
}

.categoryDescription {
 line-height:15px;
}

#category dt.firstlevel {
 font-size:11px;
 font-family: Arial;
}
#category dt img {
 display:block;
 border:0px solid;
 margin-top:5px;
 margin-bottom:5px;
}

#category dt a {
 font-size:11px;
}

.firstlevel {
 font-size:11px;
 font-family: Arial;
}
.subcat {
 padding:0px 0px 0 20px;
}
.subcat img {
 display:block;
 border:0px solid;
 margin-top:5px;
 margin-bottom:5px;
}

.subcat a {
 font-size:11px;
}


/* link/bookmark status icons */
.new-item, .updated-item, .popular-item, .unpaid-item, .expired-item, .free-item, .bookmark-public, .bookmark-default {
  background-image: none;
  font-weight: normal;
  font-size: 9px;
  color: #ffffff;
  vertical-align: text-top;
}
.new-item span, .updated-item span, .popular-item span, .unpaid-item span, .expired-item span, .free-item span, .bookmark-public span, .bookmark-default span {
  padding: 0px 3px;
  background-image: none;
}

.updated-item span {
 background-color:#f3bf35;
 color:#560806;
}

.link_left {
  width: 130px;
  float: left;
}
.link_right {
  height: 100px;
  width: 600px;
  float: left;
}

h4, h4 a {
 font-weight:normal;

}

.detailed_left img {
  padding: 5px;
}

.detailed_left {
  width: 420px;
  text-align: center;
  float: left;
}
.detailed_right {
  margin-left: 10px;
  height: 100%;
  width: 300px;
  float: left;
}

.description_detailed {
 width:500px;
 border:0px solid;
 line-height:15px;
}

body {
	height: 100%;
	margin: 0px;
	padding: 0;
	background-color: #222;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	text-align:left;
}

#wrapper {
	width:800px;
        margin: 0px auto;

}

#wrapperinside {
	width:800px;
        height: 550px;
	margin:	0px auto;
	padding: 10px 0 0 0px;
	border:0px solid #4C4D58;
        color: #ffffff;
}
#shadow1 {

}
#menu {
	width:800px;
	margin:	0px auto;
        padding-top:20px;
	text-align:left;
}

#menu a, #menu a:visited, #menu a:hover {
   font-family: Georgia;
}


#menu ul {
 float: left; 
 list-style: none; 
 margin: 0px 0px 0px 20px; 
 padding: 0px;
}
#menu li {
  float: left;
  padding: 10px;
  background:#580707;
}
#menu li a {
  margin-right: 1px;
  padding: 0px;
  color: #ffffff;
  font-size: 11px;
  text-decoration: none;
}
#menu li.act {
   background:#580707;
}



/*---------------*\
|* contentheader *|
\*---------------*/
#contentheader {
  padding: 0px 0px 0px 0px;
  background: #e2e1eb;
}
#contentheader .error, #contentheader .message {
  margin: 0px 0px 0px 0px;
  padding: 2px;
  border: 0px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}
#contentheader .error {
  background: #8c3030;
}
#contentheader .message {
  background: #868686;
}
#contentheader .error *, #contentheader .message * {
  margin: 0px;
  padding: 0px;
}




/*---------------*\
|* page specific *|
\*---------------*/

p.category {
 clear:left;
}

#bookmark_list input.checkbox {
  float: left;
}
#bookmark_list .folders .description, #bookmark_folder_view .folders .description {
  margin: 0px 0px 10px 20px;
}

.bookmark_link {
 border:0px solid;
 float:left;
 width:125px;
 margin-left:10px;
}

.bookmark_link .comments label {
  font-weight: bold;
}
.bookmark_link .comments label span {
  font-weight: normal;
}




/*
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: 150px;
}
#rightsidebar {
  margin-right: -150px;
  width: 140px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 150px 0px 0px;
}
*/

/* Change width of document */
/*
#wrapper {
  width: 95%;
}
*/

/* Don't want the shadows? */
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtop, .shadowbottom {
  height: 0px;
}
.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%;
}

.gallery {
	margin-bottom : 50px ;
}

#contactForm {
  width: 350px;
  float: right;
}

.moreinf {
  float: left;
  width: 350px;
}

#rofmap {
  float: right;
  padding-top: 20px;
width:170px;
}

#mapcontainer {
  float: left;
  margin-left: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.threePic img {
  vertical-align: top;
}

#loginComForm {
  text-align: left;
}
   font-family: Arial;

}

#content {
  margin: 0px;
  padding: 20px;
  background: #D8D8D8;
}

#footer {
  text-align:center;
  margin-top: 0px;
  padding: 3px;
  border: 0px;
  color:#FFF;
  background-color: #222;
  line-height:15px;
  font-size: 10px;
}
#footer p {
  margin-top: 5px;
  padding: 10px 0px;
  color: #ffffff;
  font-size: 9px;
}
#footer a {
  color: #ffffff;
  text-decoration: underline;
}

.crumb, .crumb a {
  font-size: 11px;
  font-family:Arial,Helvetica;
}

.categoryDescription {
 line-height:15px;
}

#category dt.firstlevel {
 font-size:11px;
 font-family: Arial;
}
#category dt img {
 display:block;
 border:0px solid;
 margin-top:5px;
 margin-bottom:5px;
}

#category dt a {
 font-size:11px;
}

/* link/bookmark status icons */
.new-item, .updated-item, .popular-item, .unpaid-item, .expired-item, .free-item, .bookmark-public, .bookmark-default {
  background-image: none;
  font-weight: normal;
  font-size: 9px;
  color: #ffffff;
  vertical-align: text-top;
}
.new-item span, .updated-item span, .popular-item span, .unpaid-item span, .expired-item span, .free-item span, .bookmark-public span, .bookmark-default span {
  padding: 0px 3px;
  background-image: none;
}

.updated-item span {
 background-color:#f3bf35;
 color:#560806;
}

.link_left {
  width: 130px;
  float: left;
}
.link_right {
  height: 100px;
  width: 600px;
  float: left;
}

h4, h4 a {
 font-weight:normal;

}

.detailed_left img {
  padding: 5px;
}

.detailed_left {
  width: 420px;
  text-align: center;
  float: left;
}
.detailed_right {
  margin-left: 10px;
  height: 100%;
  width: 300px;
  float: left;
}

.description_detailed {
 width:500px;
 border:0px solid;
 line-height:15px;
}

body {
	height: 100%;
	margin: 0px;
	padding: 0;
	background-color: #222;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	text-align:left;
}

#wrapper {
	width:800px;
        margin: 0px auto;
}


#shadow1 {
	margin: 20px 0 5px 20px;
	padding: 12px;
        width:275px;
        height:465px;
        border:0px solid black;
        background:#580707;
        filter:alpha(opacity=80);
        -moz-opacity:80;
        opacity:.80;
}
#menu {
	width:800px;
	margin:	0px auto;
        margin-top:0px;
	text-align:left;
}

#menu a, #menu a:visited, #menu a:hover {
   font-family: Georgia;
}


#menu ul {
 float: left; 
 list-style: none; 
 margin: 0px 0px 0px 20px; 
 padding: 0px;
}
#menu li {
  float: left;
  padding: 10px;
   background:#580707;
}
#menu li a {
  margin-right: 1px;
  padding: 0px;
  color: #ffffff;
  font-size: 11px;
  text-decoration: none;
}
#menu li.act {
   background:#580707;
}



/*---------------*\
|* contentheader *|
\*---------------*/
#contentheader {
  padding: 0px 0px 0px 0px;
  background: #e2e1eb;
}
#contentheader .error, #contentheader .message {
  margin: 0px 0px 0px 0px;
  padding: 2px;
  border: 0px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}
#contentheader .error {
  background: #8c3030;
}
#contentheader .message {
  background: #868686;
}
#contentheader .error *, #contentheader .message * {
  margin: 0px;
  padding: 0px;
}




/*---------------*\
|* page specific *|
\*---------------*/

p.category {
 clear:left;
}

#bookmark_list input.checkbox {
  float: left;
}
#bookmark_list .folders .description, #bookmark_folder_view .folders .description {
  margin: 0px 0px 10px 20px;
}

.bookmark_link {
 border:0px solid;
 float:left;
 width:125px;
 margin-left:10px;
}

.bookmark_link .comments label {
  font-weight: bold;
}
.bookmark_link .comments label span {
  font-weight: normal;
}






/*
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: 150px;
}
#rightsidebar {
  margin-right: -150px;
  width: 140px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 150px 0px 0px;
}
*/

/* Change width of document */
/*
#wrapper {
  width: 95%;
}
*/

/* Don't want the shadows? */
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtop, .shadowbottom {
  height: 0px;
}
.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%;
}

.gallery {
	margin-bottom : 50px ;
}

#contactForm {
  width: 350px;
  float: right;
}

.moreinf {
  float: left;
  width: 350px;
}

#rofmap {
  float: right;
  padding-top: 20px;
}

#mapcontainer {
  float: left;
  margin-left: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.threePic img {
  vertical-align: top;
}

#loginComForm {
  text-align: left;
}


#search .searchoption {
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px dotted #bbbfa1;
}

#search_results dt {
border:0px solid #000;
float:left;
width:140px;
padding-bottom:15px;
}

#search_results dt.firstlevel {
 font-size:11px;
 font-family: Arial;
}

#search_results dt a {
 font-size:11px;
}
   color: #560806;
   font-family: Arial;

}


#content {
  margin: 0px;
  padding: 20px;
  background: #D8D8D8;
}

#footer {
  text-align:center;
  margin-top: 0px;
  padding: 3px;
  border: 0px;
  color:#FFF;
  background-color: #222;
  line-height:15px;
  font-size: 10px;
}
#footer p {
  margin-top: 5px;
  padding: 10px 0px;
  color: #ffffff;
  font-size: 9px;
}
#footer a {
  color: #ffffff;
  text-decoration: underline;
}

.crumb, .crumb a {
  font-size: 11px;
  font-family:Arial,Helvetica;
}

.categoryDescription {
 line-height:15px;
}

#category dt.firstlevel {
 font-size:11px;
 font-family: Arial;
}
#category dt img {
 display:block;
 border:0px solid;
 margin-top:5px;
 margin-bottom:5px;
}

#category dt a {
 font-size:11px;
}

/* link/bookmark status icons */
.new-item, .updated-item, .popular-item, .unpaid-item, .expired-item, .free-item, .bookmark-public, .bookmark-default {
  background-image: none;
  font-weight: normal;
  font-size: 9px;
  color: #ffffff;
  vertical-align: text-top;
}
.new-item span, .updated-item span, .popular-item span, .unpaid-item span, .expired-item span, .free-item span, .bookmark-public span, .bookmark-default span {
  padding: 0px 3px;
  background-image: none;
}

.updated-item span {
 background-color:#f3bf35;
 color:#560806;
}

.link_left {
  width: 130px;
  float: left;
}
.link_right {
  height: 100px;
  width: 600px;
  float: left;
}

h4, h4 a {
 font-weight:normal;

}

.detailed_left img {
  padding: 5px;
}

.detailed_left {
  width: 420px;
  text-align: center;
  float: left;
}
.detailed_right {
  margin-left: 10px;
  height: 100%;
  width: 300px;
  float: left;
}

.description_detailed {
 width:500px;
 border:0px solid;
 line-height:15px;
}

body {
	height: 100%;
	margin: 0px;
	padding: 0;
	background-color: #222;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	text-align:left;
}

#wrapper {
	width:800px;
        margin: 0px auto;
}


#shadow1 {
	margin: 20px 0 20px 20px;
	padding: 12px;
        width:275px;
        height:465px;
        border:0px solid black;
        background:#580707;
        filter:alpha(opacity=80);
        -moz-opacity:80;
        opacity:.80;
}
#menu {
	width:800px;
	margin:	0px auto;
        margin-top:0px;
	text-align:left;
}

#menu a, #menu a:visited, #menu a:hover {
   font-family: Georgia;
}


#menu ul {
 float: left; 
 list-style: none; 
 margin: 0px 0px 0px 20px; 
 padding: 0px;
}
#menu li {
  float: left;
  padding: 10px;
   background:#580707;
}
#menu li a {
  margin-right: 1px;
  padding: 0px;
  color: #ffffff;
  font-size: 11px;
  text-decoration: none;
}
#menu li.act {
   background:#580707;
}



/*---------------*\
|* contentheader *|
\*---------------*/
#contentheader {
  padding: 0px 0px 0px 0px;
  background: #e2e1eb;
}
#contentheader .error, #contentheader .message {
  margin: 0px 0px 0px 0px;
  padding: 2px;
  border: 0px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}
#contentheader .error {
  background: #8c3030;
}
#contentheader .message {
  background: #868686;
}
#contentheader .error *, #contentheader .message * {
  margin: 0px;
  padding: 0px;
}




/*---------------*\
|* page specific *|
\*---------------*/

p.category {
 clear:left;
}

#bookmark_list input.checkbox {
  float: left;
}
#bookmark_list .folders .description, #bookmark_folder_view .folders .description {
  margin: 0px 0px 10px 20px;
}

.bookmark_link {
 border:0px solid;
 float:left;
 width:125px;
 margin-left:10px;
}

.bookmark_link .comments label {
  font-weight: bold;
}
.bookmark_link .comments label span {
  font-weight: normal;
}




/*
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: 150px;
}
#rightsidebar {
  margin-right: -150px;
  width: 140px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 150px 0px 0px;
}
*/

/* Change width of document */
/*
#wrapper {
  width: 95%;
}
*/

/* Don't want the shadows? */
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtop, .shadowbottom {
  height: 0px;
}
.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%;
}

.gallery {
	margin-bottom : 50px ;
}

#contactForm {
  width: 350px;
  float: right;
}

.moreinf {
  float: left;
  width: 350px;
}

#rofmap {
  float: right;
  padding-top: 20px;
}

#mapcontainer {
  float: left;
  margin-left: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.threePic img {
  vertical-align: top;
}

#loginComForm {
  text-align: left;
}
   font-family: Arial;

}

#content {
  margin: 0px;
  padding: 20px;
  background: #D8D8D8;
}

#footer {
  text-align:center;
  margin-top: 0px;
  padding: 3px;
  border: 0px;
  color:#FFF;
  background-color: #222;
  line-height:15px;
  font-size: 10px;
}
#footer p {
  margin-top: 5px;
  padding: 10px 0px;
  color: #ffffff;
  font-size: 9px;
}
#footer a {
  color: #ffffff;
  text-decoration: underline;
}

.crumb, .crumb a {
  font-size: 11px;
  font-family:Arial,Helvetica;
}

.categoryDescription {
 line-height:15px;
}

#category dt.firstlevel {
 font-size:11px;
 font-family: Arial;
}
#category dt img {
 display:block;
 border:0px solid;
 margin-top:5px;
 margin-bottom:5px;
}

#category dt a {
 font-size:11px;
}

/* link/bookmark status icons */
.new-item, .updated-item, .popular-item, .unpaid-item, .expired-item, .free-item, .bookmark-public, .bookmark-default {
  background-image: none;
  font-weight: normal;
  font-size: 9px;
  color: #ffffff;
  vertical-align: text-top;
}
.new-item span, .updated-item span, .popular-item span, .unpaid-item span, .expired-item span, .free-item span, .bookmark-public span, .bookmark-default span {
  padding: 0px 3px;
  background-image: none;
}

.updated-item span {
 background-color:#f3bf35;
 color:#560806;
}

.link_left {
  width: 130px;
  float: left;
}
.link_right {
  height: 100px;
  width: 600px;
  float: left;
}

h4, h4 a {
 font-weight:normal;

}

.detailed_left img {
  padding: 5px;
}

.detailed_left {
  width: 420px;
  text-align: center;
  float: left;
}
.detailed_right {
  margin-left: 10px;
  height: 100%;
  width: 300px;
  float: left;
}

.description_detailed {
 width:500px;
 border:0px solid;
 line-height:15px;
}

body {
	height: 100%;
	margin: 0px;
	padding: 0;
	background-color: #222;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	text-align:left;
}

#wrapper {
	width:800px;
        margin: 0px auto;
}


#shadow1 {
	margin: 20px 0 5px 20px;
	padding: 12px;
        width:275px;
        height:465px;
        border:0px solid black;
        background:#580707;
        filter:alpha(opacity=80);
        -moz-opacity:80;
        opacity:.80;
}
#menu {
	width:800px;
	margin:	0px auto;
        margin-top:0px;
	text-align:left;
}

#menu a, #menu a:visited, #menu a:hover {
   font-family: Georgia;
}


#menu ul {
 float: left; 
 list-style: none; 
 margin: 0px 0px 0px 20px; 
 padding: 0px;
}
#menu li {
  float: left;
  padding: 10px;
  background:#580707;
}
#menu li a {
  margin-right: 1px;
  padding: 0px;
  color: #ffffff;
  font-size: 11px;
  text-decoration: none;
}
#menu li.act {
   background:#580707;
}



/*---------------*\
|* contentheader *|
\*---------------*/
#contentheader {
  padding: 0px 0px 0px 0px;
  background: #e2e1eb;
}
#contentheader .error, #contentheader .message {
  margin: 0px 0px 0px 0px;
  padding: 2px;
  border: 0px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}
#contentheader .error {
  background: #8c3030;
}
#contentheader .message {
  background: #868686;
}
#contentheader .error *, #contentheader .message * {
  margin: 0px;
  padding: 0px;
}




/*---------------*\
|* page specific *|
\*---------------*/

p.category {
 clear:left;
}

#bookmark_list input.checkbox {
  float: left;
}
#bookmark_list .folders .description, #bookmark_folder_view .folders .description {
  margin: 0px 0px 10px 20px;
}

.bookmark_link {
 border:0px solid;
 float:left;
 width:125px;
 margin-left:10px;
}

.bookmark_link .comments label {
  font-weight: bold;
}
.bookmark_link .comments label span {
  font-weight: normal;
}






/*
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: 150px;
}
#rightsidebar {
  margin-right: -150px;
  width: 140px;
}
#contentheader .error, #contentheader .message {
  margin: 0px 150px 0px 0px;
}
*/

/* Change width of document */
/*
#wrapper {
  width: 95%;
}
*/

/* Don't want the shadows? */
.shadowtop, .shadowbottom, .shadowleft, .shadowright {
  background: none;
}
.shadowtop, .shadowbottom {
  height: 0px;
}
.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%;
}

.gallery {
	margin-bottom : 50px ;
}

#contactForm {
  width: 350px;
  float: right;
}

.moreinf {
  float: left;
  width: 350px;
}

#rofmap {
  float: right;
  padding-top: 20px;
}

#mapcontainer {
  float: left;
  margin-left: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.threePic img {
  vertical-align: top;
}

#loginComForm {
  text-align: left;
}


#search .searchoption {
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px dotted #bbbfa1;
}

#search_results dt, #new dt {
border:0px solid #000;
float:left;
width:145px;
padding:10px 5px 5px 0px;
}

#search_results dt.firstlevel {
 font-size:11px;
 font-family: Arial;
}

#search_results dt a {
 font-size:11px;
}

form.search {
padding-left:60px
}

