@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 */

/* 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;
}
.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). */
/*
#category dl {
  width: 33%;
}
*/

body {
	color: #333333;
	font: 12px Arial, Helvetica, sans-serif;
}

#wrapper {
  width: 776px;
}

/*<group=Left sidebar>*/

#leftsidebar {
  	display: block;
    	margin-left: -128px;
  	width: 122px;
  	padding:  10px 0 10px 6px;
}

#leftsidebar ul {
	list-style: square;
	padding: 0 0 0 16px;
	margin: 0;
}

#leftsidebar li {
	padding: 4px 0;
	font-weight: bold;
	font-size: 14px;
}

#leftsidebar p {
	font-size: 12px;
	margin: 0;
	padding: 0;
}

#leftsidebar p.lastfivehead {
	color: #000000;
	font-weight: bold;
	font-size: 12px;
	padding: 10px 0 4px 0;
}

#leftsidebar a.lastfive {
	font-weight: normal;
	font-size: 11px;
}

#leftsidebar a.lastfive:hover {
}	
/*</group>*/
  
/*<group=Advertising>*/
#adsensetop {
	margin-bottom: 10px;
	text-align: center;
}

#adsenseright {
	text-align: left;
}

.ad_base {
	text-align: center;
	padding-top: 10px;
}

.ad_border {
	border:  1px solid #999999;
}

/*</group>*/

/*<group=Header>*/

#header {
	font-family: Arial, Helvetica, sans-serif;
	background: none;
}

#logo {
  background: url(/images/carlinks-logo.jpg) no-repeat;
  height: 110px;
  width: 300px;
  text-align: center;
  margin: auto;
}

div#content {
	/* minimum height of content pane is 600 px */
	min-height: 380px;
}

* html div#content {
 height: 400px;
}

#loginbar a {
  padding: 10px 50px 10px 0px;
}
	
/*</group>*/

/*<group=Home page>*/
#home h1 {
	text-align: center;
	color: #000000;
}

#home dt {
	padding: 10px 0 10px 0;
}

#announce {
	background: #E99F9D;
	color: #000000;
	padding: 2px 10px;
	margin:0;
}

#home dt a {
	font-size: 18px;
	color: #c90f0a;
	text-decoration: none;
}

#home dt a:hover {
	color: #C97E0A;
	text-decoration: underline;
}
/*</group>*/

/*<group=Primarynav>*/

.navbar {
  margin-bottom: 0;
}
ul.primarynav {
  	background: #000000;
}

ul.primarynav, ul.secondarynav {
  border-bottom: 0;

}

ul.primarynav li, ul.primarynav li.home {
  	background: none;
  	border: none;
}
ul.primarynav a {
	font-size: 12px;
	font-weight: bold;
}
ul.primarynav a:hover {
  	background: #c90f0a;
  	color: #ffffff;
}

.searchbar {
	border-top: 1px solid #000000;
  	margin-bottom: 0;
  	padding: 3px 10px;
  	border-bottom: 1px solid #000000;
  	background: #c90f0a;
  	color: #000000;
}

.searchbar input.text, .searchbar input.submit {
  margin-right: 5px;
  color: #000000;
}

.searchbar a {
	color:  #ffffff;
}

.searchbar a:hover {
	color: #ffef54;
	text-decoration: none;
}

/*</group>*/

/*<group=Detailed>*/

.keywords {
	color: #8f8f8f;
	font: 10px Arial, Helvetica, sans-serif;
}

#detailed h1 {
	
}

.screenshot {
	border: 1px solid #7e7e7e;
	padding: 1px;
}
	
#thumbshot {
	float: right;
	padding: 0 0 10px 10px;
}

#detailed .prevurl {
	float: left;
	text-align: left;
	margin: 0  0 15px 0;
}

#detailed .prevurl img {
	 vertical-align: middle;
}

#detailed .prevurl a {
  text-decoration: none;
}

#detailed .nexturl {
	float: right;
	text-align: right;
	margin: 0  0 15px 0;
}

#detailed .nexturl img {
	 vertical-align: middle;
}

#detailed .nexturl a {
  text-decoration: none;
}

#map {
	 z-index: 1;
	 width: 460px;
	 height: 300px;
	 border: 1px solid #999999;
	 text-align: center;
	 margin: auto;
}

.clear {
	clear: both;
}


/*</group>*/

/*<group=Presentation>*/

a, a:visited {
  color: #c90f0a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
	color: #C97E0A;
}

h1 {
	color: #000000;
	font-size: 20px;
}

h2 {
	
}

.crumb {
	font: 10px tahoma, geneva, verdana, sans-serif;
	margin: 10px 0 0 0;
}

/*</group>*/

/*<group=Sidebar setup>*/
#ocwrapper {
	border-color: #dbdbdb;
	border-left-width: 128px;
    	border-right-width: 132px;
}

#content {
	margin: 0 10px;
}

#rightsidebar {
  	margin-right: -132px;
  	width: 126px;
  	padding:  10px 6px 10px 0;
}

#contentheader, #contentfooter, #icwrapper, #ocwrapper {
	background: #dbdbdb;
}

#contentheader .error, #contentheader .message {
  margin: 0px 200px 0px 200px;
}

#footer {
  margin-top: 0;
  padding: 3px;
  color: #ffffff;
  border-top: 10px solid #c90f0a;
  background: #000000;
}

#footer p {
  margin: 0px;
  padding: 3px 0px;
  color: #ffffff;
  font-size: 9px;
}

#footer a {
	color: #ffffff;
}

/*</group>*/

