@charset "utf-8";
/* 
  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;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

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; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
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 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* 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; }

/* 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: #607890; }
a:hover { color: #036; }


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; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* 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:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }


 /* Primary Styles
    Author: 
 */


/* CSS Document */
/*
# ----------------------------------------------------------
#  Date Created: January 07, 2009 3:40PM
#  Created by: Jess Castro
#  Date modified: February 15, 2009 
#  Modified by: - Jess
#  Date modified : june 22 2011
#  Modified by : Paul Mangaser
# ----------------------------------------------------------- 
*/

/* --- GLOBAL STYLES --- */
* { margin: 0; padding: 0; }
body { font: normal 12px Verdana; text-align: center; padding-top: 20px; }/*must be placed when #wrapper has a border  background-color: #CCCCCC;*/
body #parent{ margin-right: auto; margin-left: auto; text-align: left;}

	/*sponsored class*/
	#wrapper{ /*padding-top: 20px;*/ } /*for back color and border  width: 1000px; margin: 0 auto; padding: 8px; background-color: #FFFFFF;*/
	#wrapper-sponsor{ background:#5ca9dd url(../images/jjSkin.jpg) no-repeat fixed center top; padding-top: 20px; }
	#container { /*background-color:#fff; width: 1010px; margin: 0 auto;*/ }
	#container-sponsor{ background-color:#fff; width: 1010px; margin: 0 auto; }
	#SkinRight {right:0; z-index:0; }
	#SkinLeft {left:0; z-index:0; }
	#SkinLeft, #SkinRight { height:800px; position:fixed; text-indent:-99999px; top:0; width:160px; z-index:0;}	
	/*end sponsored class*/
	
