/* 
    Document   : ollydog
    Created on : Dec 15, 2009, 4:54:48 PM
    Author     : zack
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/



/*
 * Put common colors here
 * ------------------------
 * Black        :   #000000
 */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
ol,ul {list-style:none; list-style-type: none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
q:before,q:after{content:'';}


/* MC2 Design Framework
   Forms */

fieldset {

    border-style: solid none none none;

    border-color: #999;

    border-width: 1px;

    padding: .75em;

}

fieldset legend {

    font-weight: bold;

    font-size: 1em;

    padding: 0 .5em 0 .5em;

    color: #000;

}

fieldset .form-container {

    padding-top: 1em;

}

form input[type="text"],

form input[type="password"],

form textarea {

    border: 1px solid #999;

    padding: 2px;

    color: #000;

    background-color: #fff;

}

/* Because internet explorer is stupid,
   the text class has to be the same as
   the class above in order for ie to
   render it properly - you cannot group
   them because ie will skip the rule
   since it doesn't understand the
   selector - todo: find a better way */

form .text,

form textarea {

    border: 1px solid #999;

    padding: 2px;

    color: #666;

    background-color: #fff;

}

form input[type="text"]:focus,

form input[type="password"]:focus,

form textarea:focus {

    border-color: #000;

    color: #000;

    background-color: #FFFFDF;

}

form .textfocus {

    border-color: #000;

    color: #000;

    background-color: #FFFFDF;

}

form input[disabled],

form textarea[disabled] {

    background-color: #eee;

    border-color: #999;

}

form .meta {

    float: right;

    width: 200px;

    border: 1px dashed #EDEF00;

    padding: .5em;

    background-color: #ffffdf;

    font-size: .9em;

}


form .header {

    /*border-bottom: 1px solid #333;*/

    text-decoration: underline;

    font-weight: bold;

    background: url(images/icons/help.png) no-repeat 0 50%;

    padding-left: 18px;

}

form dl {

    margin: 0;

    clear: left;

}

form dl,

form .headmessage {

    margin-right: 230px;

    margin-top: 0;

}

form dt {

    float: left;

    width: 100px;

    text-align: right;

    padding-right: .5em;

}

form dt,

form dd {

    padding-top: .5em;

    padding-bottom: .5em;

}

form dd {

    margin-bottom: 1em;

    padding-right: .5em;

}

form dd.error {

    border-top: 1px dashed #c00;

    border-bottom: 1px dashed #c00;

    padding-bottom: .5em;

    padding-left: .5em;

    background: #FF6F6F url(images/icons/exclamation.png) no-repeat 5px 5px; /* todo: find/make a new exclamation icon */

}

html>body form dd.error { /* only browsers who aren't lame will see this */

}

form dd {

    padding-left: 110px !important;

}

form dd.error input[type="text"],

form dd.error textarea {

    border: 1px solid #c00;

}

form dd.error .text {

    border: 1px solid #c00;

}

form .error {

    color: #c00;

}

form .error p {

    font-size: .75em;

}

form dt label:after {

    content: ':';

}

form dd ul {

    margin: 0;

    height: 1%;

}

html>body form dd ul {

    height: auto;

}



/* MC2 Design Framework
   Typography */


/* DEFAULT STYLES FOR (X)HTML ELEMENTS
-------------------------------------------------------------------------------- */

body {
  color: #000000;
  line-height: 18px;
  font-size: 12px;
  font-family: Verdana, Helvetica, sans-serif;
  font-weight: normal;
}

body,ul,ol,dl,h1,h2,h3,h4,h5,h6,td,th,caption,pre,p,blockquote,input,textarea {

}

#content fieldset ul li {list-style-type:disc;}

a {
  color: #006699;
  text-decoration: none;
  outline: none;
}

a:hover { text-decoration: underline; }

h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  line-height: 18px;
}

h1, h2, h3 {
    font-family: "Lucida Grande", "Lucida Sans";
    line-height: 36px;
}

