/* $Id: layout-fixed.css,v 1.5.2.3 2009/02/13 19:20:19 johnalbin Exp $ */

/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
body {
	margin:0px; padding:0px;
	font-family: Tahoma,Helvetica,Arial,sans-serif;
	/*font-size: 13px;*/
}

  #page,
  #closure-blocks
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 980px;
  }

  #page-inner
  {
  }

  #navigation-top,
  #navigation
  {
    position: absolute; /* Take the named anchors out of the doc flow    */
    left: -10000px;     /* and prevent any anchor styles from appearing. */
  }

  #skip-to-nav
  {
    float: right;
    margin: 0 !important;
    font-size: 0.8em;
  }

  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff; /* Same as background color of page */
  }

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

  /* Alternatively, the skip-to-nav link can be completely hidden until a user tabs
     to the link. Un-comment the following CSS to use this technique. */
  /*
  #skip-to-nav a, #skip-to-nav a:hover, #skip-to-nav a:visited
  {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  #skip-to-nav a:active, #skip-to-nav a:focus
  {
    position: static;
    width: auto;
    height: auto;
  }
  */

/** header **/
#header { background:url(/image/header_bg_85.png) no-repeat top left; width:958px; height:73px; _height:85px; padding:6px 12px; margin-bottom:18px; position:relative; }
/* #header { background:url(/image/header_bg_85.png) no-repeat top left; width:918px; height:73px; _height:85px; padding:6px 12px; margin-bottom:18px; position:relative; } */
#header_icons { float:right; margin-top:23px; }
#header_icons img { float:left; margin-left:2px; }
#header_links { margin-top:43px; float:left; margin-left:30px; }
#header_links a, #header_links a:active, #header_links a:visited, #header_links a:hover { color:#5da23c; text-decoration:none; margin-right:16px; font-size:1.25em; line-height:1.5em; }
#header_links a:hover { text-decoration:underline; }

#header_follow { 

padding:0px 20px 3px 0px;
	position:absolute;
	right:0px;
	bottom:10px;
	font-size:.8em;
	color:#999;
}

#header_follow a{
	margin-right:6px;
}

  #header-inner
  {
  position:relative;
  }

  #logo-title
  {
  float:left;  
}

  #logo
  {
    float: left;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
  #main
  {
    position: relative;
  }

  #main-inner
  {
  }

/** content **/

#content { min-height:400px; _height:400px; }

  #content,
  .no-sidebars #content
  {
    float: left;
    width: 980px;
    margin-left: 0;
    margin-right: -960px; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

  .sidebar-left #content
  {
    width: 780px;
    margin-left: 200px; /* The width of #sidebar-left. */
    margin-right: -980px; /* Negative value of #content's width + left margin. */
  }

  .sidebar-right #content
  {
    width: 760px;
    margin-left: 0;
    margin-right: -760px; /* Negative value of #content's width + left margin. */
  }

  .two-sidebars #content
  {
    width: 580px;
    margin-left: 200px; /* The width of #sidebar-left */
    margin-right: -760px; /* Negative value of #content's width + left margin. */
  }

  #content-inner
  {
    margin: 0;
    padding: 0;
  }

/** navbar **/
  #navbar
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #navbar's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
    height: 3.6em; /* The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
  }

  .with-navbar #content,
  .with-navbar #sidebar-left,
  .with-navbar #sidebar-right
  {
    margin-top: 3.6em; /* Set this to the same value as the navbar height above. */
  }

  #navbar-inner
  {
  }

  #search-box
  {
    width: 200px;
    margin-right: -200px; /* Negative value of #search-box's width. */
    float: left;
  }

  #primary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #secondary
  {
    margin-left: 200px; /* Width of search-box */
  }

  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 10px 0 0;
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 200px;
    margin-left: 0;
    margin-right: -200px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
  }

  #sidebar-left-inner
  {
    margin: 0 20px 0 0;
    padding: 0;
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: left;
    width: 200px;
    margin-left: 780px; /* Width of content + sidebar-left. */
    margin-right: -980px; /* Negative value of #sidebar-right's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
  }

  #sidebar-right-inner
  {
    margin: 0 0 0 20px;
    padding: 0;
  }

/** footer **/
#footer {
	margin:20px 0px;
	font-size:1em;
	line-height:1.2em;
}

#footer li.topitem {
	font-size:1.0em;
	font-weight:bold;
	margin:0px;
	color:#666666;	
}


#footer li { list-style-type:none; }

#footer a, #footer a:active, #footer a:visited { color: #666666; text-decoration:none; }
#footer a:hover { color: #333333; text-decoration:underline; }

  #footer-inner
  {
  }

