@charset "utf-8";
body {
    background: #42413C;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 100%;
    line-height: 1.4;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px;
}

h3 {
    color: #516ca8;
    font-size: 22px;
    font-style: italic;
    font-family: Tahoma, Geneva, sans-serif;
    font-weight: bold;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link, a:visited {
    color: #000;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
    width: 960px;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    background-color: #98A3C9;
}

.content {
    padding: 0;
    width: 799px;
    float: left;
    background-color: #E0E0E0;
    font-size: small;
    border-left: solid #666 1px;
    border-top: solid #666 1px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    font-size: small;
}

/* ~~ The navigation list styles (can be removed if you choose to use a pre-made flyout menu like Spry) ~~ */
ul.nav {
    list-style: none; /* this removes the list marker */
    border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
    margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}

ul.nav li {
    border-bottom: 1px solid #666; /* this creates the button separation */
}

ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    width: 160px; /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
    text-decoration: none;
    background: #98A3C9;
    font-size: 12px;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    background: #516ca8;
    color: #FFF;
}

.content h1, h2, h4, h5 {
    color: #6F161C;
}

.container .content strong {
    color: #06218A;
}

.content blockquote p strong {
    font-size: x-small;
}

.container .content blockquote p strong {
    color: #06218A;
}

.error {
    color: #6F161C;
    font-weight: bold;
    margin: 15px;
}

.labels {
    color: #666;
    font-size: small;
    padding-right: 25px;
    font-style: italic;
}

.addCart {
    background: #1f1a60;
    color: white;
    border: 1px solid #1f1a60;
    padding: 5px 30px;
    cursor: hand;
}

.addCart:hover {
    background: #25237f;
    cursor: hand;
}

input[type="Submit"]:disabled {
    background: #999;
    border: 1px solid #333;
}