/* $Id: parentconnect.css,v 1.1.1.1 2010-01-29 00:12:54 christine 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
    {background:url(images/bg.jpg) repeat-x left top;
	/* IE6 fix */
	_background:url(images/bg-ie6.jpg) repeat-x left top;
	margin:0;
	padding:0;	
  }

  
  #wrap-top-nav{
	height:20px;
	left:0;
	position:absolute;
	top:0;
	width:100%;	
	
	}
  #top-nav {margin:0 auto; width:975px;}
  #top-nav ul{
	float:right;
	font-size:0.95em;
	list-style-position:outside;
	list-style-image:none;
	list-style-type:none;
	line-height:100%;
	margin:0px;
	
   }
   #top-nav li{
	float:left;
	padding-top:5px;
	}
	#top-nav li a{
	 color:#fff;
	 text-decoration:none;
	 padding:0 15px;	 
   }
   #top-nav li.last a{
	 border-left:1px solid #fff;	 	 
   }
   
   #page,
  #closure-blocks
  {
    min-width: 960px; /* Don't allow the browser to make the site unreadable. */
	margin-top:20px;
  }

  #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(images/bg-header.png) no-repeat top right; 
  height:127px;  
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
	margin-top:10px;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
  #main
  {
    position: relative;
	min-height:580px;
  }

  #main-inner
  {
  }
  #main-inner #content #content-inner{padding:0 20px 5em 0;}
/** content **/
  #content
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

  #content-inner,
  .no-sidebars #content-inner
  {
    margin: 0;
    padding: 0;
  }

  .sidebar-left #content-inner
  {
    padding-left: 200px; /* The width + left margin of #sidebar-left. */
    padding-right: 0;
  }

  .sidebar-right #content-inner
  {
    padding-left: 0;
    padding-right: 0; /* The width + right margin of #sidebar-right. */
  }

  .two-sidebars #content-inner
  {
    padding-left: 200px; /* The width + left margin of #sidebar-left. */
    padding-right: 200px; /* The width + right margin of #sidebar-right. */
  }

/** 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-right: 200px; /* Width of search-box */
	margin-left: 0;
  }

  #secondary
  {
    margin: 0 auto; /* Width of search-box */
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
  }
   #secondary ul li{
   padding:0;
   }
   #secondary ul li a
  {
    text-decoration:none;
	border-left: 1px solid #ccc;
	padding:0 15px;
  }
   #secondary ul li.first a
  {
    border:none;
  }
  
  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
	margin-top:2px;	
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 15px 0 15px;
	border-left: 1px solid #ccc;
  }
  
   #navbar li.first{border:none; padding-left:3px;}
  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */

  #navbar li a
  {
    
    text-decoration:none;	
	color:#fff;
  }
   #navbar li a:hover{
    text-decoration:underline;	
  }
  #navbar li a.active
  {
   text-decoration:underline;
  }
/** 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: right;
    width: 200px;
    margin-left: -200px; /* Negative value of #sidebar-right's width + right margin. */
    margin-right: 0;
    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
  {background:url(images/bg-footer.jpg) repeat-x top left;
  width:100%; 
  margin-top:30px;
  }

  #footer-inner
  {
  margin:0 auto;
  width:960px;
  color:#999;
  font-size:0.8em;
  }
  #footer-inner a
  {
  color:#999;
  text-decoration:underline;
  }
/** 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;
  }
  */
