/* generic elements used througout the site, not specific to the template being used. */
body {
    font: 85% "Arial" normal; /* per yahoo guidelines this should be 11px at no magnification. fonts.css should ensure fallback families */
    color: #414141;
}

a {
    color: #1b95c8;
    text-decoration: none;    
}

a:focus {
    outline:none; /* works for ff */
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: .5em;
}

h1, h2 {
    font-size: 191%; /* about 21px */
    font-weight: normal;
}

h3 {
    font-size: 118%; /* about 13px */
}

h4 {
    font-size: 100%; /* about 11px */
}

h5, h6 { /* about 11px */
    font-size: 100%;
}

strong {
    font-weight: bold;
}

.underline {
    text-decoration:underline;
}

em {
    font-style: italic;
}

ul, ol, dl, p, pre, fieldset, table {
    margin-bottom: 1em;
}

abbr, acronym {
    border-bottom: 1px dotted #000;
    cursor: help;
}
ul, ol {
    margin-left: 2em;
}

li {
    margin-bottom: .5em;
}

ol li {
    list-style: decimal outside;
}

ul li {
    list-style: disc outside;
}

dl dd {
    margin-left: 1em;
}

th {
    font-weight: bold;
}

caption {
    margin-bottom: .5em; /*centered so it doesn't blend in to other content*/
    text-align: center;
}

input[type=text], input[type=password], textarea, input.text-field, input.password {
    width: 12.25em;
* width : 11.9 em;
}

input[type=button], input[type=submit], input[type=reset],
button, .button, .submit, .reset {
    overflow: visible;
}

/*
 * "action" should usually be attached to a containing element such as
 * <div> or <p> with child <a>. "action" can *also* be attached to <a>
 * if ever a necessary course. When attached directly to <a>, the link
 * will act as inline, with default text alignment, etc.
 */

.action {
    display: block;
    margin-top: .8333em;
    padding-right: .5em;
    text-align: right;
}

/* if this block is removed, a.action will behave like .action a. Note that empty space to the left
   will also activate the link if this is done. */
a.action {
    display: inline;
    margin: 0;
    padding: 0;
    text-align: inherit;
}

.action a, a.action {
    text-transform: capitalize;
    font-weight: bold;
}

.action a:hover, a.action:hover {
    color: #1b95c8;
}

.subbutt {
    text-align:center;
}

.debug-window-link { /* really cheap styling. but it works. This is only for development */
    position: fixed;
    padding: 4px;
    border: 1px solid white;
    top: 10px;
    right: 10px;
    background: #333;
    width: 6em;
    font-size: 90%;
    font-weight: bold;
    text-align: center;
    opacity: .8;
}

.debug-window-link a {
    color: #ff7;
}

.debug-table {
    width: 100%;
    border: 1px solid #eee;
}

.debug-table thead tr {
    background: #eee;
}

.debug-table th, .debug-table td {
    padding: 5px;
    font-size: 120%;
    border-bottom: 1px solid #999;
}

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

.info-tip {
    padding: 8px;
    border: 1px solid #00a6d3;
    background: #fff;
    width: 16.7em;
    font-size: 85%;
    z-index:99;
}

.info-tip .info-title {
    padding-bottom: 2px;
    font-size: 100%;
    font-weight: bold;
}
 
.tool-tip {
    width: 195px;
    background:#FFFFFF none repeat scroll 0%;
    border:1px solid #00B6DE;
    color:#000000;
    font-size:90%;
}

.tool-body {
    min-height: 37px; /* ensure the taper shows */
    padding: 10px;
}

.tool-title {
    margin-bottom: 7px;
    font-size: 110%;
}

.feedbackPanel {
    margin: 0px;
    padding: .8333em;
    color: #666;
    font-weight: bold;
}

/* append this class to feedbackPanel for smaller containers like modal alerts */
.extendedFeedbackPanel
{
    width:100%;
    padding:0.2%;
}

.feedbackPanel ul li {
    margin: 0;
    padding: 7px 0 7px 35px;
    list-style: none;
}

/* we need to specify li because these classes are also attached to child spans and such */
.feedbackPanel li.success-msg {
    background: url(../../images/common/widgets/success.gif) 0 1px no-repeat;
}

.feedbackPanel li.error-msg {
    background: url(../../images/common/widgets/error.gif) 0 1px no-repeat;
}

.feedbackPanel li.info-msg {
    background: url(../../images/common/widgets/information.gif) 0 1px no-repeat;
}

form.general { /* yes, this should only apply to forms */
    
}

button.button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

fieldset.group {
    clear: left;
}

.signin-txt{
    padding-top:5px;
}

a.signin-txt{
    float:left;
}    

.required {
    background: url( ../../images/common/required_field.gif ) 0 2px no-repeat;
    text-indent: 11px;
    font-weight:bold;
}

.required input {
        font-weight:normal;
    
}

label.required a {
    float: left; /* safari fix */
    text-indent: 0;
}

.form-footnote {
    display: inline;
    float: right;
    font-size: 75%;
    color: #999;
}

.group label, .group .multi {
    float: left;
    display: inline;
    margin-right: 10px;
}

.group .multi label, .multi span.required {
    display: block;
    float: none;
    margin: 0;
}

.multi .label {
    display: block; /* fixes safari layout issue with gender radio inputs */
}

