/* www.pctonline.com */
/* MainStyle.css */

/* 
  HTML5 Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}              

body
{
    background-color: #f6f6e6;
}    

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
/*table { border-collapse:collapse; border-spacing:0; }*/

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; margin-bottom: 6px; }

/* END RESET CSS */

body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 
/* 
 * minimal base styles 
 */

/*@font-face { font-family: 'Whitman'; src: url('/Fonts/whitman-boldlf.pfm');}*/

body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #010101; 
  /* set your base font here, to apply evenly */
  /*font-family: Whitman, Georgia, Serif;*/
  font-family: Georgia, Serif;
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

h2, h3, h4
{
    color: #000;
    margin-bottom: 4px;
}

h2 a, h3 a, h4 a, h2 a:visited, h3 a:visited, h4 a:visited
{
    color: #000;
}

h2 a:hover, h3 a:hover, h4 a:hover
{
    text-decoration: none;
}

h2
{
    font-size: x-large;
    line-height: 28px;
}

h3
{
    font-size: large;
}

h4
{
    font-size: medium;
    font-weight: normal;
}

h5
{
    color: #010101;
    text-transform: uppercase;
    margin-top: 5px;
}

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #dd1f27; text-decoration: none;}
a:hover { text-decoration: underline; }
a.alt { color: #9e9e9e; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
/*nav ul, nav li { margin: 0; } */

small { font-size: 85%; }
strong, th { font-weight: bold; }

/*td, td img { vertical-align: top; }*/

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
    border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
    -webkit-box-shadow: 0px 0px 5px red; 
    box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/* Primary Styles */
#container
{
    width: 960px;
    margin: 0 auto;
    background-color: #fff;
    border: solid 1px #a2a994;
    border-top: none;
    border-bottom: none;
}

#floating
{
    width: 500px; 
    height: 500px; 
    position: absolute; 
    /*top: 168px;
    left: 50%;
    margin-left: -250px;*/
    left: 0;
    top: 0px;
    z-index: 999;
}

/* Top */
#site-search
{
    padding: 15px 10px 10px 0;
    text-align: right;
}

#header-nav 
{
    padding-left: 26px;
}

#header-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

#header-menu li {
    display: inline;
    margin: 0 2px 0 0;
    padding: 0;
    text-transform: uppercase;
}

#header-menu li a {
    float: left;
    display: block;
    color: #000;
    margin: 0;
    padding: 3px 13px 4px 13px;
    border: solid 1px #a2a994;
    border-left: none;
    border-bottom: none;
    font-size: 104%;
}

#header-menu li a.first 
{
    border-left: solid 1px #a2a994;
}

#header-menu li.current a
{
    background: #fff url('/Images/menu-selected-bg.gif') repeat-x;
}

#header
{
    background-color: #000;
    padding: 22px 15px 8px 26px;
    text-align: right;
}

#leaderboard
{
    height: 90px;
    width: 728px;
    float: right;
}

#current-date
{
    line-height: 29px;
    color: #000;
    font-weight: bold;
    text-align: center;
    width: 100%;
    font-size: 85%;
    background-color: #b2b372;
}

/*Main Column */
#content
{
    background: #fff url('/Images/site-bg.gif') repeat-y;
}

/* Left Column */
#side-nav
{
    float: left;
    width: 102px;
    margin-right: 8px;
    background: #fff url('/Images/left-nav-bg.gif') repeat-x;
    min-height: 1100px;
}

#side-menu
{
    list-style: none;
    margin: 0;
}

#side-menu li
{
    text-transform: uppercase;
    padding-bottom: 9px;
    font-size: 85%;
    font-weight: bold;
}

#side-menu ul
{
    margin: 0;
    padding: 0;
    list-style: none;
    padding-bottom: 9px;
}

#side-menu ul li
{
    margin: 0;
    padding: 0;
    text-transform: none;
    font-size: 100%;
    padding: 2px 0;
}

#side-menu ul li a
{
    color: #000;
    font-weight: normal;
}

/* Center */
#left-column
{
    float: left;
    width: 486px;
}

#left-column p
{
    margin-bottom: 24px;
}

/* Bottom Banner */
#banner 
{
    text-align: center;
    margin-bottom: 10px;
}

/* Right */
#right-column
{
    float: left;
    width: 300px;
    margin-left: 8px;
}

.inline-list
{
    margin: 0;
    padding: 0 1em;
    list-style: none;
    line-height: 25px;
}