h1 { font-size: 1.75em; }
h2 { font-size: 1.6em;  }
h3 { font-size: 1.45em; }
h4 { font-size: 1.3em;  }
h5 { font-size: 1.25em; }
h6 { font-size: 1em; }

p { margin: 18px 0; }

ul, ol, dl {
  margin: 18px;
}
ol { list-style-type: decimal; }

dl dt {
  font-weight: bold;
}

ul.inline li {

   display: inline;

}

blockquote {
  margin: 18px 0;
  padding-left: 1.5em;
  border-left: 4px solid #ddd;
  font-style: italic;
}
blockquote * { color: #999; }

blockquote p { padding: .5em; }

strong { font-weight: bold; }

em { font-style: italic; }

/* LISTS
-------------------------------------------------------------------------------- */

ul.bullets {

    /* todo: impliment this */

}

/* DEFAULT STYLES FOR COMMON CLASSES
-------------------------------------------------------------------------------- */

.small {
  font-size: .85em;
}

.large {
  font-size: 1.25em;
}

.quiet {
  color: #666;
}

.hide {
  display: none;
}

.attention {
  border-top: 1px dashed #EDEF00;
  border-bottom: 1px dashed #EDEF00;
  background-color: #FFFFDF;
    padding: .45em;
    margin: .5em 0 .5em 0;
}

.success {
    border-top: 1px solid #A7DFA7;
    border-bottom: 1px solid #A7DFA7;
    font-weight: bold;
    background-color: #D1EFD1;
    color: #009900;
    padding: .5em;
    margin: .5em 0 .5em 0;
}

.error {
    color: #c00;
    font-weight: bold;
}

.highlight {
    background-color: #FFFFDF;
}


/** So IE plays nice **/
li, blockquote, dl, dt {zoom:1}

/* Typography */

h1, h2, h3 {
    font-family: helvetica, serif;
    color: #444;
}

h4, h5, h6 {
    color: #000;
}

a {
    color: #F9A21C;
    text-decoration: underline;
}

a:hover {
    color: #000;
    text-decoration: none;
}

/* Layout */

body {
    background-color: #F9A21C;
    color: #434342;
}

#content {
    /*background: #fff url(/images/layout/baseline.gif) !important;*/
}

#container {
    width: 1000px;
}

#rail {
    float: left;
    clear: left;
    width: 217px;
    padding: 4px;
    margin-top: -4px;
    /* this causes the dots on the bottom of the menu to show up */
    background: url(/images/layout/rail-dots.gif) repeat-x bottom;
}

#menu li {
    background: url(/images/layout/dot2.gif);
    text-indent: .5em;
}

#menu li.products h2,
#menu li a {
    display: block;
    font-size: 1.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    line-height: 36px;
}

#menu li.main a {
    background: url(/images/layout/bone-big-dull.gif) no-repeat 95% 50%;
}

#menu li ul li a {
    background: url(/images/layout/bone-small-dull.gif) no-repeat 98% 50% !important;
}

#menu li.main a:hover {
    background-image: url(/images/layout/bone-big-bright.gif);
}

#menu li ul li a:hover {
    background-image: url(/images/layout/bone-small-bright.gif) !important;
}

#menu {
}

#menu ul li {
    background: url(/images/layout/dot.gif);
    font-size: .85em;
}

#menu ul ul li,
#menu ul ul ul li {
    background-image: none;
}

#menu,
#menu ul {
    margin: 0;
}

#menu ul li {
    padding-left: 18px !important;
}

#menu ul li a {
    line-height: 18px !important;
    height: 18px;
}

#content {
    padding: 0 18px 18px 18px;
    background-color: #fff;
}

#content,
#footer {
    float: right;
    width: 739px;
}

#navbar {
    padding-left: 235px;
    width: 500px !important;
    padding-top: 4px;
    margin: 0;
    height: 60px;
}

#navbar li {
    display: inline;
}