.multi input, .multi select {
    display: inline;
    float: none;
    margin-right: .5em;
}

.multi label span, .multi label .radio {
    float: left;
}

.group label input
{
    margin-top:4px;
}

.group label .text-field,
.group label .password,
.group label .dropdown {
    display: block;
}

button.generic {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* need to block display this as well as set width for it
 * to work whereever you use this -- supplement with another class */
a.generic {
    color: #333;
    width: auto;
}

a.generic:hover {
    text-decoration: none;
    color: #333;
}

.generic span {
    display: block;
    overflow: visible;
    height: 23px;
    line-height: 20px;
    color: #fff;
    font-weight: bold;
}

.generic span.left {
    padding-left: 15px;
    background: url(../../images/common/widgets/general-buttons.gif) left top no-repeat;
}

.generic span.right {
    padding-right: 15px;
    background: url(../../images/common/widgets/general-buttons.gif) right top no-repeat;
}

button.generic:hover .left {
    background-position: left bottom;
}

button.generic:hover .right {
    background-position: right bottom;
}

/* temporary -- may change this to simply paragraph */
.address-view {
    margin-left: 0;
}

.address-view li {
    margin: 0;
    list-style: none;
}

/* error classes */

fieldset .error-message {
    display: block;
    clear: left;
    color: #f58523;
    font-size: 91.67%;
    text-indent: 0;
    /*width: 14.5em;*/
}

.submitter {
    padding:10px 0px;
    text-align:right;
}

.submitter2 {
    padding: .5em 0;
    float:left;
}


form .panel {
        background:#E9E9E9 none repeat scroll 0%;
        border:1px solid #E2E2E2;
        
        padding:20px;
        width:485px;
        }

fieldset.login input#email{
    width:200px;
}

/* modal panel classes */

.modal-dialog {
    position: absolute;
    margin-left: -19.5833em;
    top: 10em;
    left: 50%;
    width: 36.6667em;
    z-index: 200;
    background: #fff url(../../images/common/modal/modal-dialog.gif) center top repeat-x;
    padding: 50px 1.25em 15px; /* these should be in px to look right when scaling*/
}

.modal-dialog .subject {
    color: #f58523;
    font-size: 116.67%;
    margin-bottom: 1em;
}

.modal-dialog .group {
    background: #ccc;
    border-top: 2px solid #fff;
    padding: .5em .75em;
}

.popup .title {
    font-size: 150%;
    font-weight: bold;
    color: #333;
}

.popup .media {
    display: block;
}

.popup .caption {
    width: 90%;
    font-size: 85%;
}

/* Password Strength Meter */

.strengthWidget {
    font-size: 85%;
    width: 11.25em;
    padding: .5em;
    background: #fff;
    border: 1px solid #999;
}

.strengthStatus {
    font-weight: bold;
    margin: 0 0 .25em;
}

.strengthMeter {
    border: 1px solid #ccc;
    width: 10em;
    height: 1em;
}

/* for modal popups in checkout and videos */
.background_fade {
    position: absolute;
    background: #000;
}

.video_modal {
    position: absolute;    
    background: #fff;
    text-align: left;
}

.hasvideo:hover
{
    cursor:pointer;       
}

.disabled
{
    color: #ccc;
}

/* Print Invoice Styles */

.addresses, .invoiceinfo {
    float:left;
}

.addresses {
    margin-right: 10em;
}

.addresses p, .invoiceinfo p {
    margin:0;
}

.invoicelineitems {
    width:70%;
    clear:both;
    margin-top:1em;
}

.invoicelineitems .rt {
    text-align:right;
}

.invoicelineitems .hd {
    border-bottom:1px solid #666;
}

.invoicelineitems .tl {
    border-top:1px solid #666;
}


.invoicelineitems td {
    padding-bottom:3px;
}

#invoicepage {
    margin:50px;
}

#invoicepage .section {
    margin-top:1em;
}

.invoice-footer
{
    margin:20px 0 20px 0;
    text-align:center;
    width:650px;
}

.header-wrapper
{

    margin-bottom:20px;

}

.header-wrapper h3
{
    float:right;
    margin-top:5px;
    width:50%;
}
/* END Print Invoice Styles */

.effective-date
{
    padding-top:30px;
}

/* these need to be here for terms that don't include checkout.css */
body.inline {
    background: #fff;
    padding: 1em;
    width: 90%; /* prevents horiz scrollbars in IE */
}

.inline h1 {
    font-size: 110%;
    font-weight: bold;
}

.inline h2 {
    font-size: 100%;
    font-weight: bold;
}

.inline p.top {
    text-align: right;
}

.terms-nav .anchor-set {
    margin-left: 0;
    width: 33%;
}

.inline .terms-content {
    clear: both;
}

.aside{
    color:#666;
}

.create-account {
    float:left;                                     
    padding-top: 5px;
}

.login-page-left {
    float:left;
}

.login-page-right {
    float:right;
    margin:1em 0px 0px;
    text-align:right;
    font-size: 96%;
}

.demo-intro form .panel  {
    background:#E9E9E9 none repeat scroll 0% 50%;
    border:1px solid #E2E2E2;
    padding: 10px 20px 0px;
    width:92%;
    
}

.demo-intro .submitter  {
    padding:5px 0px;