.inline-list li
{
    display: inline; 
    margin: 0;
    padding: 0 0.2em 0 0.5em;
    border-left: solid 1px #9e9e9e;
}

.inline-list li.first
{
    padding-left: 0;
    border: 0;
}    

#right-column ul.inline-list
{
    text-align: right;
}

#right-column ul.inline-list li a
{
    color: #000;
    text-decoration: none;
}

.popup
{
    background-color: #fff;
    position: absolute;
    visibility: hidden;
    border: solid 1px #9ca48d;
    width: 260px;
    padding: 2px;
}

.popup .question
{
    font-size: 85%;
    margin-bottom: 1em;
}

.popup h1, .modal-popup h1
{
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    font-family: Arial, Tahoma, Sans-Serif;
    padding: 2px;
    text-align: center;
}

.popup h2, .modal-popup h2
{
    font-size: small;
}

.modal-popup
{
    background-color: #fff;
    border: solid 1px #9ca48d;
    min-width: 235px;
    padding: 2px;
}

.modal-background {
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

#prime-rectangles
{
    padding: 0 9px;
}

.prime-plus-rectangle-container
{
    margin-bottom: 20px;
}

/* Bottom */
#sponsors 
{
    width: 960px;
    margin: 0 auto;
    font-size: 9px;
    text-transform: uppercase;
    font-family: Arial, Sans-Serif;
    font-weight: bold;
    float: right; 
    width: 839px; 
    background: #fff url('/Images/sponsor-bg.gif') no-repeat;
    border-left: solid 1px #9ca48d;
    padding: 24px 0 11px 0;
}

#sponsors a
{
    color: #fff;
}

#sponsors a:hover
{
    text-decoration: none;
}

#footer
{
    text-transform: uppercase;
    background-color: #000;
    padding: 6px 0 4px 0;
    text-align: center;
    clear: right;
    font-family: Arial, Sans-Serif;
}

#footer .inline-list
{
    display: inline;
    padding: 0 4px;
}

#footer .inline-list li
{
    border-left: solid 1px #999;
}

#footer .inline-list li.first
{
    padding-left: 0;
    border: 0;
}

#footer .inline-list li a
{
    color: #999;
}

/* Home Page */
#home
{
    font-size: 85%;
}

#left-column .left
{
    float: left;
    width: 280px;
    margin-right: 20px;
}

#left-column .right
{
    float: left;
    width: 181px;
}

#headline-news h2 a, #headline-news h2 a:visited
{
    color: #000;
}

#headline-news p
{
    margin-bottom: 0;
}

#product-promotions h4
{
    font-size: 12px;
}

#online-extras
{
    font-size: 10px;
    font-family: Arial, Sans-Serif;
    line-height: 100%;
}

#current-issue
{
    float: left;
    width: 70px;
    margin-right: 9px;
}

#online-extras, #supplier-news, #business-news, #product-promotions
{
    clear: both;
}

#online-extras ul, #supplier-news ul, #business-news ul
{
    margin: 0 13px 17px 13px;
    *margin-left: 15px;
}

#online-extras ul li, #supplier-news ul li, #business-news ul li
{
    padding: 2px 0;
    color: #010101;
}

#online-extras ul li a, #supplier-news ul li a, #business-news ul li a, #online-extras ul li a:visited, #supplier-news ul li a:visited, #business-news ul li a:visited
{
    color: #010101;
}

#online-extras ul li a
{
    font-weight: bold;
    text-transform: uppercase;
}

/* Right Column */
#latest-multimedia, #pulse
{
    margin-bottom: 16px;
    font-family: Arial, Sans-Serif;
}

#latest-multimedia p, #pulse p
{
    font-size: 85%;
}

h1.content-header 
{
    color: #d73328;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    text-transform: uppercase;
    border-top: solid 1px #adadad;
    padding: 6px 0 4px 0;
    font-size: 110%;
}

a.author
{
    color: #666666;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    text-decoration: none;
    font-size: 85%;
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

a.more-link
{
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    color: #b2b372;
    text-transform: lowercase;
    text-decoration: underline;
    font-size: 85%;
}

.info-heading-header, .info-heading
{
    background-color: #000;
    font-weight: bold;
    padding: 2px 9px 6px 9px;
}

.info-heading-description
{
    font-weight: bold;
    color: #fff;
    background-color: #b2b372;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    padding: 2px 9px 6px 9px;
}

#latest-multimedia .info-heading-description p, #pulse .info-heading-description p
{
    margin-top: 2px;
}

.info-heading-header .content-header, .info-heading .content-header
{
    color: #fff;
    border: none;
    padding: 0;
}

#pulse .info-heading-header, #pulse .info-heading-description
{
    position: relative; 
    top: 1px;
}

ul.tabs {
    list-style-type: none;
    margin: 0;
    /*position: relative;
    top: 1px;*/
}

#pulse ul.tabs
{
    position: relative;
    top: 1px;
}

ul.tabs li {
    display: block;
    width: 99px;
    float: left;
    text-align: center;
    border: solid 1px #a2a994;
    border-left: none;
}

ul.tabs li img 
{
    padding: 5px 0 7px 0;
}

ul.tabs li a
{
    text-transform: uppercase;
    color: #000;
    line-height: 35px;
}

ul.tabs li.first
{
    border-left: solid 1px #a2a994;
    width: 98px;
}

ul.tabs li.selected
{
    background: #fff url('/Images/menu-selected-bg.gif') repeat-x;
    border-bottom: none;
}

.box
{
    border: solid 1px #a2a994;
}

#latest-multimedia .box, #pulse .box
{
    border-top: none;
}

ul.video-list
{
    margin: 0;
    padding: 0;
    margin-top: 18px;
    list-style: none;
    float: left;
}

ul.video-list li
{
    padding: 0;
    margin-bottom: 4px;
    margin-right: 5px;
    float: left;
    width: 88px;
}

ul.video-list li a 
{
    float: left;
    padding-left: 12px;
    background-image: url('/Images/PlayButton.gif');
    background-repeat: no-repeat;
    background-position: 0 3px;
    font-size: 85%;
    color: #000;
}

ul.video-list li img
{
    margin-bottom: 4px;
    display: block;
}

#facebook, #twitter, #blog
{
    height: 120px;
}

/* News */
#news
{
    font-size: 85%;
}
    
.bread-crumbs
{
    font-weight: normal;
    text-transform: none;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    margin-bottom: 9px;
    font-size: 11px;
}

.bread-crumbs a
{
    background: url('/Images/bread-crumb-separator.gif') no-repeat right 2px;
    padding-right: 11px;
    font-weight: bold;
}

.bread-crumbs a.last
{
    background-image: none;
}

#news h2
{
    font-size: 170%;
    margin-bottom: 4px;
    line-height: 24px;
}

#news h2 a
{
    color: #000;
}

.author-archive .box ul
{
    margin-bottom: 9px;
}

.author-archive .box ul li
{
    line-height: 1.5em;
}

.categories
{
    display: block;
    padding-bottom: 4px;
    color: #666666;
    text-transform: uppercase;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

.categories a
{
    color: #666666;
}

.img-float-right
{
    float: right;
    margin-left: 6px;
}

.img-float-left
{
    float: left;
    margin-right: 6px;
}

.hide-overflow
{
    overflow: hidden;
}

.date
{
    color: #666666;
    text-transform: uppercase;
    display: block;
    padding-bottom: 4px;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

#news-list p
{
    margin-bottom: 0;
}

.paging
{
    text-align: right;
    margin: 9px 0;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    font-size: 110%;
}

.paging a
{
    border: solid 1px #595959;
    margin-left: 6px;
    text-align: center;
    padding: 4px 8px;
    color: #000;
}

.paging a.current
{
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.category-list
{
    margin: 9px 0;
    font-family: Arial, Tahoma, Sans-Serif;
    /*text-align: right;*/
}

#sort-by
{
    text-align: right;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    margin: 9px 0;
}

#sort-by a
{
    text-decoration: none;
}

#top-content
{
    margin-bottom: 20px;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

#top-content .info-heading
{
    padding: 2px 9px 0 9px;
}

#top-content .info-heading h1.content-header
{
    color: #fff;
    border: none;
}

#top-content h2
{
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: small;
    line-height: normal;
}

#top-content h2 a
{
    color: #333;
}

#top-content p
{
    color: #666666;
    margin: 0;
    margin-bottom: 9px;
    padding: 0;
    font-size: 85%;
    line-height: normal;
}

#classified-list
{
    margin: 10px 0;
    border: solid 1px #e1e1e1;
    border-top: none;
    border-bottom: none;
}

#classified-list .collapse-panel-header h3
{
    background: #fff url('/Images/expand-header-bg.gif') repeat-x left bottom;
    padding: 6px 10px;
    text-transform: uppercase;
    font-family: Arial, Sans-Serif;
    font-size: 90%;
    border: solid 1px #e1e1e1;
    border-left: none;
    border-right: none;
    margin: 0;
    margin-top: -1px;
}

#classified-list .collapse-panel-header h3 img
{
    float: right;
    position: relative;
    top: 4px;
}

#classified-list .collapse-panel hr
{
    border-top: 1px dotted #e1e1e1; 
}

#copesan 
{
    font-size: 85%;
    padding-bottom: 18px;
}

#article, #product, #videos, #magazine, #newsletters, #blogs, #virtual-page, #blog, #classified, #association, #client, #store-product, #member, #copesan
{
    margin-bottom: 9px;
}

#article h2, #product h2, #videos h2, #magazine h2, #newsletters h2, #blogs h2, #blog h2, #polls h2, #classified h2, #association h2, #client h2, #store-product h2, #member h2, #copesan h2
{
    margin-top: 6px;
    font-size: 150%;
    line-height: 22px;
}

#article p, #product p, #videos p, #magazine p, #newsletters p, #blogs p, #blog p, #classified p, #association p, #client p, #store-product p, #member p, #copesan p
{
    margin-bottom: 9px;
    line-height: 18px;
}

#article .author, #product .mfr, #videos .author, #blogs .author, #blog .author, #store-product .pricing
{
    text-transform: uppercase;
    margin-bottom: 0;
}

#article .author, #article .date, #product .mfr, #product .date, #videos .author, #videos .date, #blogs .author, #blogs .date, #blog .author, 
#blog .date, #polls .date, #classifieds .date, #classified .date, #store-product .pricing, #member .date
{
    font-size: x-small;
    font-weight: normal;
}

#article .date, #product .date, #videos .date, #blogs .date, #blog .date, #polls .date, #classified .date, #store-product .pricing, #member .date
{
    text-transform: none;
    margin-bottom: 9px;
}

#font-adjuster, .share
{
    float: right;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

#font-adjuster
{
    font-size: x-small;
    margin-right: 9px;
}

#font-adjuster img
{
    cursor: pointer;
}

#article-body, #product-body, #blog-body, #classified-body, #association-body, #client-body, #store-product-body, #member-body
{
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    font-size: small;
    margin-top: 9px;
}  

#article-body p, #product-body p, #blog-body p, #classified-body p, #association-body p, #client-body p, #store-product-body p, #member-body p
{
    line-height: 1.3em;
} 

/* Forms */
.txt, .ddl, .submit-btn, .rbl, .cbl, .cbx, .cb, .lbl
{
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

.rbl input
{
    margin: 0 2px;
}

.rbl label
{
    margin-right: 2px;
}

.submit-btn
{
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    border: solid 1px #595959;
    padding: 3px 10px;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
    font-weight: bold;
    font-size: 85%;
    margin-bottom: 6px;
}

.submit-btn:hover
{
    color: #fff;
    text-decoration: none;
}

#filter h3
{
    font-size: 100%;
    margin-top: 9px;
}

#filter .txt, #filter .ddl
{
    display: block;
    margin-bottom: 6px;
}

#filter .submit-btn
{
    float: left;
    margin-left: 4px;
}

#filter .lbl
{
    font-size: 85%;
}

#featured p
{
    margin-top: 4px;
    line-height: 1.3em;
}

.message
{
    color: #DD1F27;
}

a.message
{
    color: #DD1F27;
}

.message div
{
    color: #010101;
}

.sponsored
{
    font-size: 85%;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

.mfr, a.mfr
{
    color: #666666;
    text-transform: uppercase;
    font-size: x-small;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

a.no-underline
{
    text-decoration: none;
}

/* Panel Styles */
.collapse-panel
{
    height: 0;
    overflow: hidden;
}

.collapse-panel-header
{
    cursor: pointer;
}

/* Products */
#product .left, #store-product .left
{
    float: left; 
    margin-right: 9px;
    width: 192px;
    margin-top: 9px;
}

#product .left img, #store-product .left img
{
    margin-bottom: 9px;
}

#product .right, #store-product .right
{
    float: right;
    width: 280px;
    margin-left: 0;
}

/* Videos */
#videos
{
    font-size: 85%;
}

#videos h2
{
    font-size: 170%;
    margin-bottom: 4px;
    line-height: 24px;
}

#videos h3
{
    font-size: 140%;
    margin-bottom: 9px;
}

#content-search
{
    float: right;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

#content-search .txt
{
    width: 125px;
}

ul.category-menu
{
    margin: 0;
    padding: 0;
    list-style: none;
    border: solid 1px #ccc;
    border-bottom: none;
}

ul.category-menu li
{
    border-bottom: solid 1px #ccc;
    padding: 4px;
    background-color: #f7f7f7;
    text-transform: uppercase;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

ul.category-menu li a
{
    text-decoration: none;
}

ul.category-sub-menu
{
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
}

ul.category-sub-menu li
{
    border: none;
    padding: 4px;
    margin-left: 8px;
    background-color: #f7f7f7;
    text-transform: none;
}

#category-results a
{
    text-decoration: none;
}

a.disabled 
{
    color: #a5a2a5;
}

.img-overlay
{
    position: absolute;left: 0; top: 0;
}

.img-overlay:hover
{
    background: url('/Images/img-outline.gif');
}

.img-selected
{
    background: url('/Images/now-playing.gif');
}

.img-selected:hover
{
    background: url('/Images/now-playing.gif');
}

.fineprint, a.fineprint
{
    font-size: x-small;
    color: #999;
}

#byline .author, #byline .date
{
    display: inline;
}

.indent {
    padding-left: 9px;
}

.indentdouble {
    padding-left: 18px;
}

/* Search */
#search-results .inline-list, #shopping-cart .inline-list
{
    font-size: 85%;
}

#search-results h2
{
    text-transform: uppercase;
    font-size: 100%;
}

#search-results h3
{
    font-size: 85%;
}

/* Magazine */
#magazine h2
{
    margin-bottom: 9px;
}

#magazine .current-issue
{
    float: left;
    text-align: center;
    margin-right: 6px;
}

#magazine h3
{
    font-size: 100%;
    border-bottom: 1px dotted #d3d3d3;
    text-transform: uppercase;
    margin-bottom: 4px;
}

#magazine h4
{
    margin-bottom: 0;
    margin-top: 0;
    font-size: 95%;
}

#magazine ul
{
    margin-top: 0;
    margin-bottom: 9px;
}

#magazine ul li
{
    line-height: 1.3em;
}

#magazine ul li a
{
    color: #000;
    font-size: 85%;
}

#magazine .issue-contents
{
     float: left;
     width: 375px;
}

.alternate {
    background-color: #f7f7f7; /* Off White */
}

#reader-service-list
{
    font-size: 85%;
}

.years
{
    width: 61px; 
    margin: 0 9px; 
    float: left;
}

.years h3
{
    border-bottom: 1px dotted #d3d3d3;
    text-align:center;
}

.years div.selected a
{
    color: #d73328;
}

.years div a
{
    cursor: pointer;
	cursor: hand;
	font-weight: normal;
}

.creativeissues
{
    width: 184px;
    margin: 0 9px; 
    float: left;
}

.creativeissues h3
{
    border-bottom: 1px dotted #d3d3d3;
}

.creativeissues div
{
    display: none;
}

.creativeissues div.selected
{
    display: block;
}

#polls
{
    
}

#polls ul li 
{
    padding: 2px 0;
}

.bulletless
{
    list-style-type: none;
    margin: 1em 0;
}

.bulletless li
{
    padding: .3em 0;
}
    
#msds h3
{
    font-size: 120%;
}

#msds table td table td
{
    font-size: x-small;
    padding: 2px;
}

a.cart
{
    margin-top: 4px;
    float: right;
    background: url('/Images/cart.gif') no-repeat;
    padding-left: 28px;
    text-transform: uppercase;
    line-height: 24px;
    font-size: 85%;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

.cart-tbl
{
    font-size: x-small;
    margin-top: 9px;
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

.cart-tbl td
{
    padding: 2px;
}

/* Comment Box */
.comment-header {
    background: url('/images/Arrow.gif') 20px 0 no-repeat;
    padding-left: 58px;
}
    
.comment-box {
    background-color: #ececec; /* Gray */
    padding: 8px;
    margin-bottom: 25px;
}

.comment-header, .comment-box
{
    /* Antenna */
    font-family: Arial, Tahoma, Sans-Serif;
}

.more-news
{
    text-align: right; 
    margin-bottom: 1em; 
    display: block;
}

.block
{
    display: block;
    margin: 2px 0;
}

.bold
{
    font-weight: bold;
}

.inner
{
    padding: 9px;
}

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  /*a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }*/
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #9e9e9e; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