.fleft { float: left; }
.fright { float: right; }
.height35 { height: 35px; clear: both; }
.category_link { font-size: 11px; }
.fontGeorgia { font-family: Georgia, "Times New Roman", Times, serif; }
.separatorOrange { border-top: 2px solid #EEAB36; height: 14px; margin-top: 14px; }
.head18Blue { color: #218CAC; font-size: 18px; }
.comment_icon { border: 0; }
.fs_head { overflow: hidden; border-top: 5px solid #fc7700/*#f74b16*/; }
.fs_head .label { float: left; width: 480px; }
.fs_head span { float: right;  }
.fs_head span a { font-size: 12px; text-transform: uppercase; color: #0090D3; font-weight: bold; }

/* side box head */
.fs_head_side { overflow: hidden; border-top: 5px solid #f74b16; }
.fs_head_side .label { float: left; width: 303px; margin-left: 3px; }
.fs_head_side .label a { font-size: 22px; }

a img { border: none; }
a { text-decoration: none; }
a:hover { color: #008FD4; }

/* BUTTON */
.button, a.button { color: #ffffff; font-size: 12px; text-align: center;  }
.button, a.button { background-color: #f74b16; cursor: pointer; padding: 3px;  }

#home_columnRight .ads { width: 300px; height: 250px; margin-bottom: 10px; border: 1px solid #d5d6d6; position: relative; }
#leaderboard_holder { float: left; margin-bottom: 10px; width: 728px; }
#leaderboard_holder .ads { width: 728px; height: 90px; }
#leaderboard_top { width: 300px; height: 250px; margin-bottom: 10px; border: 1px solid #000000; position: relative; }

/* LOGO */
#logo_holder { width: 728px; }
#logo_holder .logo { float: left; text-align: left; width:467px; }
#logo_holder .emag { float: right; }
#linkBTS a { color: #5ec3dd; }

/* TOP LINKS */
#top_link { float: right; font-size: 11px; text-align: right; }
#top_link .aclink a { color: #f74b16; }

#top_link .date_now { font-weight: bold; font-size: 11px; margin-top: 8px; margin-bottom: 17px; }

input.button-submit { background-color: #5cc4c3/*f74b16*/; color: #fff; font-size: 11px; width: 78px; height: 22px; font-weight: bold; }

#login { text-align: right; min-height: 60px; }
#login .login-input { width:118px; height: 22px; border:1px solid #545454; }
#login { font-weight: bold; font-size: 10px; color: #565656; margin-top: 5px; }
#login .forgot { margin-bottom: 2px; }

#subscribebox { font-weight: bold; font-size: 10px; color: #565656; }
#subscribebox .news { margin-bottom: 4px; }
#subscribebox .news-input { width:/*122*/160px; height: 22px; border:1px solid #545454; }

#google-search { text-align: right; }
#google-search .google-input { width:154px; height: 18px; border:1px solid #545454; border-color: #545454; }

#top_Connect { float: right; height: 32px; margin-top: 10px; }
#top_Connect a { background: url(../images/sprite-connect-icons.gif) no-repeat;  padding: 0 0 16px 25px; margin-left: 5px; }
#top_Connect .leftSide { float: left; margin-right: 10px; }
#top_Connect .rightSide { float: right; margin-top: 2px; }
#top_Connect a#connect_mail { background-position: 0 0; }
#top_Connect a#connect_facebook { background-position: 0 -30px; }
#top_Connect a#connect_twitter { background-position: 0 -60px; }
#top_Connect a#connect_rss { background-position: 0 -93px; }
#top_Connect a#connect_multiply { background-position: 0 -121px; }
#top_Connect a#connect_google { background-position: 0 -150px; }
#top_Connect .connect_via img{ float: left; margin-right: 5px; margin-top: 5px; }

#sneak_peek { width: /*229*/250px; height:131px; overflow:hidden; }
#sneak_peek .sneak_text { float: left; font-size: 10px; margin-top: 15px; text-align: right; }
#sneak_peek .sneak_text p { font-weight: bold; }
#sneak_peek .sneak_text p.issue { position: absolute; width: 130px /*112*/; margin-top: -15px; }
#sneak_peek .sneak_text p.subs { position: absolute;  width: 130px; /*112*/ margin-top: 69px; }
#sneak_peek .sneak_text p a { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; color: #f74b16; font-weight: normal; text-transform: uppercase; }

#leaderboard_bottom { margin: 0 auto; background-color: #fff; }

/* BODY */
#parent , #white_head{ width: 1000px; margin: 0 auto; }
#content { /*width: 680px;*/ float: left; z-index:50; }

/* IMAGE SPRITES  */
#menus li a { background: url(../images/nav-sprite.gif) no-repeat; } /*background: url(../images/nav-sprite.png) no-repeat;*/
#header_login a, #sneak_peek div p a { /*background: url(../images/sprite_top.png) no-repeat;*/ }
#quicklinks li a,#label_newsletter { background: url(../images/sprite_quicklinks.png) no-repeat; }
#quicklinks, .footer_label { background: url(../images/sprite_bg-footer.png) no-repeat; }
#aboutcontact { margin-top: 5px; color: #999; }
#aboutcontact a { background: none; margin: 0 5px; color: #fff; }

#siteheader { height: 130px; margin-bottom: 10px; }

#logo { text-align: left; width:257px; }
#header_login { width: 728px; }
#siteheader ul { float: right; height: 27px; background-color: #008fd4; list-style-type: none; padding: 0 14px; margin-top: -6px; position:relative; }
#siteheader ul li { padding: 0 12px; float: left; height: 13px; margin-top: 8px; border-right: 1px solid #99ccff; border-left: 1px solid #47abe8; }
#siteheader ul li.leftborder0 { border-left: 0; }
#siteheader ul li.rightborder0 { border-right: 0; }
#siteheader ul li a { float: left; height: 13px; }
#siteheader #signin a { background-position: 0 0; width: 62px; }
#siteheader #register a { background-position: 0 -36px; width: 80px; }
#siteheader #subscribe a { background-position: 0 -72px; width: 117px; }
#siteheader #welcome { color: #000; /*margin-top:20px;*/ border-right: 0; list-style: none; font-family: Verdana, Arial, Helvetica, sans-serif; }
#siteheader #welcome a { background: none; float: none; width: auto; color: #000000; margin: 0 5px; }


#mainmenu { width: 1000px; margin-bottom: 10px; }
#menus { list-style-type: none; width: 1000px; overflow: hidden; }
#menus .clear { display: none; }
#menus li { float: left; }
#menus li a { height: 45px; float:left; }

#menus #home a { background-position: 0 0; width: 74px; }
#menus #home a:hover { background-position: 0 -45px; width: 74px; }
#menus #home a.selected { background-position: 0 -90px; width: 74px; }

#menus #getting_pregnant a { background-position: -74px 0; width: 155px; }
#menus #getting_pregnant a:hover { background-position: -74px -45px; width: 155px; }
#menus #getting_pregnant a.selected { background-position: -74px -90px; width: 155px; }

#menus #pregnancy a { background-position: -229px 0; width: 111px; }
#menus #pregnancy a:hover { background-position: -229px -45px; width: 111px; }
#menus #pregnancy a.selected { background-position: -229px -90px; width: 111px; }

#menus #kids a { background-position: -340px 0; width: 70px; }
#menus #kids a:hover { background-position: -340px -45px; width: 70px; }
#menus #kids a.selected { background-position: -340px -90px; width: 70px; }

#menus #parenting a { background-position: -410px 0; width: 106px; }
#menus #parenting a:hover { background-position: -410px -45px; width: 106px; }
#menus #parenting a.selected { background-position: -410px -90px; width: 106px; }

#menus #moms_dads a { background-position: -516px 0; width: 155px; }
#menus #moms_dads a:hover { background-position: -516px -45px; width: 155px; }
#menus #moms_dads a.selected { background-position: -516px -90px; width: 155px; }

#menus #home_living a { background-position: -672px 0; width: 132px; }
#menus #home_living a:hover { background-position: -672px -45px; width: 132px; }
#menus #home_living a.selected { background-position: -672px -90px; width: 132px; }

#menus #main-community a { background-position: -804px 0;  width: 117px; }
#menus #main-community a:hover { background-position: -804px -45px;  width: 117px; }
#menus #main-community a.selected { background-position: -804px -90px;  width: 117px; }

#menus #forums a { background-position: -921px 0;  width: 80px; }
#menus #forums a:hover { background-position: -921px -45px;  width: 80px; }
#menus #forums a.selected { background-position: -921px -90px;  width: 80px; }

#menus #forums { border-right:0; }

/*#menus #home a { background-position: 0 0; width: 111px; }
#menus #getting_pregnant a { background-position: -111px 0; width: 109px; }
#menus #pregnancy a { background-position: -218px 0; width: 111px; }
#menus #kids a { background-position: -330px 0; width: 111px; }
#menus #parenting a { background-position: -443px 0; width: 111px; }
#menus #moms_dads a { background-position: -555px 0; width: 111px; }
#menus #home_living a { background-position: -665px 0; width: 112px; }
#menus #main-community a { background-position: -777px 0;  width: 112px; }
#menus #forums a { background-position: -889px 0;  width: 112px; }
#menus #forums { border-right:0; }*/

/* hover */
/*#menus #home a:hover { background-position: 0 bottom; width: 63px; }
#menus #getting_pregnant a:hover { background-position: -66px bottom; width: 84px; }
#menus #pregnancy a:hover { background-position: -151px bottom;  width: 84px; }
#menus #kids a:hover { background-position: -236px bottom; width: 84px; }
#menus #parenting a:hover { background-position: -321px bottom; width: 84px; }
#menus #moms_dads a:hover { background-position: -406px bottom; width: 84px; }
#menus #home_living a:hover { background-position: -491px bottom; width: 84px;}
#menus #main-community a:hover { background-position: -576px bottom;  width: 84px;}
#menus #forums a:hover { background-position: -664px bottom;  width: 63px; }*/

#quick_links { height: 27px; overflow: hidden; width: 1000px; font-size: 13px; background-color: #ececec; }
#quick_links ul .ql_label { background-image: url(../images/quick-links.jpg); width: 107px; height: 27px;  }
#quick_links a { color: #000; }
#quick_links a:hover { color: #ff7701; }
#quick_links a.selected { color: #ff7701; }
#quick_links ul { list-style: none; overflow: hidden; height: 22px; width: 1000px; }
#quick_links ul li { float: left; margin-right: 27px; line-height: 27px; }

#home_columnLeft { width: 176px; margin-right: 20px; } /*width: 220px;*/
#home_columnCenter {  width: 480px; z-index:50; } /* width: 440px;*/
#home_columnCenter_wide { width: 678px; z-index:50; }
#home_columnRight { width: 300px; float: right; }

/*#subscribe_box { border-top: 1px solid #999; border-bottom: 1px solid #999; padding: 10px; margin-bottom: 20px; }
#subscribe_box form { margin: 10px 0; overflow: hidden }
#subscribe_box p { margin: 5px 0; }
#label_newsletter { width: 280px; height: 14px; background-position: 0 bottom; margin-bottom: 8px; }
#subscribe_box input, #subscribe_box form div { border: 1px solid #999; }
#subscribe_box input { width: 179px; padding:3px 3px 4px; }
#subscribe_box form div { border-left: none; }
#subscribe_box form div button { padding: 0 10px 1px; background-color: #999; color: #fff; border: 1px solid #fff; font-family: "Trebuchet MS",Arial; }
#subscribebox { border: 0; }*/

#newsletter_text h2 { color: #ff7701; font-size: 16px; text-align: center; }
#subscribe_box { text-align: center; margin: 0 auto; }
#subscribe_box input { height: 15px; }
#subscribe_box .subscribe-button { margin-top: 8px; }

#yummy a, #cosmo a, #femalenetwork a, #stylebible a,#hot_Topics ul li { background: url(../images/sprite_partnerSites.png) no-repeat; }
#funcovers .header span , #box_Forums #gotoforum { background: url(../images/extra_sprite.png) no-repeat; }
.side_box .box_label,#sitemap_header_label { background: url(../images/sprite_sideBox.png) no-repeat; }
/*#box_Connect a { background: url(../images/sprite_icons.png) no-repeat; }*/
#date_today p, #date_today p span { background: url(../images/sprite_date.png) no-repeat; }
#box_Connect a { background: url(../images/sprite-connect-icons.png) no-repeat; }

/*
* SIDEBOXES STARTS
*
*/

/* SIDEBOX TOP */
.sidebox-top { background: url(../images/sidebar-top.png) no-repeat; height: 24px; }
.sidebox-right-top { background: url(../images/sidebar-right-top.png) no-repeat; height: 24px; width: 305px;}
.side-box { border-left: 1px solid #d5d6d6; border-right: 1px solid #d5d6d6; border-bottom: 1px solid #d5d6d6; margin-bottom: 20px; }
.sidebox-right-top-connect {  background: url(../images/connect.jpg) no-repeat; height: 29px; }

/* SIDE BOXES */
.sidebox-title{ /*font-family: 'spDreams_bold'; color: #f74b16; font-size: 24px; width: 174px; text-align: center; margin-bottom: 10px;*/ background: url(../images/sprite-sidebox-small.png) no-repeat; margin-bottom: 10px; /*added for small heading*/ margin-left: 5px; /*added for small heading*/ }
/*.ie6 .sidebox-title, .ie7 .sidebox-title, .ie8 .sidebox-title {font-family: spDreamsIE_bold; }*/

/*.sidebox-title-sub { color: #7a7a7a; font-size: 14px; width: 174px; text-align: center; margin-bottom: 10px; } */
.sidebox-title-sub	{ background: url(../images/sprite-sidebox-sub.png) no-repeat; }
.label-sub { color: #707070; font-size: 14px; margin-bottom: 10px; } 

/* BOX CALENDAR */
#box_calendar .sidebox-title { background-position: 0 0; height: 20px/*23px*/; }
#box_calendar .sidebox-title-sub { background-position: 0 0px; height: 34px; }
#calendar-list { text-align: center; font-size: 11px; font-family: Arial, Helvetica, sans-serif; }
#calendar-list .content-holder { padding: 5px 5px; }
#calendar-list .next { color: #f74b16; }
#calendar-list .date { font-weight: bold; }
.calendarNav { margin-top: 20px; }
.activeToday a { background-color: #999999; padding: 2px; }
a.activeDay { color: #ff0000; font-weight: bold; /*text-decoration: underline*/; }
.calendarNav { text-align: center; width: 174px;  margin-bottom: 10px; overflow: hidden; }
.calendarNav .monthyear { font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 14px; }
.calendarNav .pageNext { margin-left: 20px; font-family: Arial, Helvetica, sans-serif; font-size: 11px; cursor: pointer; }
.calendarNav .pagePrev { margin-right: 20px; font-family: Arial, Helvetica, sans-serif; font-size: 11px;  cursor: pointer; }
.calendarHead { background-color: #666666; text-align: center; }
.calHead { text-align: center; font-weight: bold; color: #ffffff; font-size: 11px; height: 20px; padding-top: 2px; background-color: #666666; }
.emptyBefore, .emptyAfter { }
.calendarDays { text-align: center; height: 20px; font-size: 11px; cursor: pointer; padding-top: 2px; }

/* BOX BIRTHDAY */
#box_birthday .sidebox-title { background-position: 0 -23px; height: 20px/*23px*/; }
#box_birthday { font-family: Verdana, Arial, Helvetica, sans-serif; }
#box_birthday ul { list-style-type: none; margin-bottom: 16px;  }
#box_birthday ul li img { border: 1px solid #d5d6d6; }
#box_birthday .bday { font-size: 12px; color: #333;}
#box_birthday .child { display: none; }
#box_birthday .child_Active { display: block; }
#box_birthday .childname { cursor: pointer; margin: 4px 4px; text-align: center; }
#box_birthday .selected { font-weight: bold; }
#box_birthday .activeSlide { font-weight: bold; }
#box_birthday p { margin: 2px 0; }
/*#box_birthday .sidex_box_footer { margin-top: 20px; margin-bottom: 8px; text-align: center; font-size: 11px; }*/

#box_birthday .other { text-align: center;}
#box_birthday .other p { font-size: 12px; font-weight: bold; color: #F74B16; }
#box_birthday .other ul { list-style: none; margin-top: 8px; }
#box_birthday .other ul li { padding: 4px 3px; font-size: 11px; }
#box_birthday .other ul li span { font-weight: bold;  }

/* BOX SP-PICKS */
#box_spPicks .sidebox-title { background-position: 0 -88px /*94*/; height: 25px; }
#box_spPicks .sidebox-title-sub { background-position: 0 -56px; height: 17px; }
#box_spPicks .spPicks-list { margin-top: 20px; margin-bottom: 20px; }
#box_spPicks .spPicks-list a { font-weight: bold; color: #666666; font-size: 12px; }
#box_spPicks .view_archive { text-align: center; margin-bottom: 8px; }
#box_spPicks .view_archive a { color: #666666; font-size: 12px; }
#box_spPicks .img-holder {  margin-left: 14px; width: 145px;  border: 1px solid #ccc; text-align: center; }
#box_spPicks .img-holder img { padding-top: 2px; }
#box_spPicks p { font-family: Verdana, Arial, Helvetica, sans-serif; text-align: center; }
#box_spPicks p a { font-size: 10px; color: #7a7a7a;  }
#box_spPicks .pick { display: none; }
#box_spPicks .pick_Active { display: block; }

/* BOX PROMOS */
#box_Promos .box_label { background-position: -201px 0; }
#box_Promos h3 { display: inline; }
#box_Promos ul { list-style-type: none; }
#box_Promos ul li { margin-bottom: 15px; }
#box_Promos ul li img { display: block; margin-bottom: 15px; border: 1px solid #ccc; }

/* BOX DIRECTORIES */
#box_directories { font-family: Arial; }
#box_directories .sidebox-title { background-position: 0 -46px; height: 20px/*23px*/; }
#box_directories .sidebox-title-sub { background-position: 0 -35px; height: 17px; }
#box_directories { font-family: Verdana, Arial, Helvetica, sans-serif; }
#box_directories p { color: #7a7a7a; font-size: 11px; margin-bottom: 4px; padding-top: 2px; }
#box_directories .directory-list { margin: 10px 5px; }
#box_directories .directory-list a { font-weight: bold; color: #666666; font-size: 11px;  }
#box_directories .view_archive { text-align: center; margin-bottom: 8px; }
#box_directories .view_archive a { color: #666666; font-size: 12px; }
#box_directories .dir-list-holder { min-height: 30px; }
#box_directories .dir-list-holder img { float: left; margin-right: 4px; }
/* BOX POLL */
#box_Poll { font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #666666; }
#box_Poll .sidebox-title { background-position: 0 -69px; height: 20px/*23px*/; }
#box_Poll .poll-list { padding: 10px 7px; }
#box_Poll #poll_choices { margin-top: 10px; }
#box_Poll strong { color: #666;  }
#box_Poll #vote { cursor: pointer; }
#box_Poll ul { list-style-type: none; /*margin: 10px 7px;*/ }
#box_Poll ul li { margin-bottom: 10px; }
#box_Poll ul li input { margin: 2px 8px 0 0; }
#box_Poll ul li label { width: 119px; }
#box_Poll ul li .poll_bar { border: 1px solid #5cc6bc; width: 160px; float: left; margin-top: 3px; font-weight: normal; }
#box_Poll ul li .poll_bar div { background-color: #5cc6bc; text-align: center; }



/* STRAIGHT FROM THE WEB */
#box_FromTheWeb .box_label { background-position: 0 -30px; }
#box_FromTheWeb ul { list-style-type: none; margin-bottom: 10px; }
#box_FromTheWeb ul li { margin-bottom: 15px; }
#box_FromTheWeb ul li h3 a { color: #666; font-size: 14px; }

/* BOX PLAN A PARTY */
#box_planaparty { margin-bottom: 20px; }
#box_planaparty ul { list-style-type: none; margin-bottom: 10px; }
#box_planaparty ul li { float: left; overflow: hidden; width: 120px; margin: 0 auto; }
#box_planaparty ul .planning { width: 97px; margin-left: 12px; }
#box_planaparty ul .venue { width: 112px; margin-left: 4px; }
#box_planaparty ul .cakes-menu { width: 87px; margin-left: 16px; }
#box_planaparty ul .invitation { width: 107px; margin-left: 6px; }
#box_planaparty p { color: #666666; font-size: 12px; font-weight: bold; text-align: center; }


/* BOX MARKETPLACE */
#box_spmarketplace ul { list-style-type: none; margin-bottom: 10px; }
#box_spmarketplace ul li { float: left; overflow: hidden; text-align: center; margin: 8px; }
#box_spmarketplace ul li .product_holder { border: 1px solid #cccccc; width: 100px; height: 100px; }
#box_spmarketplace p { color: #666666; font-size: 11px; font-weight: bold; width: 100px; margin-top: 8px; }

#box_SPmarketplace-search .sidebox-title { background-position: 0 -177px; height: 51px; }

#box_SPmarketplace-popular .sidebox-title { background-position: 0 -226px; height: 53px; }
#box_SPmarketplace-popular .popular-holder { margin: 30px 10px 20px 10px; list-style: none; font-family: Arial, Helvetica, sans-serif; }
#box_SPmarketplace-popular .popular-list { margin-bottom: 20px; }
#box_SPmarketplace-popular .popular-title a { font-size: 12px; font-weight: bold; color: #666666; }
#box_SPmarketplace-popular .popular-member { font-size: 12px; font-weight: normal; color: #666666; }
#box_SPmarketplace-popular .popular-member a { font-size: 12px; font-weight: normal; color: #f74b16; }

#box_spMarketplaceWelcome .content { text-align: left; margin-left: 15px; }

/* 
* BOX TOOLS 
*
* 
*/

.tool-input { border: 1px solid #d7d8d8; color: #333; }

/* CALCULATOR */
#box_Calculator .sidebox-title { background-position: 0 -140px; height: 40px /*50px*/; }
#box_Calculator .sidebox-title-sub { background-position: 0 -74px; height: 40px }
#box_Calculator strong { color: #666; }
#box_Calculator ul { list-style-type: none; margin: 10px 0; }
#box_Calculator ul li { margin-bottom: 10px; }
#box_Calculator ul li input { margin: 2px 8px 0 0; }
#box_Calculator ul li label { width: 119px; }

/* BABY NAMES */
#box_Babynames .sidebox-title {  }
#box_Babynames strong { color: #666; }
#box_Babynames ul { list-style-type: none; margin: 10px 0; }
#box_Babynames ul li { margin-bottom: 10px; }
#box_Babynames ul li input { margin: 2px 8px 0 0; }
#box_Babynames ul li label { width: 119px; }
#box_Babynames .view_archive { text-align: center; margin-bottom: 8px; }
#box_Babynames .view_archive a { color: #666666; font-size: 12px; }

/* BOX PARENT RATED */
#box_Parent-rated .box_label { background-position: 0 -90px; }
#box_Parent-rated strong { color: #666; }
#box_Parent-rated ul { list-style-type: none; margin: 5px 0; }
#box_Parent-rated ul li { margin-bottom: 10px; }
#box_Parent-rated ul li input { margin: 2px 8px 0 0; }
#box_Parent-rated ul li label { width: 119px; }

/* BOX FOOD TALK */
#box_Food-talk .box_label { background-position: -200px -90px; }
#box_Food-talk strong { color: #666; }
#box_Food-talk ul { list-style-type: none; margin: 10px 0; }
#box_Food-talk ul li { margin-bottom: 10px; }
#box_Food-talk ul li input { margin: 2px 8px 0 0; }
#box_Food-talk ul li label { width: 119px; }

/* BOX FORUMS */
#box_Forums { padding: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 12px;  color: #666666; }
#box_Forums .sidebox-title { background-position: 0 -114px; height: 20px/*23px*/; margin-left: 55px; }
#box_Forums #gotoforum { width: 143px; height: 15px; float: right;  }
#box_Forums .box_label { background-position: -170px -30px; }
#box_Forums ul { list-style: none; }
#box_Forums ul li { margin-bottom: 20px; }
#box_Forums ul li a.subject_title { color: #666666;  font-weight: bold; }
#box_Forums ul li .postReply { margin-top: 5px; }
#box_Forums ul li .postReply a { color: #666666; font-weight: normal; }

/* BOX SPONSORS */
#box_Sponsors { background: none; }
#box_Sponsors .box_label { background-position: -382px -30px; }
#box_Sponsors ul { list-style-type: none; }
#box_Sponsors ul li { margin: 16px 0; color: #333; }
#box_Sponsors ul li a { color: #666; font-weight: bold; display: block; font-size: 14px; }
#box_Sponsors ul li p { float: right; width: 186px; }

/* BOX CONNECT */
#box_Connect { height: 38px; padding-top: 9px; }
#box_Connect a {  padding: 0 0 15px 30px; margin-left: 30px; }
#box_Connect a#connect_mail { background-position: 0 0; }
#box_Connect a#connect_facebook { background-position: 0 -30px; }
#box_Connect a#connect_twitter { background-position: 0 -62px; }
#box_Connect a#connect_rss { background-position: 0 -93px; }

.side-box-footer { margin-bottom: 8px; text-align: center; }
.side-box-footer a { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #f74b16; text-transform:uppercase; }

/* BOX TOOLS PROFILE */
#box_todo {  }
#box_todo ul { list-style: none; padding-left: 5px; margin-bottom: 20px; }
#box_todo ul li { margin: 5px 5px; }

/* BOX WORDS background: url(../images/words.jpg) no-repeat; width: 305px; height: 69px; position: relative;*/
#box_word { border: 1px solid #ccc; background-color: #e9feff; overflow: hidden;  }
#box_word .word-text { position: relative; margin-top: 7px; margin-left: 30px; margin-bottom: 7px; font-size: 11px; font-style: italic; z-index: 2; }
#box_word .head-text {  font-weight: bold;  }
#box_word .content-text	{ width: 260px; text-align: left; }
#box_word .words-top { background: url(../images/words-top-left.png) no-repeat; width: 51px; height: 54px; position: absolute; margin-top: -12px; margin-left: -7px; }
#box_word .words-bottom { background: url(../images/words-bottom-right.png) no-repeat; width: 53px; height: 50px; position: absolute; margin-top: -46px; margin-left: 254px; z-index: 0;}

/*
* end side boxes
*
*/

/* 
*
* FEATURES, MOST VIEWED, HOT TOPICS  ETC...
*
*/

/* feat and mostviewed tabs */


/* ARTICLE LISTS */
.article_List { list-style-type: none; padding-top: 11px; font-family: Arial, Helvetica, sans-serif; }
.article_List .article_image { margin-right: 20px; margin-left: 6px; border: 1px solid #cecece; }
.article_List .list_Content { width: 360px; margin-top: 3px;  }
.article_List .list_Content .article-title { margin-bottom: 10px; }
.article_List .list_Content .article-title a { color: #666; font-size: 18px; }
.article_List .list_Content .article-channel a { color: #f74b16; }
.article_List .list_Content span { font-size: 12px; color: #666666; font-family: Verdana, Arial, Helvetica, sans-serif; }
.article_List li.articleList { border-bottom: 1px solid #ccc; margin-bottom: 15px; }
.article_List .list_Holder { display: none; }
.article_List .list_Holder_Active { display: block; }

.article_List .list_Content a { color: #660099; clear: both; }
.article_List .list_Content a span, #flashbox .flashbox_entry a.flashbox_channel span { float:left; margin-top:2px; padding:5px;background-color: #8a5b9d; margin-right: 9px; }

/*jut for nestle promo*/
.article_List .list_Content2 { width: 519px; }
.article_List .list_Content2 span { color: #999; font-size: 11px; }
.article_List .list_Content2 h3 { margin-bottom: 10px; }
.article_List .list_Content2 h3 a { color: #666; font-size: 16px; }
.article_List .list_Content2 a { color: #660099; clear: both; }

.label, .label a {  margin-top: 5px; font-size: 24px; color: #f74b16; font-weight: bold; text-transform: lowercase; }
.label { margin-bottom: 10px; }

/* featured stories */
/*#featured_Stories .pagination { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; height: 40px; margin-top: 20px; padding-left: 170px; }
#featured_Stories .pagination ul { margin: 12px 15px; }
#featured_Stories .pagination ul li a { padding: 0 5px; border-right: 1px solid #cccccc; }
#featured_Stories .pagination ul li a.last { border: none; }
#featured_Stories .pagination .pagenumbers { clear: both; padding: 2px 9px; }
#featured_Stories .pagination a { font-weight: bold; }
#featured_Stories .pagination a.prevPage { background-position: 1px 15px; }
#featured_Stories .pagination a.nextPage { background-position: -8px 3px; margin-left: 6px; }
#featured_Stories .pagination a.selected { font-weight: bold; color: #f74b16; }
#featured_Stories .pagination a.prevPage, #featured_Stories .pagination a.nextPage { width: 10px; height: 25px; float: left;  }
*/
#featured_Stories .red-tag { margin: 10px 0 15px 17px; }
.small-ads { margin: 0 auto; text-align: center; margin: 10px;  }
.bid-ads {  }

/* featured stories side box */
#featured_side { width: 305px; }
.article_List_side { list-style-type: none; padding-top: 11px; font-family: Arial, Helvetica, sans-serif; }
.article_List_side .article_image { margin-right: 6px; margin-left: 6px; border: 1px solid #cecece; }
.article_List_side .list_Content { width: 205px; margin-top: 3px; }
.article_List_side .list_Content .article-title { margin-bottom: 4px; }
.article_List_side .list_Content .article-title a { color: #666; font-size: 12px; font-weight: bold; }
.article_List_side .list_Content span { font-size: 11px; color: #666666; }
.article_List_side .list_Holder { display: none; }
.article_List_side .list_Holder_Active { display: block; }

#calculator { overflow: hidden; color: #666666; font-size: 12px; font-family: Arial, Helvetica, sans-serif; display: block; margin: 8px; }
#calculator p { margin-bottom: 4px; }
#ddc_1, #ddc_2 { /*width: 50px;*/ padding-bottom: 5px; } 
#calculate { width: 100px; /*margin-left: 30px;*/ }
#results { border: 1px solid #99ccff; padding: 3px; margin-bottom: 10px; }

/* baby names */
#tool_baby_names { }
#tool_baby_names select { border: 1px solid #99ccff; padding: 3px; }
#tool_baby_names p { margin: 2px 0; }
#tool_baby_names .baby_names_inputs, #tool_baby_names .bn_info { padding: 5px 0; width: 100%; overflow: hidden; }
#tool_baby_names .baby_names_inputs p { width: 100%; overflow: hidden; }
#tool_baby_names .baby_names_inputs .bn_labels { width: 50px; float: left; padding-top:5px; width:75px; }
#tool_baby_names #bn_submit { margin-left: 60px; margin-top: 10px; width: 45px; text-align: center; }
#tool_baby_names .baby_names_inputs p select { }
#tool_baby_names ul { margin: 1px auto; }
#tool_baby_names h4 a { color: #008fd4; font-size: 26px; }
#tool_baby_names .bn_info { text-align: center; }

#featured_Stories,#hot_Topics,#most_Viewed { margin-bottom: 35px; }

/* Hot topics */
#hot_Topics .label { width: 105px; background-position: -176px bottom; }
#hot_Topics ul { font-size: 16px; }
#hot_Topics ul li { background-position: -114px 0; padding-left: 20px; margin: 0 6px 8px; }
#hot_Topics ul li.active { margin-bottom: 8px; background-position: -113px -101px; }
#hot_Topics ul li ul { font-size: 14px; list-style-type:disc; margin: 4px 15px; }
#hot_Topics ul li ul li { color: #999; margin: 4px 0; background: none; padding-left: 10px; }
#hot_Topics a { color: #cc66cc; font-weight: bold; }


.archive a, .archive_2 a { background: url(../images/archive.png) no-repeat; width: 105px; padding-right: 100px; padding-bottom: 10px;  }
.archive { float: right; margin-top: -32px; }
.archive_2 { margin-top: 10px; text-align: right; }

.archive_party a { background: url(../images/party_archive.jpg) no-repeat; }
.archive_party a { float: right; width: 169px; height: 27px; }

.archive_market a { background: url(../images/market_archive.jpg) no-repeat; }
.archive_market a { float: right; width: 175px; height: 25px; }

/*.archive { float: right; margin-top: -32px; }
.archive a { color: #ff845e; font-size: 18px; font-weight: bold; }
.archive_2 { margin-top: 10px; text-align: right; }
.archive_2 a { color: #ff845e; font-size: 18px; font-weight: bolder; }*/

/* this font color and selected is just for featured / mostviewed tab */
.label a.tabs  { color: #ff845e; }
.label a.tabs:hover  { font-weight: bolder; color: #f74b16; }
.label a.selected { font-weight: bolder; color: #f74b16; }
.label a {}

#featmost-tabs a { background: url(../images/featMost_button.png) no-repeat; }

#featmost-tabs .fselected { background-position: 0 -31px; height: 33px; padding: 0 205px 0 0; }
#featmost-tabs .fnot_selected { background-position: 0 0; height: 33px; padding: 0 205px 0 0; }
#featmost-tabs #featured:hover { background-position: 0 -31px; height: 33px; padding: 0 205px 0 0; }

#featmost-tabs .mselected { background-position: -212px 0; height: 33px; padding: 0 188px 0 0; }
#featmost-tabs .mnot_selected { background-position: -212px -31px; height: 33px; padding: 0 188px 0 0; }
#featmost-tabs #mostviewed:hover { background-position: -212px 0; height: 33px; padding: 0 188px 0 0; }

#box_Latest .box_label { background-position: -177px -136px }
#box_Latest ul { list-style-type: none; }

#most_read, #missed_read { /*border-top: 1px solid #999; border-bottom: 1px solid #999;/*border: 1px solid #99cdff;*/ padding: 10px; margin-bottom: 20px; }
#most_read ul, #missed_read ul { margin-bottom: 10px; padding-left: 16px;}
#most_read ul li, #missed_read ul li { list-style-type: decimal; color: #333; margin-bottom: 5px; }
#most_read ul li a, #missed_read ul li a { color: #333; }
#most_read p, #missed_read p { margin: 5px 0; }
#most_read .box_label { background-position: -220px -209px; }
#missed_read .box_label { background-position: -17px -247px; width: 230px; }


/*
*
* end features, most viewed, hot topics etc...
*
*
* FOOTER STARTS
*
*/

/* SITEMAP */
#sitemap { margin-top: 17px; width: 1000px; }
.sitemap_title { color: #f74b16; font-size: 29px; margin: 10px; }
.sitemap_border { border-top: 9px solid #f74b16; }

#sitemap { margin-top: 20px; margin-bottom: 20px; text-align: center;  }
#sitemap_content { font-family: Arial, Helvetica, sans-serif; }
#sitemap_content .sitemap-main { padding: 3px; color: #666666; } 
#sitemap_content .sitemap-main a { color: #f74b16; font-size: 11px; font-weight: bold;  } 
#sitemap_content .sitemap-sub { margin-top: 5px; margin-bottom: 20px; color: #999999; }
#sitemap_content .sitemap-sub a { color: #333333; padding: 3px; }
#sitemap_content .sitemap_channel { font-size: 12px; color: #999999; }
#sitemap_content .sitemap_channel a { color: #333333; padding: 3px; }
#sitemap_content .sitemap_channel span { font-weight: bold; font-size: 11px; color: #666666; }
#sitemap_content .sitemap_misc { color: #333333; padding: 3px; margin-top: 10px; }
#sitemap_content .sitemap_misc a { color: #333333; padding: 3px; }

/* FOOTER LEADERBOARD */
#bottom_leadboard { margin: 0 auto; background-color: #ccc; padding-top: 11px; padding-bottom: 11px; text-align: center; margin-bottom: 20px; width: 1000px; }
#bottom_leadboard .ads { margin: 0 auto; text-align: center; width: 728px; }

/* LATEST LINKS */
#latest_sitemap { margin-bottom: 20px; font-family: Arial, Helvetica, sans-serif; font-size: 12px; width: 1000px; }

#othersites_content ul { float: left; width: 23%; list-style-type: square; padding: 0 10px; margin-bottom:20px; }
#yummy, #cosmo, #femalenetwork, #stylebible { list-style-type: none; margin-bottom: 45px; clear: both;  margin-left: 0; }
#othersites_content ul li { color: #008fd4; margin-left: 10px; }
#othersites_content ul li a { color: #333; }
#yummy a, #cosmo a, #femalenetwork a, #stylebible  a { float: left; clear: both; }
#yummy a { background-position: 0 0;  width: 90px; height: 22px; }
#cosmo a { background-position: 0 -22px;  width: 112px; height: 21px; }
#femalenetwork a { background-position: 0 -44px;  width: 90px; height: 35px; }
#stylebible a { background-position: 0 -80px;  width: 35px; height: 32px; }

.border_footerContent { border-top: 1px solid #99cdff; border-bottom: 1px solid #ccc; margin-bottom: 2px; padding: 10px; overflow: hidden }
.footer_label { background-position: 0 bottom; background-repeat: repeat-x; font-family: "trebuchet MS",Arial; text-align: center; color: #666; font-size: 14px; font-weight: bold; letter-spacing: 1px; padding: 3px; }

.border_footerContent p { color: #999; margin-bottom: 20px; text-align: center; color: #999; line-height: 16px; }
.border_footerContent p a { color: #333;  margin: 0 9px; }
.border_footerContent strong { font-size: 11px; color: #333; }

#level1 strong a { color: #008fd4;  margin: 0 14px; font-size: 12px; }
#level1 strong { color: #666; }

#footer { margin-bottom: 53px; color: #666; font-family: Arial, Helvetica, sans-serif; font-size: 12px; width: 1000px; }
#footer_logo { background-position: -513px 0; width: 80px; height: 80px; float: left; margin: 0 26px; }
#footer div { float: left; width: 830px; }
#footer #disclaimer { margin-top: 20px; margin-bottom: 53px; }
#footer div p { margin-bottom: 2px; }
#footer div p a { margin: 0 8px; color: #666; } 
#footer div p strong { font-size: 11px; }

/*
*
* end footer
*
*
* CHANNEL HEADERS
*/

#channel_header { font-size: 32px; height: 40px; font-weight: bold; text-transform: lowercase; color: #b21db2; }

/*
* end channel headers
*/


#home_columnRight { width: 305px; }
#home_columnRight .box_label { width: 240px; }
#home_columnRight .side_box { padding: 0 13px 10px;  }

#category { margin-bottom: 28px; }
#category .category-header { background: url(../images/category-header.png) no-repeat; height: 21px; margin-top: 9px; }
#category ul { margin-top: -10px; padding: 0; list-style: none; }
#category ul li {  margin: 0; padding: 7px 21px; border-bottom: 1px solid #dddede; }
#category ul li.arrow { border: none; }
#category ul li a { color: #666; font-size: 14px; font-family: Arial, Helvetica, sans-serif; font-weight: bold; }
#category ul li a.activeChannel { color: #f74b16; }

/* FUN COVERS */
#funcovers { width: 393px; float: left; }
#funcovers .header span { background-position: 0 -21px; padding: 0 56px; }
#funcovers .left, #babybook .left { margin-left: 12px; border: 1px solid #99ccff; margin-top: 10px; }

#funcovers .clearleft,#babybook .clearleft { margin-left: 0; }
#funcovers .header { border-bottom: 5px solid #999; font-size: 11px; padding-bottom: 10px; color: #666; }
#funcovers .header a { color: #333; margin: 0 5px; }

#funcovers .sponsor,#babybook .sponsor { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; color: #666; font-size: 11px; height: 36px; padding: 9px 0; margin-top: 7px; }
#funcovers .sponsor img, #babybook .sponsor img { margin-left: 10px; }
#funcovers .sponsor span, #babybook .sponsor span { display: block; color: #999; }
#funcovers .sponsor span a, #babybook .sponsor span a { color: #008fd4; font-weight: bold; }


/* promo form */
.promo_form { margin-top: 15px; font-weight: bold; }
.promo_input { width: 419px; }
/*end just for promo*/

/*
* FLASHBOX STARTS
*
*/

/* Flash box */
#flashbox { margin-left: 10px; }
#flashbox_border { 
	/*border: 1px solid #f5f5f5; */
	box-shadow:2px 2px 2px #969696; 
	-moz-box-shadow: 2px 2px 2px #969696; 
    -webkit-box-shadow: 1px 2px 2px #969696;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=2);
	margin-bottom: 3px;
}

#flashbox_border .flashbox_image_holder { position: relative; height: 300px; }

#flashbox .flashbox_entry { overflow: hidden; width: 100%; }
#flashbox .flashbox_entry h2 a { font-size: 18px /*24px*/; color: #ff502f; font-family: Arial, Helvetica, sans-serif; }
#flashbox .flashbox_entry h2 { margin-bottom: 15px; }
#flashbox .flashbox_entry p { font-size: 12px; line-height: 18px; }
#flashbox .flashbox_entry .flashbox_channel { font-weight: bold; }
#flashbox .flashbox_text_holder { margin-right: 4px; float: right; margin-top: 10px; position: absolute; width: 215px; top: 30px; left: 420px; }/*width: 192px; */

#flashbox_pagination { 
	/*margin-left: 11px; */
	width: /*640px*/662px; 
	height: 86px; 
	overflow: hidden; 
	margin-bottom: 20px; 
	/*border: 1px solid #f5f5f5; */
	box-shadow:2px 2px 2px #969696; 
	-moz-box-shadow: 2px 2px 2px #969696; 
    -webkit-box-shadow: 1px 1px 2px #969696;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=2);
	background: /*#ffe6d6*/#f6f6f6;
}
#flashbox_pagination ul { width: 2000px; height: 86px; list-style:none; overflow: hidden; }
#flashbox_pagination ul li { text-align: center; width: /*115*/120px; height: 86px; }
#flashbox_pagination ul li:last { border: none; }
#flashbox_pagination ul li p { padding: 4px; }
#flashbox_pagination ul li p a { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-style: normal; }
#flashbox_pagination .flashbox_control { float: left; width: 604px; overflow: hidden; margin-left: 5px;  }
#flashbox_pagination #flashbox_holder { list-style: none; }
#flashbox_pagination .activeSlide { background-color: /*#ff4f2e*/#5cc4c3; height: 86px; } 
#flashbox_pagination a { background: url(../images/arrow-sprite.jpg) no-repeat; }
#flashbox_pagination #flashbox_holder a { background:none; color: #000000; }
#flashbox_pagination #flashbox_holder .activeSlide a { font-weight: bold; }
#flashbox_pagination .prevpage { float: left; padding: 8px; margin-top: 22px; margin-left: 4px; cursor: pointer; }
#flashbox_pagination .nextpage { float: right; padding: 8px; margin-top: 22px; margin-right: 4px; cursor: pointer; }
#flashbox_pagination a.prevpage { background-position: 10px 17px; }
#flashbox_pagination a.nextpage { background-position: -10px 17px; }
#flashbox_holder { height: 86px; overflow:hidden; list-style: none; }

.noPagination{ border-bottom: 1px solid #ccc; margin-top: 5px; }

.pagination_link { border-top: 1px solid #ccc; }
.pagination_link a.nextpage, .pagination_link a.prevpage, .pagination_link a.npage, .pagination_link a.ppage { background: url(../images/pagination-arrows.png) no-repeat; }
.pagination_link { margin: 6px 6px; }
.pagination_link ul { list-style-type: none; float: left; height: 14px; margin-top: 13px; }
.pagination_link ul li { display: table-cell; text-align: center; }
.pagination_link ul li { padding: 0 10px; border-left: 1px solid #cccccc; /*border-left: 1px solid #cccccc;*/ }
.pagination_link ul li.page1 { border: none; } 
.pagination_link .pagenumbers { clear: both; padding: 2px 9px; }
.pagination_link a { font-weight: bold; }
.pagination_link a.prevpage, .pagination_link a.ppage { background-position: 1px 15px; }
.pagination_link a.nextpage, .pagination_link a.npage { background-position: -17px 15px; }
.pagination_link a.selected { font-weight: bold; color: #f74b16; }
.pagination_link a.prevpage, .pagination_link a.nextpage, .pagination_link a.npage, .pagination_link a.ppage { width: 10px; height: 25px; float: left;  }

#article-button2 { float: right; margin-top: -30px; font-size: 12px; font-weight: bold; color: #F74B16; }


/*
* FLASHBOX ENDS
*
*
* ARTICLE
*/

/* article date */
.article_date { margin-top: 10px; font-family: Arial, Helvetica, sans-serif; font-size: 12px; }

/* social buttons */
#social-plugins { float: right; border-left: 1px solid #cccccc; width: 85px; margin: 0px 0px 50px 10px; padding: 10px 0px 10px 15px; text-align: center; }
#social-plugins .facebook, #social-plugins .twitter { margin-bottom: 15px; height: 60px; }
#social-plugins .twitter { padding-left: 3px; }
#social-plugins #divButtons .gig-button-container table { margin: 0 auto; }

#social-plugins .commentButton { background: url(../images/comments_button.gif) no-repeat; width: 74px; height: 66px; margin: 5px -4px 5px 8px; cursor: pointer; }
#social-plugins .commentButton .comment-count { float: right; margin-top: 14px; width: 82px; text-align: center; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; /*font-weight: bold;*/ }

#social-plugins .emailButton { background: url(../images/email_button.gif) no-repeat; width: 73px; height: 66px; margin: 5px -4px 5px 10px; cursor: pointer; }
#social-plugins .emailButton .email-count { float: right; margin-top: 14px; width: 82px; text-align: center; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; /*font-weight: bold;*/ }

/*	
*	margin-bottom for every button 
* 	(in this case only fb has a bottom margin) 
*	if you want to be applicable to all 
*	replace "gig-button-container-facebook" with "gig-button-container" 
*/
#social-plugins #divButtons table div.gig-button-container { margin-bottom: 8px; } 
#social-plugins #divButtons .gig-button-container table div.gig-button-text { width: 55px; text-align: center; } /* width for every button */
#social-plugins #divButtons .gig-button-container table td.gig-button-td { text-align: center; } /* alignment for every text in a button */

/* for google plus-one */
#social-plugins #divButtons table td .gig-button-container-google-plusone { padding-left: 15px; }

/*#social-plugins .FBConnectButton { background: url(../images/facebook-share.png) no-repeat; z-index: 100; width: 60px; height: 23px; }
#social-plugins .FBConnectButton_Text { background:none; border: none; z-index: 0; }*/

/* ARTICLE CONTENT */
.article_title { margin-top: 15px; margin-bottom: 10px; font-family: Arial, Helvetica, sans-serif; }
.article_title a { font-size: 25px; color: #000000; }
.article_blurb { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; color: #000000; font-style: italic; margin-bottom: 10px; }
.bylines, .bylines a { font-size: 13px; font-weight: normal; color: #666; }
.content_article { font-family: Verdana, Arial, Helvetica, sans-serif; margin-top: 28px; line-height: 20px; font-size: 13px; }
.content_article ul, .content_article ol { margin: 5px 10px; padding: 5px; }
.content_article ul li, .content_article ol li { list-style-type: circle; margin-left: 37px; }
.content_article ol li { list-style-type: decimal; }
.content_article p { margin: 10px 0; }

/* AUTHORS CONTENT */
#authors-content { overflow: hidden; margin-bottom: 8px; color: #f74b16; font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; border-top: 1px solid #cbcbcb; }
#authors-content .author-image-holder {
	float: left; width: 85px; margin: 0 auto; text-align: center;
	/*border: 1px solid #f5f5f5; 
	box-shadow: 1px 2px 2px #969696; 
	-moz-box-shadow: 1px 2px 2px #969696; 
    -webkit-box-shadow: 1px 2px 2px #969696;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=2);*/
	margin-bottom: 2px;
	margin-top: 10px;
} 

#authors-content .author-image { position: relative; z-index: 2; margin-bottom: 15px; }
#authors-content .author-sign { position: absolute; z-index: 10; top: 80px; right: 10px; color:#000000; }
#authors-content .Acontent { float: right; text-align: left; width: 560px; margin-top: 15px; }
#authors-content .p1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; margin-bottom: 5px; }
#authors-content .p2 { color: #000000; margin-bottom: 15px; }
#authors-content .read-more { margin-bottom: 6px; }
#authors-content .read-more a { text-decoration: underline; color: #f74b16; } 

/* 
* 
* FOLLOW US AND RELATED ARTICLES 
*/

/* follow us */
#follow-related { /*border-top: 1px solid #ccc; border-bottom: 1px solid #ccc;*/  }  
#follow-related .followUs { font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; /*text-align: center; float: left; width: 160px; border-right: 1px solid #d5d5d5;*/ margin-top: 25px; margin-bottom: 10px; }
#follow-related .related { /*float: right; width: 490px;*/ margin-top: 6px; margin-left: 20px; }

#follow-related .followUs .followf { float: left; margin-right: 5px; }
#follow-related .followUs .followLike { float: left; margin-top: 4px; margin-right: 4px;  }
#follow-related .followUs .followTweet { float: left; margin-top: 4px; margin-right: 4px; }

/* related articles */
#related_articles { list-style-type: square; margin-left: 14px; }
#related_articles li h3 a { color: #000000; font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; font: bold; }
#related_articles li { color: #f74b16; line-height: 18px; }

.th { color: #f74b16; font-size: 14px; font-family: Arial, Helvetica, sans-serif; margin-bottom: 5px; }

.border-orange-thin { border-bottom: 3px solid #f74b16; height: 12px;  }

/* BOOKMARKS */
.bookmarks { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 12px 0 12px 55px; text-align: center; margin: 1px; }
.bookmarks a  { float: inherit; color: #333;  }
.bookmarks a.small { font-size: 10px; margin-right: 10px; }
.bookmarks a.small span { margin-right: 5px; }

/* TAGS */
#tags { padding: 20px 0; font-family: Verdana, Arial, Helvetica, sans-serif; color: #666; font-size: 11px; font-weight: bold; border-top: 1px solid #ccc; }
#tags a { color: #666; font-size: 10px; font-weight: normal; }

#comments { border-top: 1px solid #999; border-bottom: 1px solid #999; padding: 20px 10px; overflow: hidden; }

.subscribe { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 4px 0; margin: 1px; }
.subscribe div { padding: 6px 45px; background-color: #99ccff; overflow:hidden; }
.subscribe div a, #comment_list li, #comment_list li .quote { background: url(../images/sprite_comments.png) no-repeat; }
.subscribe div a { padding-left: 31px; float: left; margin: 0 20px; color: #333; font-weight: bold; }
.subscribe div a.subscribe_magazine { background-position: 0 0; }
.subscribe div a.newsletter { background-position: 0 -27px; }

/* COMMENTS */
#articleCommentForm { overflow: hidden; }
#write-comment { overflow: hidden; /*float: left; width: 320px;*/ margin-top: 20px; }
#write-comment .comment_head { margin-bottom: 20px; }
#write-comment .comment_head a { color: #8a5b9d; font-size: 18px; font-weight: bold; }
#write-comment label { display: block; color: #333; }
#write-comment label span { font-size: 11px; color: #666; font-weight: bold; }
#write-comment input, #write-comment textarea { display: block; margin-bottom: 8px; border: 1px solid #999; padding: 3px; font-family: Arial, Tahoma; }
#write-comment textarea { width: 98%; }
#write-comment .note { font-size: 11px; color: #666; float: right; margin-top: 5px; }

#commenting_user { margin-bottom: 10px; }
#submitArticleComment { display: block; float: left; border: 1px solid #999; }
#submitArticleComment .submitArticle { background-color: #999; font-weight: bold; padding: 4px 23px; text-align: center; color: #FFF; border: 1px solid #fff; float: left;  }
#default_commment { width: 45%; float: left; }
#facebook_connect { text-align: center; margin-top: 20px; width: 45%; float: right; }
#facebook_connect h4 { margin-bottom: 15px; }

#fb_profilepic { width: 50px; height: 50px;  } /* facebook styles */
#fb_welcome { width: 260px; margin-left: 10px; }
#fb_welcome #fb_username { font-size: 16px; }
#fb_welcome #fb_username span { font-weight: bold; }
#fb_welcome #signedin { margin-bottom: 5px; font-size: 11px; }

#comments li span { font-size: 11px; color: #999999; }

/* COMMENTS LIST */
#recordset_display { margin-bottom: 20px; margin-top: 5px; font-size: 14px; font-weight: bold; color: #333; }
#comment_list_box { /*float: right; width: 330px;*/ }
#comment_list { list-style-type: none; margin-top: 22px; /*min-height: 345px;*/ }
#comment_list li { background-position: 0 -83px; overflow: hidden; color: #333; }
#comment_list li div { float: left; margin: 5px 13px 10px 29px; width: 595px; }
#comment_list li div strong { font-size: 11px; font-weight: normal; color: #666; display: block; margin-top: 5px; }
#comment_list li .quote { float: right; background-position: 0 -54px; width: 16px; height: 13px; margin: 0; }

#comments .comment_list { display: none; }
#comments .comment_list_Active { display: block; }
#comments ul li a { background: none; }
#comments .pagination ul { margin-top: 5px; }
#comments .pagination .nextpage { margin-left: 10px; }
#comments .pagination .prevpage { margin-right: 10px; }
#comments .pagination .selected { background-color: #d2d2d2; font-weight: bold; }

/* --- BREADCRUMBS --- */
#breadcrumbs { margin-bottom: 10px; font-size: 12px; font-family:Arial, Helvetica, sans-serif; font-size: 11px; }
#breadcrumbs ul { list-style-type: none; }
#breadcrumbs ul li { display: inline; margin-right: 5px; color: #666; line-height: 11px; }
#breadcrumbs ul li span { margin-right: 5px; }
#breadcrumbs ul, #breadcrumbs ul li a { color: #666; }
/*#breadcrumbs ul li a:hover { color: #73D6F7; }*/


/* TABLE */
.table { overflow: hidden; }
.table .row { overflow: hidden; }
.table .th { font-weight: bold; font-size: 110%; }
.table .row .cell { float: left; padding: 3px 5px; }


.pagination a.nextPage, .pagination a.prevPage, .pagination a.first_link, .pagination a.last_link { background: url(../images/pagination-arrows.png) no-repeat; }


/* GALLERY */

#gallery { margin-bottom: 20px; }
#gallery #slideholder { height: 340px; margin-top: 20px; }
#gallery #txtHint { text-align: center; color: #ff0000; height: 20px; }
#gallery .gallery_entry { /*overflow: hidden;*/ }
#gallery .gallery_entry .galleryImage { border: 1px solid #ddd; overflow: hidden; width: 450px; min-height: 330px; float: left; }
#gallery .gallery_entry .galleryText { float: right; width: 214px; margin-left: 6px; }
#gallery .gallery_entry .galleryText .leftText { border-bottom: 3px solid #f14b11; border-top: 3px solid #f14b11; height: 278px; padding: 15px 5px; overflow: auto; }
#gallery .gallery_entry a.gallery_channel { color: #660099; font-size: 14px; }
#gallery .gallery_entry img { margin-top: 15px; margin-bottom: 15px; }
#gallery .gallery_entry .gallery_channel { font-size: 16px; font-weight: normal; }
#gallery .gallery_entry h2 a { font-size: 16px; font-weight: bold; color: #000; }
#gallery .gallery_entry h2 { margin-bottom: 15px; }
#gallery .gallery_entry .gallery_channel { font-weight: bold; }
#gallery .gallery_image_holder { width: 218px; height: 220px; float: left; overflow: hidden; }
#gallery .gallery_text_holder { width: 192px; margin-right: 12px; float: right; margin-top: 20px; }
#gallery  #gallery_pagination { width: 675px; overflow: hidden; background-color: #d5d7d6; /*height: 92px;*/ }
#gallery  #gallery_pagination .gallery_control { float: left; overflow: hidden; width: 600px; margin-left: 20px; margin-top: 11px; }
#gallery  #gallery_pagination .prevpage, #gallery  #gallery_pagination .prev { float: left; cursor: pointer; }
#gallery  #gallery_pagination .nextpage, #gallery  #gallery_pagination .next { float: right; cursor: pointer; }
#gallery  #gallery_pagination a.prevpage, #gallery  #gallery_pagination .prev  { background: url(../images/gallery-button-prev.jpg) no-repeat; width: 18px; height: 92px; }
#gallery  #gallery_pagination a.nextpage, #gallery  #gallery_pagination .next { background: url(../images/gallery-button-next.jpg) no-repeat; width: 18px; height: 92px; }
#gallery  #gallery_holder { width: 8000px; font-size:11px; overflow:hidden; list-style: none; }
#gallery  #gallery_holder .gallery_posts { float: left; height: 100px; overflow: hidden;  }
#gallery  #gallery_holder .gallery_posts div { text-align: center; margin: 0 5px; overflow: hidden; }
#gallery  #gallery_holder .gallery_posts img { width: 90px; }
#gallery  #gallery_holder .gallery_clear { border-right: 0; }
#gallery  #gallery_holder .gallery_posts div { opacity:0.50; filter:alpha(opacity=50);}
#gallery  #gallery_holder .gallery_posts div:hover { opacity:1.0; filter:alpha(opacity=100);  }
#gallery  #gallery_holder .gallery_posts a { color: #000; }
#gallery  #gallery_holder .activeSlide div { opacity:1.0; filter:alpha(opacity=100); }
#gallery .pagination_pink .blank_recordsets { width: 410px; text-align: center; color: #ff9add; }

/* INLINE GALLERY */
.pagination_pink { padding: 6px 2px; position: absolute; margin-top: -195px; z-index: 99; } /* margin-top: -195px; margin-top: 145px;*/
.pagination_pink a { background: url(../images/gallery-top-nextprev.jpg) no-repeat; }
.pagination_pink ul { list-style-type: none; float: left; height: 51px; }
.pagination_pink a.prevpage, .pagination_pink a.prev { background-position: 0px 0px; }
.pagination_pink a.nextpage, .pagination_pink a.next { background-position: -18px 0px; }
.pagination_pink a.prevpage, .pagination_pink a.prev, .pagination_pink a.nextpage, .pagination_pink a.next { width: 18px; height: 51px; float: left; cursor: pointer; z-index: 300; }

.pagination_top { width: 214px; padding: 2px 2px; z-index: 100;  }
.pagination_top div { width: 128px; }
.pagination_top a.prevpage, .pagination_top a.prev, .pagination_top a.nextpage, .pagination_top a.next { float: left; cursor: pointer; }


#gallery .galleryAds { position: absolute; z-index: 100; margin-top: 35px; margin-left: 80px; }

/*
*
*	MORE GALLERY
*
*/

#more-gallery { border-bottom: 3px solid #f94c14; margin-top: 20px; overflow: hidden; }
#more-gallery .page { border-bottom: 3px solid #f94c14; height: 18px; text-align: center; }
#more-gallery .page div { font-weight: bold; width: 588px; !important }
#more-gallery .page a.nextp, #more-gallery .page a.prevp { float: left; cursor: pointer; }
#more-gallery p	{ margin-top: 10px; margin-left: 20px; color: #000000; font-size: 14px; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }
#more-gallery ul { list-style: none; }
#more-gallery ul li { float: left; margin: 18px 18px; }
#more-gallery .image-holder img { border: 1px solid #d5d6d6; } 
#more-gallery .channels { color: #f54a1e; font-size: 11px; font-family: Arial, Helvetica, sans-serif; margin: 8px 0 5px 0; }
#more-gallery .titles { font-size: 13px;  font-family: Arial, Helvetica, sans-serif; }
#more-gallery .titles a { color: #000000; font-weight: bold; }
#more-gallery .see-photos { font-family: Arial, Helvetica, sans-serif; margin-top: 8px; } 
#more-gallery .see-photos a { color: #f54a1e; font-size: 11px; font-weight: bold; }

.donotshow { display: none; border: none; }

#channel_header { cursor: pointer; }

.emptyResult { text-align: center; padding: 20px 100px; font-size: 12px; }

#cse-search-results iframe { width: 675px; }


#channel_name { font-size: 24px; border-bottom: 1px solid #CC66CC; padding: 5px; font-weight: bold; }

/* SPECIAL PAGE */

#special-page {}
#special-page .list { list-style: decimal; padding-left: 25px; }
#special-page .list li { margin: 4px 0px; }


/* additional css style */

/*pop up for image upload and cropper*/
.bClose {cursor:pointer;font-weight:bold;position:absolute;right:15px;text-decoration:none;top:10px;}
#popup_content { background-color: #999; display:none;height:252px;padding:15px;width:454px; }
#pop_upload { color:#000;display:block;margin:10px 0;text-decoration:none; }

#a_z { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding-top: 5px; padding-bottom: 5px; text-align: center; }
#a_z a:hover, #a_z a:active, #a_z a:visited { font-weight: bold; }

.valentine_List .val_list h3 a { color: #666; font-size: 16px; }
.valentine_List .val_list a { color: #660099; clear: both; }
.valentine_List .val_list a span { float:left; margin-top:4px; padding:5px;background-color: #8a5b9d; margin-right: 9px; }

ul li.val_list { list-style: none; margin-bottom: 5px; }
ul li .val_title { position: absolute; width: 400px; margin-top: -90px; margin-left: 100px; }


/* 
*
* PAGINATION 
*
*/

.pagination { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; margin-top: 20px; padding-top: 10px; height: 28px; }
.pagination .pagenumbers { clear: both; padding: 2px 9px; }
.pagination a { font-weight: bold; }
/* for borders */

.pagination a.pagenumbers { border-right: 1px solid #ccc;  }
.pagination a.noBorder { border-right: none; }
.pagination a.last { border-right: none; }

/* end */
.pagination a.first_link { background-position: 0px 2px; margin-right: 10px; padding: 0px 7px;  }
.pagination a.last_link { background-position: -17px 3px; margin-left: 10px; padding: 0px 8px; }
.pagination a.prevPage { background-position: 0px 2px; margin-right: 10px; padding: 0px 2px; }
.pagination a.nextPage { background-position: -17px 3px; margin-left: 10px; padding: 0px 3px; }
.pagination a.selected { font-weight: bold; color: #f74b16; }
.pagination a.prevPage, .pagination a.nextPage { height: 25px; }


/*
*
* CLEAR, SPACERS, COLORS AND BORDERS
*
*/
.clear { clear: both; }
.spacer10 { height: 10px; }
.spacer15 { height: 15px; }
.spacer20 { height: 20px; }
.spacer25 { height: 25px; }

.border-bdashed { border-bottom: 1px dashed #ccc; }
.border-tdashed { border-bottom: 1px dashed #ccc; }
.border-bsolid { border-bottom: 1px solid #ccc; }
.border-tsolid { border-top: 1px solid #ccc; }

.colorB { color: #008fd5; }
.colorP { color: #ea69a0; }
.colorO { color: #f74b16; }
/*
*
* END CLEAR, SPACERS, COLORS AND BORDERS
*
*/

#navigation { padding-left: 10px; margin-top: 5px; text-align: center; width: 250px; }
/*#navigation { width: 300px; margin: 15px }*/
#navigation li { float: left; padding: 8px; list-style: none; cursor: pointer; }
#navigation li.activeSlide { background: #ccc; color: #fff; }
#navigation li:focus { outline: none; }

#magazine-archive .year-archive { list-style: none; float: left; font-size: 12px; font-weight: bold; }
#magazine-archive .magazine-holder { margin: 20px; list-style: none; float: left; }
#magazine-archive .magazine-image { border: 1px solid #ccc; padding: 5px; overflow: hidden; margin-bottom: 8px; }
#magazine-archive .magazine-text { text-align: center; font-weight: bold; }

ul li.val_list { list-style: none; margin-bottom: 5px; }
ul li h3.val_title { position: absolute; width: 400px; margin-top: -80px; margin-left: 100px; }

/*mobile map*/
#mobile-map { background-image:url(../images/babybook-mobile-map.jpg); background-repeat: no-repeat; width: 435px; height: 87px; }

#error_page { text-align: center; }
#error_page .error_content { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; }
#error_page .error_content p { font-family: 'spDreams_bold'; font-size: 36px; color: #df802c; margin-top: 10px; margin-bottom: 30px;  }


/* 
*
*	CUSTOM FONT
*
*/

/* Caviar Dreams Bold Font*/
@font-face {
	font-family: 'spDreams_bold';
	/* src: url('../fonts/CaviarDreams_Bold.ttf'), 
	url('../fonts/CaviarDreams_Bold.woff'), 
	url("CaviarDreams_Bold.svg#CaviarDreams-Bold") ;  others */
	src: url('../fonts/CaviarDreams_Bold.eot');
	src: url('../fonts/CaviarDreams_Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/CaviarDreams_Bold.woff') format('woff'),
         url('../fonts/CaviarDreams_Bold.ttf') format('truetype'),
         url('../fonts/CaviarDreams_Bold.svg#CaviarDreamsBold') format('svg');
	font-weight: bolder;
    font-style: normal;
}

@font-face {
	font-family: 'spDreamsIE_bold';
	src: url('../fonts/CaviarDreams_Bold.eot'); /* IE */
}

/* Caviar Dreams Font*/
@font-face {
	font-family: 'spDreams';
	/*src: url('../fonts/CaviarDreams.ttf'), 
	url('../fonts/CaviarDreams.woff'), 
	url("CaviarDreams.svg#CaviarDreams") ; others */
	src: url('../fonts/CaviarDreams.eot');
    src: url('../fonts/CaviarDreams.eot?#iefix') format('embedded-opentype'),
         url('../fonts/CaviarDreams.woff') format('woff'),
         url('../fonts/CaviarDreams.ttf') format('truetype'),
         url('../fonts/CaviarDreams.svg#CaviarDreamsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-family: 'spDreamsIE';
	src: url('../fonts/CaviarDreams.eot'); /* IE */
}

#channel_header, .label, .label a, .archive, .most-channel-title, .button, .archive, .archive_2 { font-family: 'spDreams_bold';  }
/*.ie6 .label, .ie7 .label, .ie8 .label {font-family: spDreamsIE; }
.ie6 .label a, .ie7 .label a, .ie8 .label a {font-family: spDreamsIE; }
.ie6 .archive, .ie7 .archive, .ie8 .archive {font-family: spDreamsIE; }
.ie6 .most-channel-title, .ie7 .most-channel-title, .ie8 .most-channel-title{font-family: spDreamsIE; }
.ie6 #channel_header, .ie7 #channel_header, .ie8 #channel_header {font-family: spDreamsIE; }
.ie6 .button, .ie7 .button, .ie8 .button{font-family: spDreamsIE; }*/


.sidebox-title-sub, .sitemap_title, .label-sub { font-family: 'spDreams_bold'; }
/*.ie6 .sidebox-title, .ie7 .sidebox-title-sub, .ie8 .sidebox-title-sub {font-family: spDreamsIE_bold; }
.ie6 .sitemap_title, .ie7 .sitemap_title, .ie8 .sitemap_title { font-family: spDreamsIE_bold; }*/

/* 
*
*	END CUSTOM FONT
*
*/

.staff-blogs-sig { background: url(../images/sprite-staff-blogs.png) no-repeat; width: 116px; cursor: pointer; }
#lei-sison { background-position: 0 -50px; height: 100px; }
#stephanie-esguerra { background-position: 0 -109px; height: 100px; }
#mia-fausto-cruz { background-position: 0 -200px; height: 100px; }
#nikki-constantino { background-position: 0 -300px; height: 100px; }
#maika-sample { background-position: 0 -400px; height: 150px; }

/*.staff-blogs-sig { background: url(../images/blog.gif) no-repeat; width: 194px; height: 50px; }
#justine-camacho-tajonera { background-position: 0 0; }
#chrissy-icamina-dalusong { background-position: 0 -50px; }
#jenny-inumerable { background-position: 0 -100px; }
#mia-fausto-cruz { background-position: 0 -151px; }
#melody-lalata { background-position: 0 -201px; }
#nikki-constantino { background-position: 0 -251px; }
#rachel-perez { background-position: 0 -302px; }
#stephanie-esguerra { background-position: 0 -352px; }
#anna-dy { background-position: 0 -404px; }*/

/* skinning */
#flashSkin { height:800px; position: fixed; top:0; left: 50%; margin-left: -662px; z-index: 0; }
*html #flashSkin { position: absolute; top: expression(eval(document.documentElement.scrollTop)); }



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


