/* $Id$ */

/* underline all links */
  a:link, a:visited
  {
    text-decoration: underline !important;
  }

  /* Don't underline header */
  #site-name a:link,
  #site-name a:visited
  {
    text-decoration: none !important;
  }

/* CSS2 selector to add visible href after links 
  #content a:link:after,
  #content a:visited:after
  {
    content: " (" attr(href) ") ";
    font-size: 0.8em;
    font-weight: normal;
  }
*/
html, body, #page, #page-inner {
    min-width: 480px;
}
#header
{
	position:static;
    min-width: 480px;
    background-color: transparent !important; 
    background-image: none !important;
}
#header-inner
{
    width: 482px;
}
#logo-title
{
	background-color:#333;
	margin-left:auto;
	margin-right:auto;
	width: 450px;
	padding-left: 7px;
}
#main
{
	width:100%;
}
/* Un-float the content */
  #content,
  #content-inner
  {
    float: none;
/*    width: 100%;
    margin: 0 !important;
    padding: 0 !important; */
  }

/* Turn off any background colors or images */
  body,
  #page, #page-inner,
  #main, #main-inner,
  #content, #content-inner
  {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }
  
  #content
  {
	  width: 480px;
	  padding-top: 48px;
	  margin-left:auto !important;
	  margin-right:auto !important;
  }

/* Hide sidebars and nav elements */
  #skip-to-nav, #navbar, #sidebar-left, #sidebar-right, #footer,
  .breadcrumb, div.tabs, .links, .taxonomy,
  .book-navigation, .forum-topic-navigation, .pager, .feed-icons
  {
    visibility: hidden;
    display: none;
  }
  
  .region-header #block-custom_search_blocks-1 input.custom-search-default-value,
  #content-bottom
  {
	  display: none;
  }

/* Otherwise, Firefox clips the content after the first page. */
  #page
  {
    overflow-y: visible;
  }
  