#navbar li a {
    display: block;
    float: left;
    width: 99px;
    height: 50px;
    border-left: 1px solid #ccc;
    text-align: center;
    text-decoration: none;
}

#navbar li a .meta {
    font-size: .8em;
    line-height: 1;
    margin: 5px 0;
    color: #666;
    display: block;
}

#content-container {
    background: #fff url(/images/layout/rail-bg.gif) repeat-y left top;
}

#logo {
}

#logo span {
    display: none;
}

#logo a {
    display: block;
    background: url(/images/layout/logo.gif) no-repeat left top;
    height: 144px;
    width: 225px;
    float: left;
}

.giant-paw {
    height: 310px;
    width: 225px;
    background: url(/images/layout/giant-paw.gif) no-repeat right bottom;
    clear: left;
}

#footer {
    clear: both;
    text-align: center;
    color: #fff;
    line-height: 36px;
    height: 36px;
}

#footer ul {
    margin: 0;
}

#footer ul li a {
    padding: 9px;
}

#footer a {
    color: #fff;
    text-decoration: underline;
}

#footer a:hover {
    text-decoration: none;
}

#container {
    background: url(/images/layout/nav-header.gif) repeat-x left top;
}

#inner-container {
    background: url(/images/layout/h1.jpg) no-repeat right top;
    padding-top: 130px;
}

.skipnav {
    margin: 0;
}

.skipnav a {
    outline: none;
}

/* general styles */

ul.bullets {
    list-style-type: disc !important;
}

.box-bg {
    background: #e9e6e1 url(/images/layout/box-bg.gif) repeat-x left top;
}

.box-bg a {
    color: #000;
    text-decoration: underline;
}

.box-bg a:hover {
    text-decoration: none;
}

.box-bg .sep {
    background-color: white ;
    height: 18px;
}

.paragraph {
    margin: 1em 0;
}

h2.page-title sup.small {
    font-size: .5em !important;
}

.box-bg .button,
.box-bg table,
.box-bg p,
.box-bg .paragraph {
    margin: 1em;
}

.box-bg .select-box {
    line-height: 36px;
}

h2.page-title {
    border-bottom: 1px dashed #D9D2CC;
    margin-bottom: 18px;
    color: #494949;
}

/** specific pages **/

#new-customers {
    margin-right: 0px;
    width: 361px;
}

.login-box {
    width: 360px;
    float: left;
    margin: 0 18px 18px 0;
}

.login-box .button {
    margin: 0 1em;
}

.login-box fieldset,
.register fieldset,
.box-bg fieldset
 {
    border-style: none;
    padding: 0;
}

.login-box legend,
.register legend,
.box-bg legend {
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-indent: .5em;
    color: #504d4b;
    font-weight: bold;
}

table.form-wrapper td {
    padding: 0 !important;
}

table.form-wrapper table td {
    padding: 3px !important;
}

table.form-wrapper .box-bg {
    margin: 9px 0;
}

.billing-information .box-bg {
    margin-left: 18px !important;
}

.login-box a {
    color:
}

/* Category page */

.category-list-product {
    width: 735px;
    margin: 9px 0 0 0;
    clear: left;
    border-bottom: 1px dashed #bbb;
}

.category-list-product img {
    background-color: white;
    padding: 5px;
    float: left;
}

.category-list-product .name {
    font-size: 1.25em;
    text-decoration: none;
    line-height: 18px;
}

.category-list-product .product-information {
    float: right;
    width: 519px;
    padding: 9px;
}

.category-list-product .product-photo {
    float: left;
}

.category-list-product .paragraph {
    display: block;
}

.category-list-product p,
.category-list-product .paragraph {
    margin: 9px 0;
}

#category-wrapper .information {
    float: left;
}

/* View Cart Page */

table.cart th {
    font-weight: bold;
}

table.cart td {
    padding: .5em;
}

table.cart .even {
    background-color: #F3F0EA;
}

.checkout {
    text-align: right;
}

/* Product Page */

#product-details .product-information {
    float: right;
    width: 400px;
    padding: 0;
    border-style: none;
}