/** search  **/
	#search-block-form label {
	display:none;
	}
  .block-search{display:inline;
  	float:right;
	margin:0;
	padding:0;
	position:absolute;
	right:5px;
	top:3px;
	width:200px;
	margin-top:-4px;	
	}
 *+html .block-search{margin-top:-6px;}
 *html .block-search{margin-top:-6px;}
  #search-block-form input.form-text {
	 height:15px;
	padding:0;
	width:120px;
	}
 #block-search-0 .form-submit {	
	background:transparent url(images/search-button.jpg) no-repeat scroll left center;
	border:0 none;
	color:#FFFFFF;
	cursor:pointer;
	font-family:Arial,Helvetica,sans-serif;
	font-size:90%;
	height:23px;
	text-indent:-9999px;
	
	/* IE7 fix */
	*padding-top: 33px;
	*background:transparent url(images/search-button.jpg) no-repeat scroll left bottom;
	/* IE6 fix */
	_padding-top: 23px;
	_background:transparent url(images/search-button.jpg) no-repeat scroll left bottom;
	width:55px;
 }
  
  
  /** Views **/
  .views-field-title a{text-decoration:underline;}
  .views-field-view-node a{color:#999;text-decoration:underline;}
  .views-field-view-node a:hover{color:#FE9900;}
  #block-views-featured_news-block_1, #block-views-featured_programs-block_1{
	display:inline;
	float:left;
	padding-right:2%;
	width:46%;
	}
  *html #block-views-featured_news-block_1{clear:both;width:260px; }
  *html #block-views-featured_programs-block_1{width:270px;}
 .front .print{display:none;}
  h2.title
  {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-top: 0;
	color:#00524c;
	font-weight:normal;
	font-style:italic;
	border-bottom:1px solid #ccc;	
    margin-bottom: 0.5em;
	font-weight:bold; 
  }
  .views-field-title{font-size:1.1em;}
  .views-row{clear:left; width:95%; padding:12px 0 8px; overflow:hidden;  display:block;}
  .views-row img{border:1px solid #ccc; padding:2px; margin-right:10px;margin-top:5px;}
  .views-field-title{font-weight:bold;}
  .views-field-created{color:#999;font-size:0.95em;}
  .views-field-teaser p{margin:5px 0 5px;}
  .view-links-page-listing .views-row{padding:0;}
  #block-views-latest_events-block_1{margin-top:20px;}
  .view-featured-news .feed-icon{float:right;margin-top:-30px;}
	.view-footer{float:right; margin-top:-36px;margin-right:130px; }
	*html .view-footer{margin-right:20px;}
	.view-footer a{color:#999;text-decoration:underline;}
	.view-footer a:hover{color:#fe9900;}
	.view-news-page-listing .view-header{float:right;margin-top:-40px;}
  
  /** Right Sidebar **/
  #sidebar-right #edit-mail-wrapper label{display:none;}
  #sidebar-right .form-radios{display:none;}
  #sidebar-right #edit-mail-wrapper input.form-text {
	padding:0;
	width:105px;
	float:left;
	margin-right:5px;
	border:1px solid #e3e3e3;
	background:#f9f2fa;
	padding:1px 2px;
	}
  #simplenews-block-form-1 .form-submit {	
	background:url(images/button-submit.jpg) no-repeat scroll left center;
	border:0 none;
	color:#FFFFFF;
	cursor:pointer;		
	text-indent:-9999px;	
	height:23px;
	/* IE6 fix */
	_padding-top: 23px;
	/* IE7 fix */
	*padding-top: 23px;
	*text-indent:0;
	width:55px;
  }
  #sidebar-right .block{padding-bottom:15px;}
  
  /** Calendar **/
  .calendar-calendar ul.links{padding:0 0 5px;}
  .calendar-calendar div.date-nav {
background-color:#4B9997;
border:1px solid #4B9997;
color:#fff;
padding:0.2em;
width:auto;
}
  .calendar-calendar div.date-nav a, .calendar-calendar div.date-nav h3 {
color:#fff;
}
.calendar-calendar th.days {
background-color:#EEEEEE;
border:1px solid #CCCCCC;
color:#777777;
font-weight:bold;
padding:0.2em;
}
.calendar-calendar td .inner div.calendar div, .calendar-calendar td .inner div.calendar div a {
background:#F7E6C7 none repeat scroll 0 0;
border:medium none;
padding:2px;
}
.calendar-calendar td .inner div.calendar div a{color:#00524c;text-decoration:underline;}
.calendar-calendar td .inner div.calendar div a:hover{color:#fe9900;}
#calpopup-body h2.title{font-size:1.0em;}
#calpopup-body{font-size:0.8em;}
.calendar-calendar td.empty {background:none;}
td.week a{display:none;}
td.week,.calendar-calendar th.week{background-color:#4b9997;}
table .mini-day-on a {
background-color:#F7E6C7;
text-decoration:underline;
}

/** Other **/
.breadcrumb {color:#5E5E5E; padding-bottom:10px; }