/** closure **/
  #closure-blocks /* See also the #page declaration above that this div shares. */
  {
  }

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  #navbar
  {
    overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
  }

  /* If a div.clear-block doesn't have any content after it and its bottom edge
     touches the bottom of the viewport, Firefox and Safari will mistakenly
     place several pixels worth of space between the bottom of the div and the
     bottom of the viewport. Uncomment this CSS property to fix this.
     Note: with some over-large content, this property might cause scrollbars
     to appear on the #page div.
  */
  /*
  #page
  {
    overflow-y: hidden;
  }
  */

.clear { clear:both; height:0px; font-size:0px; margin:0px; padding:0px; border:0px; line-height:0px; }
.centerelement { margin:0 auto; }
.aligncenter { text-align:center; }
.middle { vertical-align:middle; }
.alignright { text-align:right; }
.alignleft { text-align:left; }
.floatleft { float:left; }
.floatright { float:right; }
.inline { display:inline; }
.block { display:block; }
.inlineblock { display:inline-block; }
.relative { position:relative; }
.absolute { position:absolute; }
.static { position:static; }
.hidden { display:none; }
.visibilityhidden { visibility:hidden; }
.visibilityvisible { visibility:visible; }
.spacerhalf { margin-right:3px; }
.spacer { margin-right:6px; }
.spacerx2 { margin-right:12px; }
.spacerx3 { margin-right:16px; }
.spacerx4 { margin-right:20px; }
.leftspacer { margin-left:6px; }
.leftspacerx2 { margin-left:12px; }
.leftspacerx3 { margin-left:16px; }
.leftspacerx4 { margin-left:20px; }
.vertspacerhalf { padding-top:3px; }
.vertspacer { margin-top:6px; }
.vertspacerx2 { margin-top:12px; }
.vertspacerx3 { margin-top:16px; }
.vertspacerx4 { margin-top:24px; }
.vertspacer20 { margin-top:20px; }
.vertspacerminus3 { margin-top:-20px; }
.biggest { font-size:1.5em; }
.bigger { font-size:1.4em; }
.big {	font-size:1.2em; }
.small { font-size:11px; }
.xsmall { font-size:10px; }
.bold { font-weight:bold; }
.strikethrough {text-decoration: line-through;}
.lightgray { color: #999999; }

#story { margin:0px 0px 15px 0px; }
#news-image { float:left; border:0px; }
#news-image img { width:150px; }
#news-text { display:block; float:right; width:780px; vertical-align:text-top; margin:0px 0px 5px 0px; }
#news-content { margin-top:6px; }
#news-link { font-size:1.0em; font-weight:bold; margin:0px; }

.box_full_top { background:url(/image/box_full_top.png) no-repeat left top; width:980px; height:8px; font-size:0px; line-height:0px; }
.box_full_middle { background:url(/image/box_full_middle.gif) repeat-y left top; width:956px; padding:0px 12px; position:relative; }
.box_full_bottom { background:url(/image/box_full_bottom.png) no-repeat left top; width:980px; height:8px; line-height:0px; font-size:0px; }
.box_side_top { background:url(/image/box_side_top.gif) no-repeat left top; width:282px; height:9px; font-size:0px; line-height:0px; }
.box_side_middle { background:url(/image/box_side_middle.gif) repeat-y left top; width:258px; padding:0px 12px; position:relative; }
.box_side_bottom { background:url(/image/box_side_bottom.gif) no-repeat left top; width:282px; height:9px; line-height:0px; font-size:0px; }
.box_ocarina { background:url(/image/ocarina-header-thin.jpg) no-repeat left top; width:956px; height:147px; padding:12px; position:relative; margin-bottom:26px; }
.box_myocarina { background:url(/image/myocarina.png) no-repeat left top; width:956px; height:76px; padding:12px; position:relative; margin-bottom:6px; }
.box_ltr { background:url(/image/ltws-header.jpg) no-repeat left top; width:956px; height:76px; padding:12px; position:relative; margin-bottom:6px; }
.box_ltr_home { background:url(/image/feature-ltws.jpg) no-repeat left top; width:980px; height:464px; padding:0px; margin:0 auto; position:relative; }
.box_ltr_love { background:url(/image/ltws-header-contest.png) no-repeat left top; width:956px; height:76px; padding:12px; position:relative; margin-bottom:6px; }


.box_half { width:460px; float:left; margin-left:20px;}
.box_half_inner { width:440px;padding:10px;}
.box_half_top { background:url(/image/box_half_top.gif); width:460px; height:8px}
.box_half_mid { background:url(/image/box_half_mid.gif); width:460px}
.box_half_bot { background:url(/image/box_half_bot.gif); width:460px; height:8px}
.box_half_top_trans { background:url(/image/box_half_top_trans.png); width:460px; height:8px}
.box_half_bot_trans { background:url(/image/box_half_bot_trans.png); width:460px; height:8px}
.box_image { min-height:90px; min-width:90px;margin:0px 20px 10px 10px; }


.box_twitter_top { background:url(/image/twitter_top.gif) no-repeat top left; width:980px; height:7px; font-size:0px; line-height:0px; }
.box_twitter_middle { background:url(/image/twitter_mid.gif) repeat-y top left; width:956px; padding:2px 12px; }
.box_twitter_bottom { background:url(/image/twitter_bottom.gif) no-repeat top left; width:980px; height:7px; font-size:0px; line-height:0px; }
.box_twitter_title { color:#2fb2e8; font-size:18px; float:left; width:220px; }
.box_twitter_text { float:left; width:736px; }

/*
.product-bar { width:720px; margin:20px auto; }
.product-icon { position:relative; float:left; width:100px; margin:10px; padding:0px; font-weight:bold; text-align:center; }
.product-icon a, .product-icon a:active, .product-icon a:visited, .product-icon a:hover { color:#666666; } 
.product-icon a:hover { text-decoration:underline; }
*/

.product-bar-full { width:980px}
.product-bar-half { width:480px; margin-top: 30px; border:1px dotted #ccc; border-width:0px 0px 1px 0px; padding-bottom:20px}
.no_border { border:0px}
.product-title { font-size:1.2em; font-weight:bold; margin:0px 0px 10px 0px;padding-top:10px;}
.product-bar { width:980px; margin:20px auto; }
.product-link-bar { margin:4px 0px 4px 0px; font-size: .9em;}
.product-buy img{ width:70px; height:24px; margin-left:13px;}
.product-icon { position:relative; float:left; width:100px; margin:0px 0px 0px 0px; padding:0px; font-weight:bold; text-align:center; padding-top:10px}
.product-icon img{ width:70px; }
.product-icon a, .product-icon a:active, .product-icon a:visited, .product-icon a:hover { color:#666666; } 
.product-icon a:hover { text-decoration:underline; }
.product-description p {margin:2px}

.signup_splash { margin-left:55px;position:Relative;}
#piano_splash_icon { float:left;}
#piano_splash_text { float:left;left:300px;padding:20px;width:490px;line-height:1.6em;font-size:1.1em}

#icon { float:left; width:120px; }
#copy { float:left; width:560px; }
#desc { float:left; width:680px; }
#extras { float:right; width:282px; }

/*
#box_login { position:absolute; right:20px; top:70px; }
.box_login_left { background:url(/image/userbox_left_tall.png) no-repeat top left; width:12px; height:26px; display:inline-block; float:left; z-index:2; }
.box_login_middle { background:url(/image/userbox_middle_tall.png) repeat-x top left; height:26px; padding:2px 2px 0px 2px; display:inline-block; overflow:hidden; font-size:11px; float:left; z-index:2; }
.box_login_right { background:url(/image/userbox_right_tall.png) no-repeat top left; width:12px; height:26px; display:inline-block; float:left; z-index:2; }
*/

#box_login { position:absolute; right:0px; top:0px}
.box_login_left {  width:12px; height:26px; display:inline-block; float:left; z-index:2; }
.box_login_middle { height:26px; padding:2px 2px 0px 2px; display:inline-block; overflow:hidden; font-size:13px; float:left; z-index:2; }
.box_login_right { width:12px; height:26px; display:inline-block; float:left; z-index:2; }


/* $Id: messages.css,v 1.1.2.2 2009/02/13 07:46:04 johnalbin Exp $ */

/*
 * MESSAGES STYLE
 *
 * Add sensible messages styling.
 */


  div.messages, /* Important messages (notice, warning, and error) for the user */
  div.notice,
  div.warning,
  div.error
  {
    min-height: 21px;
    margin: 0 1em 5px 1em;
    border: 2px solid #ff7;
    padding: 5px 5px 5px 35px;
    color: #000;
    background-color: #ffc;
    /*
    This image doesn't exist in the original Drupal Zen theme so this was always broken
    background-image: url(/images/messages-notice.png);
    */
    background-repeat: no-repeat;
    background-position: 5px 5px;
  }

  div.notice /* Normal priority messages */
  {
    background-color: #dfd;
    border-color: #afa;
  }

  div.warning /* Medium priority messages */
  {
    border-color: #fc0;
    background-image: url(/images/messages-warning.png);
  }

  div.warning,
  tr.warning
  {
    color: #000; /* Drupal core uses #220 */
    background-color: #ffc;
  }

  div.error /* High priority messages. See also the .error declaration below. */
  {
    /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
    border-color: #c00;
    background-image: url(/images/messages-error.png);
  }

  div.error,
  tr.error
  {
    color: #900; /* Drupal core uses #200 */
    background-color: #fee;
  }

  div.messages ul
  {
    margin-top: 0;
    margin-bottom: 0;
  }

.forum_post {  
  word-wrap: break-word; /* A very nice CSS3 property */
}