#product-details .product-photos {
    width: 325px;
    float: left;
}

#alternate-photos {
}

#alternate-photos .image {
    float: left;
    height: 100px;
    margin: 5px 5px 0 0;
}

/** forms **/

.form-message p {
    margin: 0;
}

form table td {
    padding: 5px;
}

form table td label:after {
    content: ':';
}

form .required {
    font-weight: bold;
}

form .button {
    text-align: left;
    padding: 1em 0;
}

table.categories td a {
    text-decoration: none;
    font-size: 1.25em;
    font-weight: normal;
    color: #444;
}

table.categories td {
    text-align: center;
}

h3.related-items {
    clear: both;
    border-bottom: 1px dashed #ccc;
}

#footer .copyright {
    font-size: .85em;
    color: white;
    line-height: 18px;
}

table.invoice td {
    padding: 3px;
}

table.cart .total {
    font-size: 1.5em;
}

/** NEWS **/

.news-post {

	border-bottom: 1px dashed #666;

	margin: .5em 0 1em 0;

}

.news-post h3 {
    font-weight: normal;
}

.news-post .note {
    margin: 0;
}


.sub-level-1 {display:none}

#home_text {padding:0 5px 5px 0; width: 500px; color: #636363; }
#home_image {margin:-19px 0px -18px -18px;}
#home_image_div {padding:0px;margin:0px;}


/* CSS from Wordpress */

.post	 		{float:left;margin-top:50px;width:500px;}
.post h2 a		{color:#000;text-decoration:none;}
.post h2  		{border-bottom:3px dotted #F9A21C;line-height:30px;}
#sidebar 		{float:right;margin:85px 0 0 0 !important;margin:83px 0 0 0;width:200px; display:none}
#sidebar ul		{margin:0;padding:0;}
#sidebar li		{margin:0;padding:0;}

#respond		{float:left;width:100%;}
.commentlist	{float:left;width:100%;}
#content .widecolumn{float:left;width:500px;}
.widecolumn		{float:left;margin:0 0 0 -15px !important;margin:0;padding:0;width:500px;}
.widecolumn p	{}
.post 			{}
.post a 		{display:inline;}
.post p img		{padding:0;}
.post p a img	{padding:5px;border:1px solid #ddd; max-width: 500px;}
.post blockquote{width:60%;}
.postmetadata	{clear:both;}

#comment		{width:100%;}

.scream			{float:left;padding:5px 0 15px 0;width:500px;border-bottom:1px dashed #eee;font-size:.8em;}
.scream h4		{font-size:.9em;text-decoration:underline;line-height:1.2em;color:#555;}
.scream ul		{margin:0;padding-left:3px;line-height:1.4em;}
.scream li		{display:inline;}
.scream ul li	{text-indent:3px;}
.clear			{clear:both;}

/* comments section */

#comments {float:left;padding-left:20px;}
#comment_form {width:650px}
#current-comments {float:left;}
#current-comments li:nth-child(odd) {background-color:#dcdcdc}
#current-comments li:nth-child(even) {background-color:#fff;margin-left:15px}
#current-comments li p{margin:0px;padding:0px;padding:10px}
#current-comments ul {width:650px;}
#social {color:#fff;font-size:1.1em;margin-left:10px;}
#social #follow {padding-bottom:5px}
#social #facebook {display:inline;margin:0px 0px 0px 50px;}
#social #twitter {display:inline;padding-left:10px;}


#feed {
    background-color:#FEECD2;
    float:right;
    margin-right:-5px;
    width:169px;
    padding: 5px 8px;
}
#feed h2 {
    border-bottom:2px dotted #F9A21C;
    font-size:13px;
    font-weight:bold;
    letter-spacing:0.03em;
    line-height:33px;
    margin-bottom:10px;
    text-align:center;
}
#feed ul li {
    margin-bottom: 15px;
} #feed ul li a {
    color: #494949;
    text-decoration: none;
}