@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.
*/
body {
  color: #494949;
  font: normal 11px Verdana, Lucida Sans Unicode, sans-serif;
}
/* Logo size and image source */

#logo {
  width: 199px;
  height: 78px;
  background-image: url(images/clicgear_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;
  background: #ffffff;
}
#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: 790px;
  border: 1px solid black;
}


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

#header {
  background: none;
}

.header_bar {
	padding-bottom: 5px; 
	width: 100%; 
	height: 11px; 
	background: url(images/header_bar.gif) repeat-x; 

}

/*------------*\
|* navigation *|
\*------------*/
.navbar {
  margin-bottom: 0px;
}
ul.primarynav, ul.secondarynav {
  margin: 0px;
  padding: 0px;
  border-bottom: none;
  float: left;
  list-style: none;
}
ul.primarynav {
  width: 100%;
  background: #a4a4a4;
}
ul.secondarynav {
  width: 100%;
  background: #777c8d;
}
ul.primarynav li, ul.secondarynav li {
  float: left;
  list-style: none;
}
ul.primarynav li {
  border-right: 1px solid #6e6e6e;
}
ul.primarynav a {
  margin-right: 1px;
  padding: 6px 9px 6px 10px;
  float: left;
  color: #212126;
  font: bold 11px Arial, geneva, verdana, sans-serif;
  text-decoration: none;
}
ul.primarynav a:visited {
	color: #212126;
}
ul.primary a.selected:visited {
	color: #6d6d6d;
}
ul.primarynav a.selected {
	background: #d9d8d6;
	color: #6d6d6d;
}
ul.primarynav a:hover {
	color: #a4a4a4;
}
ul.primarynav li.home {
  border-right: 1px solid #6e6e6e;
    background: transparent url(images/nav_gradient.gif) bottom right repeat-x;

}
ul.primarynav li.home a {
  margin-right: 0px;
}
ul.secondarynav li.first {
  padding-left: 5px;
}
ul.secondarynav a {
  margin-right: 1px;
  padding: 4px 5px;
  float: left;
  color: #ffffff;
  font-size: 10px;
  text-decoration: none;
}
ul.secondarynav a:visited {
  color: #ffffff;
}
ul.secondarynav a:hover {
  color: #212126;
}


/*--------*\
|* footer *|
\*--------*/
#footer {
  margin-top: 3px;
  padding: 5px;
  border-top: 4px solid #b2b2b2;
  background: #ffffff;
}
#footer img {
  float: left;
}
#footer p {
  margin: 0px;
  padding: 13px 0px;
  color: #8a8d77;
  font-size: 9px;
}

.left_content {
float: left;
 width: 350px;
}
.right_content {
float: right;
width: 400px;

}

#video .left_content {
float: left;
 width: 565px;
}
#video .right_content {
float: right;
width: 200px;
text-align: right;
}


#content {
  padding: 0px;
  margin: 0px;
}
.shadowtop {
	display: none;
}
#content .left_content {
	margin-left: 10px;
}
#content .right_content {
	margin-right: 10px;
}
.mybreadcrumb {
    width: 790px;
    margin: 0 auto;
    text-align: left; 
    padding-bottom: 5px;
}

#subnav {
	background: #d9d8d6;
	padding: 6px 10px;
}
#subnav a, #subnav a:visited {
	text-decoration: none;
	color: #212126;
}
#subnav a:hover {
	color: #bc2323;
}
#subnav a.selected {
	text-decoration: underline;
	color: #bc2323;
}
a.selected, a.selected:visited {
	color: #bc2323;
}
.tabcolor {
	border-collapse: collapse;
}
.tabcolor .crow {
	margin: 10px 5px;
}
.tabcolor .crow .color, .tabcolor .crow .name {
	float: left;
}
.tabcolor .crow .name {
	padding: 3px 5px;
}
.tabcolor .crow .color {
	width: 20px;
	height: 20px;
	border: 1px solid #a4a4a4;
}
.tabcolor .kiwi {
	background: #bbff42;
}
.tabcolor .black {
	background: #000;
}
.tabcolor .blue {
	background: #201fb9;
}
.tabcolor .silver {
	background: #ededed;
}
.tabcolor .red {
	background: #e01e1d;
}
.tabcolor .orange {
	background: #fe840d;
}
.tabcolor .white {
	background: #fff;
}
.tabcolor .lavender {
	background: #e48de4;
}
.tabcolor .yellow {
        background: #FEF013;
}

.contact-form {
    padding: 10px;
}
