@charset "utf-8"; 
/* $Id: style.css,v 1.5 2009/07/13 23:52:57 andregriffin Exp $ */
/* Drupal 6 Framework - Created by Andre Griffin
----------------------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
12.CSS Support
13.Advanced

[Font sizes - based on 75%/12px body]
36px = 3em
30px = 2.5em
24px = 2em
18px = 1.5em
16px = 1.333333em
14px = 1.1667em
12px = 1em
11px = .9167em
10px = .8333em

Equasion for font sizing: 
-Desired in px ÷ Default (or parent) in px = sizing in em

----------------------------------------------------------------*/

/**
 * 0.RESET 
 */
@import "reset.css";

/**
 * 1.GLOBAL
 */
body {
	background: #003d86;
	line-height:1;
	margin: 0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	color: #000000;
	/*  background-color: #0091d2;
  background-image: url(http://www.thekennedycenteroshkosh.com/images/background.png);
  background-repeat: no-repeat;*/
  font: 12px "Trebuchet MS",Arial, Helvetica, sans-serif;
	background-image: url(images/bg2000px.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}

h1, h2, h3, h4, h5, h6 {
    color: #0091d2;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
}

h1 {
  font-size: 3em;
  line-height: 1em;
  margin-bottom: .5em; 
}

h2 {
	font-size: 14px;
	color:#069;
	font-weight: bold;
}

h3 {
	font-size: 14px;
	line-height: 1em;
	color:#006C9B;
	margin-top: 0em;
	font-variant: small-caps;
	font-weight: bold;
}

h4 {
	font-size: 14px;
	color:#069;
	font-style:italic;
}

h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em; 
}

h6 {
  font-size: 1em;
  font-weight: bold;
  color:#666666;
   
}

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  margin: 0;
}

p {
  margin: 0 0 0em 0;
}

p a:link {
/*  text-decoration: underline;*/
}

a:link, a:visited {
	color: #069;
	outline: none;
	text-decoration: underline;
}

/*a:focus {
  outline: 1px dotted;
}*/

a:hover {
  color: #0091d2;
  outline: none;
/*  text-decoration: underline;*/
}

a:active, li a.active {
	color: #069;
	outline: none;
/*  text-decoration: underline;*/
}

/**
 * 2.LAYOUT
 */
.container {
	margin: 0 auto;
	padding: 0;
	width: 1024px;
	height: auto;
}

/* add this class to div.container in page.tpl to show grid */
.showgrid {
  background: url(http://www.thekennedycenteroshkosh.com/images/grid.png) repeat;
}

/**
 * 3.MAIN
 */
/* 1 column */
#main {
	position: relative;
	top: -60px;
	padding-bottom: 0px;
}

#main.green-bg {
	background-color:#B3D88C;
}

#main.purple-bg {
	background-color:#9398CC;
}

/* 3 columns */
body.sidebars #main {
  float: left;
  width: 630px;
}

/* 2 columns - sidebar-left */
body.sidebar-left #main {
  float: right;
  width: 690px;
}

/* 2 columns - sidebar-right */
body.sidebar-right #main {
  float: left;
  width: 690px;
}

#main_inside {
    float: left;
    width: 977px;
    text-align: left;
    padding-top:75px;
}

#main_admin_inside{
    float: left;
    width: 700px;
    text-align: left;
    padding-top:30px;
}

#main_inside p{
    font-size:11px;
    color:#666666;

}

#main_inside a {
    color:#0091d2;
}

/**
 * 4.SIDEBARS
 */
.sidebar {
  width: 150px;
}

#sidebar-left {
  float: left;
  margin-right: 10px;
}

#sidebar-right {
	float: right;
	margin-left: 0px;
	width:210px;
	background-color: #9398CC;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 30px;
}

/**
 * 5.HEADER
 */
#header {
	margin: 0px 0px 30px 0px;
	padding: 0 0 0 0;
	z-index: 20;
	top: -40px;
	position: relative;
}

#header #logo {
  float: left;
  padding: 0 0px 0 0px;
  vertical-align: top;
}
#logo{
	padding-top:0px;
	margin-top: 0px;
	margin-left: 4px;
}
#header #sitename {
  float: left;
  margin-bottom: 0em;
}

#header h1 {
  font-weight: bold;
  margin: 0;
}

#header h1 a {
  text-decoration: none;
}

#header #siteslogan {
  display: block;
  font-size: 1.5em;
  line-height: 1em;
}

#search {
	float: right;
	padding-right: 0px;
	right: 0px;
	top: -105px;
	/*top: -80px; */
	position: relative;
	height: auto;
	background-image: url(images/search_bg.png);
	background-repeat: no-repeat;
	padding-left: 0px;
	width: 200px;
}

#search-theme-form {
	float: right;
	margin: 0;
	vertical-align: bottom;
	padding-right: 20px;
}

#search-theme-form input {
	margin: 0;
	font-size: 9px;
	background-color: transparent;
	height: 18px;
	border-color: transparent;
}


/* removes "Search this site:" label from search forms */
div#edit-search-theme-form-1-wrapper label, 
div#edit-search-block-form-1-wrapper label {
  display: none;
}

/**
 * 6.NAVIGATION
 */
 
ul.links li {
  background: none;
  margin: 0 0 0 0;
  padding: 0;
  border-left: 1px solid #bcbdc0; /* MENU SEPERATOR */

}

ul.links a:link{
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

ul.links li.first {
  border: none;
}

/* bottom margin leaves space for secondary links */
#nav{
	font-size: 1.1em;
	line-height: 1em;
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0em;
	margin-left: 0px;
	position: relative;
	top: -114px;
}

#nav ul.primary-links, 
#nav ul.dynamic-persistent-menu-menu {
 /* background: #eee;*/
  text-transform:uppercase;
  font-weight: bold;
  margin: 0;
  padding: 0 .5em;
 
}

#nav ul.primary-links li, 
#nav ul.secondary-links li, 
#nav div.block-dynamic_persistent_menu li {
  background: none;
  margin: 0;
  padding: 0;
}

#nav ul.primary-links li a:link, 
#nav ul.primary-links li a:visited, 
#nav ul.dynamic-persistent-menu-menu li a:link, 
#nav ul.dynamic-persistent-menu-menu li a:visited {
  display: inline-block;
  line-height: 1em;
  margin: 0 1em 0 1em;
  padding: 0;
}

#nav ul.primary-links li a:hover, 
#nav ul.primary-links li a:active, 
#nav ul.dynamic-persistent-menu-menu li a:hover, 
#nav ul.dynamic-persistent-menu-menu li a:active {
 /* text-decoration: underline;*/
 color:#bcbdc0;

}

#nav div#secondary-links, 
#nav ul.dynamic-persistent-menu-sub-menu {
  padding: 0;
  position: absolute;
  width: 100%;
}

#nav ul.secondary-links li a:link, 
#nav ul.secondary-links li a:visited, 
#nav ul.dynamic-persistent-menu-sub-menu li a:link, 
#nav ul.dynamic-persistent-menu-sub-menu li a:visited {
  display: inline-block;
  line-height: 3em;
  margin: 0;
  padding: 0 .5em;
}

#nav ul.secondary-links li a:hover, 
#nav ul.secondary-links li a:active, 
#nav ul.dynamic-persistent-menu-sub-menu li a:hover, 
#nav ul.dynamic-persistent-menu-sub-menu li a:active {
  /*text-decoration: underline;*/
}

#nav .block {
  margin: 0;
}

#nav ul.dynamic-persistent-menu-menu {
  display: block !important;
}

.breadcrumb {
  color: #ccc;
  padding: 0;
}

.breadcrumb a:link, 
.breadcrumb a:visited {
  color: #666;
}

.breadcrumb a:hover {
  color: #999;
}


/**
 * 7.NODES
 */
span.submitted {
  color: #898989;
  font-size: .8333em;
  line-height: 1.5em;
}

.node .picture {
  float: left;
  margin: .5em .5em .5em 0;
}

.node{
    padding:1em 0em 0em 0em;  /*SPACING ABOVE CONTENT INSIDE */
    font-size: 12px;
}

.meta {
  margin: 0 0 3em;
}

.meta div.links {
  float: left;
}

.meta div.terms {
  float: right;
}

.meta div.terms span {
  float: left;
}

.meta div.links ul.links li {
  float: left;
  padding: 0 1em 0 0;
}

.meta div.terms ul.links li {
  float: left;
  padding: 0 0 0 1em;
}

.node_read_more {
  font-weight: bold;
}

/* pagination */
.item-list ul.pager li {
  margin: 0;
  padding: 0;
}

.item-list ul.pager li a:link, 
.item-list ul.pager li a:visited, 
.item-list ul.pager li.pager-current {
  margin: 0;
  padding: 0 .2em;
  text-decoration: none;
}

.item-list ul.pager li a:hover, 
.item-list ul.pager li a:active {
  /*text-decoration: underline;*/
}

.item-list ul.pager li.pager-current {
  border-bottom: 2px solid;
  color: #069;
  font-weight: bold;
}

/**
 * 8.COMMENTS
 */
.comment {
  margin: 0;
  padding: 0;
}

.comment-bar {
  font-size: 1em;
  line-height: 1.5em;
  position: relative;
}

.comment span.submitted {
  color: #898989;
}

.comment span.new {
  color: red;
}

.comment-title {
  display: none;
}

.comment .picture {
  float: right;
  margin: 0 0 .5em .5em;
}

.comment ul.links {
  margin: 0 0 1.5em;
}

.comment ul.links li a {
 /* text-decoration: underline;*/
}

.indented {
  border-left: 1px solid #ddd;
  margin-left: 2em;
  padding-left: 1em;
}

/**
 * 9.BLOCKS
 */
.block {
  margin: 0 0 1.5em;
  position: relative;
}

/* login block */
#user-login-form {
  padding: 0 .5em;
  text-align: left;
}

#user-login-form .form-item {
  margin: 0;
}

#user-login-form .item-list ul li {
  background: none;
  padding: 0;
}

/* block configuration links */
div.block div.edit {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  display: none;
  font-size: 9px;
  padding: 2px 0 2px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 40;
}

div.block:hover div.edit {
  display:block;
}

div.block div.edit a {
  color: #999;
  margin-right: 10px;
}

div.block div.edit:hover a {
  color: #000;
}

/* views configuration links */
div.view {
  position: relative;
}

div.view div.views-hide-hover,
div.view:hover div.views-hide,
div.view div.views-admin-links,
div.view div.views-admin-links-hover,
div.view div.views-admin-links:hover {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 9px;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

div.view div.views-admin-links li a {
  color: #999;
}

/**
 * 10.FOOTER
 */
#footer {
	margin: 0;
	padding: 0;
	height:20px;
	position: relative;
	z-index: 1;
	top: -35px;
}

#footer a.feed-icon {
  position: absolute;
  right: 0;
  top: 1.416667em;
}

#footer_inside a:link{
    color:#0091d2;
}

/* support drupal */
#footer #block-system-0 {
  position: absolute;
  right: 25px;
  top: 1.5em;
}

/**
 * 11.CSS SUPPORT
 */
span.clear       { clear: both; display: block; font-size: 0; height: 1px; line-height: 0; margin-bottom: -1px; }
.clear           { clear: both; }
.clear-block     { display: block; }

.clearfix:after,
.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; overflow: hidden; }
.clearfix,
.container       {
}

.float-left      { float: left; }
.float-right     { float: right; }
.img-left        { float: left; margin: 1.5em 1.5em 1.5em 0; }
.img-right       {
	float: right;
	margin: 3.5em 1.5em 1.5em 1.5em;
}

.first           { margin-left: 0; padding-left: 0; }
.last            { margin-right: 0; padding-right: 0; }
.top             { margin-top: 0; padding-top: 0; }
.bottom          { margin-bottom: 0; padding-bottom: 0; }

.text-left       { text-align: left; }
.text-right      { text-align: right; }
.text-center     { text-align: center; }
.text-justify    { text-align: justify; }

.bold            { font-weight: bold; }
.italic          { font-style: italic; }
.underline       { border-bottom: 1px solid; }
.highlight       { background: #ffc; }
.quiet           { color: #666; }
.loud            { color: #000; }
.added           { background: #060; color: #fff; }
.removed         { background: #900; color: #fff; }
.small           { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large           { font-size: 1.2em; line-height: 1.25em; margin-bottom: 1.25em; }

.nopadding       { padding: 0; }
.noindent        { margin-left: 0; padding-left: 0; }
/*.nobullet        { background: none; list-style: none; list-style-image: none; }
*/
.wrap            { width: 950px; margin: 0 auto; }

.hide            { display: none; }

/**
 * 12.ADVANCED
 */
 
/* lists BELOW WAS COMMENTED OUT TO REMOVE BULLETS FOR BOTTOM NAV */
/*ol{margin:0 0 1.5em;padding:0;}
ol li{margin:0 0 0 1.5em;}
ul{margin:0 0 1.5em;padding:0;}
ul li{background:transparent url(http://www.thekennedycenteroshkosh.com/images/menu-leaf.gif) no-repeat 1px .4em;list-style-image:none;list-style-type:none;margin:0;padding:0 0 0 1.5em;}
li ol,li ul,ul ul,ol ol{margin:0;}
ul.menu,.item-list ul{margin:0 0 1.5em;padding:0;}
ul.menu ul,.item-list ul ul{margin:0;}
ul.menu li,.item-list ul li,li.leaf{background:transparent url(http://www.thekennedycenteroshkosh.com/images/menu-leaf.gif) no-repeat 1px .4em;list-style-image:none;list-style-type:none;margin:0;padding:0 0 0 1.5em;}
ul li.expanded{background:transparent url(http://www.thekennedycenteroshkosh.com/images/menu-expanded.gif) no-repeat 1px .35em;}
ul li.collapsed{background:transparent url(http://www.thekennedycenteroshkosh.com/images/menu-collapsed.gif) no-repeat 0 .35em;}
ul li.leaf a,ul li.expanded a,ul li.collapsed a{display:block;}
ul li.fake-leaf{font-size:1em;font-weight:bold;}
ul.inline li{background:none;margin:0;padding:0 1em 0 0;}
dl{margin:0 0 1.5em;}
dl dt{font-weight:bold;}
dl dd{margin-left:1.5em;}*/

/* forms & fieldsets */
input{
	color:#494949;
	font:1em Verdana, sans-serif;
	height: 20px;
}
textarea,select{color:#494949;font:1em Verdana, sans-serif;}
fieldset ul.clear-block li{background-image:none;margin:0;padding:0;}
fieldset{background:#fff;border:1px solid #ccc;margin:1em 0;padding:1em;}
fieldset legend{padding:0 0.5em;}
html.js fieldset.collapsed{background:transparent;padding-bottom:.6em;padding-top:0;}
html.js fieldset.collapsible legend a{background:url(http://www.thekennedycenteroshkosh.com/images/menu-expanded.gif) no-repeat 0 50%;}
html.js fieldset.collapsed legend a{background:url(http://www.thekennedycenteroshkosh.com/images/menu-collapsed.gif) no-repeat 0 50%;}
.form-checkboxes,.form-radios,.form-checkboxes .form-item,.form-radios .form-item{margin:.25em 0;}
.form-button,.form-submit{margin:1em .5em 1em 0;}
.confirmation .form-submit,.search-form .form-submit,.poll .form-submit,fieldset .form-button,fieldset .form-submit,.sidebar .form-button,.sidebar .form-submit,table .form-button,table .form-submit{margin:0 0 1.2em;}
#autocomplete li{cursor:pointer;margin:0;padding:2px;}
#autocomplete li.selected{background:#027ac6;color:#fff;}

/* admin tab links */
#tabs-wrapper{border-bottom:1px solid #ccc;margin:0 0 .75em;padding:0;}
ul.primary{border-bottom:5px solid #eee;margin:0;padding:.25em 0;}
ul.primary li{background:none;border-top:3px solid #ccc;margin:0 .5em 0 0;padding:.25em 0;}
ul.primary li.active{background:#eee;}
ul.primary li:hover{background:#f5f5f5;}
ul.secondary{background:#eee;border:none;margin:0;padding:.5em 1em;}
ul.secondary li{background:none;border:none;display:inline;line-height:2em;margin:0;padding:0 1em 0 0;}
ul.primary li a,ul.primary li.active a,ul.primary li a:hover,ul.primary li a:visited{background:none;border:0;margin:0;padding:0 1em;text-decoration:none;}
ul.secondary li a,ul.secondary li a:visited{background:none;border:0;margin:0;padding:0;text-decoration:none;}
ul.secondary li.active a,ul.secondary li a:hover{text-decoration:underline;}
ul.primary li.active a,ul.secondary li.active a{font-weight:bold;text-decoration:none;}

/* admin styling */
div.admin,div.admin .left,div.admin .right,div.admin-panel,div.admin-panel .body,div.admin .expert-link{margin:0;padding:0;}
div.admin .left{float:left;width:48%;}
div.admin .right{float:right;width:48%;}
div.admin-panel .description,.form-item .description{color:#666;font-size:0.9167em;line-height:1.636364em;margin:0 0 1.63636em;padding:0;}
div.admin-panel { }
body.admin dt{font-weight:normal;}
body.admin dd{color:#898989;font-size:.9167em;line-height:1.636364em;}
.more-help-link {font-size:.8333em;padding:0.2em 0 0.1em;}
.block-region {font-size:0.8333em;line-height:1.5em;margin:0;padding:0.15em 0.5em;}

/* tables */
#forum thead th {border-bottom:3px solid #ccc;}
#forum td.posts,#forum td.topics,#forum td.replies,#forum td.pager{text-align:left;}
#forum tr td.forum{background-position:4px 9px;}
.forum-topic-navigation{background:#eee;border:none;border-bottom:1px solid #ccc;margin-bottom:1em;padding:5px;}
body.admin table{margin:0 0 1.4em;width:100%;}
body.admin thead th{border-bottom:2px solid #ccc;font-weight:bold;padding:0 1em 0 0;}
body.admin tbody{border-top:none;}
body.admin td,body.admin th{padding:.3em .5em;vertical-align:middle;}
body.admin tr.even,body.admin tr.odd,body.admin tbody th{border:solid #ccc;border-width:1px 0;}
body.admin tr.odd td.active{background-color:#e9e9e9;}
body.admin tr.even td.active{background-color:#eee;}
body.admin tr.odd,body.admin tr.info{background-color:#eee;}
body.admin tr.even{background-color:#f5f5f5;}
body.admin tr.drag{background-color:#fffff0;}
body.admin tr.drag-previous{background-color:#ffd;}
body.admin td.region,body.admin td.module,body.admin td.container,body.admin td.category{background-color:#ddd;border-bottom:1px solid #ccc;border-top:1em solid #fff;color:#666;font-weight:bold;}
body.admin tr:first-child td.region,body.admin tr:first-child td.module,body.admin tr:first-child td.container,body.admin tr:first-child td.category{border-top-width:0;}
body.admin table.sticky-header{margin:0 0 0 1px;z-index:1;}
body.admin table.sticky-header th{padding-top:.5em;}
span.form-required{color:#ffae00;}

/* messages */
.messages{background-color:#fff;border:1px solid #b8d3e5;}
.messages,.preview,div.warning,div.error{margin:0 0 1.5em;padding:8px 1em;}
.messages ul{margin:0;}
.preview{background-color:#fcfce8;border:1px solid #e5e58f;}
.preview .node{background-color:#fcfce8;}
div.status{border-color:#c7f2c8;color:#33a333;}
div.error,tr.error{background-color:#fcc;color:#a30000;}
.form-item input.error,.form-item textarea.error{border:1px solid #c52020;color:#363636;}

/* status report */
table.system-status-report tr.error,table.system-status-report tr.error th{background-color:#fcc;border-color:#ebb;color:#200;}
table.system-status-report tr.warning,table.system-status-report tr.warning th{background-color:#ffd;border-color:#eeb;}
table.system-status-report tr.ok,table.system-status-report tr.ok th{background-color:#dfd;border-color:#beb;}
table.system-status-report th{padding-bottom:6px;padding-top:6px;}
table.system-status-report th,table.system-status-report tr.merge-up td{padding-left:30px;}

#main_home{
    margin-top:0px;
    padding:0px;
}
/*.home_wrapper{
    float: left;
    margin-top:0px; 
    width:800px;
    background:url(http://www.thekennedycenteroshkosh.com/images/mermaid.png);
    background-repeat:no-repeat;
}
*/
/*.left_side_text{
    float:left;
    font-face: 'MontagLite', 'Myriad Pro'; 
    color:#FFFFFF; 
    font-size:42px;
    
}*/
/*
.secondary_text{

    font-face: 'MontagLite', 'Myriad Pro'; 
    color:#FFFFFF; 
    font-size:22px;
}
 */
.HP_text{ 
    font-face: "Trebuchet MS",'MontagLite', 'Myriad Pro',; 
    color:#FFFFFF; 
    font-size:12px;
    letter-spacing: 1px;
}

.HP_text ul{
    padding-left:15px;
}


.third_text{ 
    font-face: 'MontagLite', 'Myriad Pro'; 
}


#move_text{
    /*padding-top:100px;*/  
}

#the_mystery{
	float: right;
	/*    background:url(http://www.thekennedycenteroshkosh.com/images/mermaidthin.png) center right;
*/    background-repeat:no-repeat;
	margin: 0px;
	padding:10px 0px 0px 0px;
	width: 100%;
	vertical-align:top;

}

#center_of_excellence{  
    float: right;
    background:url(images/center_of_excellence.png) center ;
    background-repeat:repeat-x;
    margin: 0px;
    padding:0px 0px 0px 0px;
    height:24px;
    width: 100%;
    vertical-align:top;

}

#menu{
	float: right;
	background-color:#006699;
	/*    background:url(images/center_of_excellence.png) center ;
    background-repeat:no-repeat;
*/    margin: 0px;
	padding:0px 0px 0px 0px;
	height:24px;
	width: 100%;
	vertical-align:top;
	z-index: 30;

}

.mermaid{
    float:left;
    width: 100%;    
    margin:10px 0px 0px 5px;
    padding:20px 0px 0px 0px;
}

#edit-action-subscribe, #edit-action-unsubscribe{
    visibility:hidden;
}

.bottom_text, .bottom_text a {
	font-size: 11px;
	text-align:center;
	color:#FFFFFF;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	margin-bottom: 0px;
	float: none;
	width: auto;
}

.bottom_text p{
	font-size: 18px;
	text-align:center;
	color:#D5FFFF;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	margin-bottom: 0px;
	float: none;
	width: auto;
}

.top_text p{
	font-size: 18px;
	text-align:right;
	color:#006699;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	margin-bottom: 0px;
	float: none;
	width: auto;
}


.bottom_nav{  /* NAV FOR BOTTOM OF PAGE */
    float: left;
    width: 100%;
    font-size: 1.10em;
    text-align:center;
    vertical-align: top;
    color:#FFFFFF;
    margin:0px 0px 0px 0px;
    padding:0px 0px 5px 0px;
}


.bottom_nav ul.primary-links li a:link, 
.bottom_nav ul.primary-links li a:visited, 
.bottom_nav ul.dynamic-persistent-menu-menu li a:link, 
.bottom_nav ul.dynamic-persistent-menu-menu li a:visited {
  display: inline-block;
  line-height: 1em;
  margin: 0 1em 0 1em;
  padding: 0;
}

.bottom_nav_inside, .bottom_nav_inside li a{
    color:#0091d2;
    text-align:center;
}

.bottom_nav_inside ul.primary-links li a:link, 
.bottom_nav_inside ul.primary-links li a:visited, 
.bottom_nav_inside ul.dynamic-persistent-menu-menu li a:link, 
.bottom_nav_inside ul.dynamic-persistent-menu-menu li a:visited {
  display: inline-block;
  line-height: 1em;
  margin: 0 1em 0 1em;
  padding: 0;
}

.bottom_text_inside{
    font-size: 11px;
    text-align:center;
    vertical-align: top;
    color:#999999;
    margin:0px 0px 0px 0px;
    padding:5px 0px 0px 0px;
}

#mail_form{  /* MAIL BOX IN FOOTER */
    float:right;
    margin-top:0px;
    margin-right:20px; 
    vertical-align: top;
}

#mail_input{  /* MAIL BOX IN FOOTER */
    float:left;
    margin-top:8px;
}

#mail_input form{
    width: 10px;
}


#email_text{  /* MAIL BOX IN FOOTER */
    float:left;
    color:#666;
    width: 215px;
    line-height: 1em;
}

#mail_but{  /* MAIL BOX IN FOOTER */
    margin-top:-5px;
    margin-left:102px;
}

.wrapper_img{ /* BODY BACKGROUND RIDE THE WAVE */
	width:100%;
/*	background-color: #003d86;
	background-image: url(images/bg.jpg);
*/	background-repeat: no-repeat;
	background-position: top center;
}

#inside_head{
    background-image: url(http://www.thekennedycenteroshkosh.com/images/backgroundInternal.jpg);
    background-repeat: no-repeat;
    width: 100%;
    margin: 0 auto; 
    padding-top: 20px; /* ADJUSTS THE SPACING ON THE TOP INSIDE PAGE */
}

#block-menu-secondary-links{  /*  THE LINKS FOR EDUCATE ON THE BOTTOM NAV */
    float: left;
    width: 150px;
    margin: 0px 0px 0px 0px;
    padding-left: 50px;
    height:100%;
}

#block-menu-menu-educate{  /*  THE LINKS FOR EDUCATE ON THE BOTTOM NAV */
    float: left;
    width: 150px;
    margin: 0px 0px 0px 0px;
    padding-left: 45px;
    height:100%;
}

#block-menu-menu-educate a{  /*  THE LINKS FOR EDUCATE ON THE BOTTOM NAV */
    color:#666;
}

#block-menu-menu-embrace{  /*  THE LINKS FOR EMBRACE ON THE BOTTOM NAV */
    float: left;
    width: 130px;
    margin: 0px 0px 0px 0px;
    padding-left: 80px;
    height:100%;
}

#block-menu-menu-embrace a{  /*  THE LINKS FOR EDUCATE ON THE BOTTOM NAV */
    color:#666;
}

#block-menu-menu-excite{   /* THE LINKS FOR EXCITE ON THE BOTTOM NAV */
    float: left;
    width: 130px;
    margin: 0px 0px 0px 0px;
    padding-left: 95px;
    height:100%;
    list-style: none;
}

#block-menu-menu-excite a{  /*  THE LINKS FOR EDUCATE ON THE BOTTOM NAV */
    color:#666;
}

.menu li a{
    margin:0px 0px 0px -15px;
    padding:0px;
    display: block;
}

.content ul.menu li{
    list-style:none;
}

.content ul{
    padding-left: 15px;
}

.content ul li{
font-size: .9167em;
color:#666;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
padding:0px 0px 0px 4px;

}

.Apple-style-span a {
    color:#0091d2;
}

div p{
	/*  letter-spacing: 0px;
    color:#CCC;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif
    color: #FFF;
    font-face: 'MontagLite', 'Myriad Pro'; 
*/  line-height: 1.5em;
	font: 12px "Trebuchet MS",Arial, Helvetica, sans-serif;
	text-align:left;
	/*  letter-spacing: +2px;
*/  font-size: 12px;
	padding-top: 0px;
	padding-left: 0px;
	/*	font-style: italic;
*/	color: #036;
/*	font-weight: bold;
*/}


#active-again {
	background-image:url(images/active_again.png);
	background-repeat:no-repeat;
	height:240px;
	width: 650px;
	position: relative;
	top: 24px;
	background-position: right top;
	z-index: 15;
}

#active-again p {
	/*  letter-spacing: 0px;
    color:#CCC;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif
    color: #FFF;
    font-face: 'MontagLite', 'Myriad Pro'; 
*/  line-height: normal;
	font: 12px "Trebuchet MS",Arial, Helvetica, sans-serif;
	text-align:left;
	/*  letter-spacing: +2px;
*/  font-size: 13px;
	padding-top: 140px;
	padding-left: 20px;
	font-style: italic;
	color: #036;
}

#woman {
	background-image:url(images/woman.png);
	background-position:left;
	background-repeat:no-repeat;
	float:right;
	height:463px;
	width:366px;
	position: relative;
	top: -220px;
	padding: 0;
	z-index: 0;
}

#slideshow {
/*	background-image:url(images/woman.png);
	background-position:left;
	background-repeat:no-repeat;
*/	float:right;
	height:463px;
	width:366px;
	position: relative;
/*	top: -220px;
	padding: 0;
*/	z-index: 0;
}

#world-class {
	background-image:url(images/world-class.png);
	background-repeat:no-repeat;
	width:630px;
	height:195px;
	margin-top: 0px;
	position: relative;
	z-index: 200;
	padding-left: 20px;
	margin-left: 20px;
}

	
#world-class h1 {
	font-size:2.5em;
	line-height:1em;
	padding-top:0.5em;
	padding-left:0px;
	color: #FFF;
	font-weight: bold;
}

#centers {
	background-image:url(images/centers.png);
	background-repeat:no-repeat;
	width:515px;
	height:130px;
	margin-top: 5px;
	position: relative;
	z-index: 200;
	padding-left: 20px;
	padding-top: 0px;
}

#seminars {
  background-image:url(images/seminar-banner.png);
  background-repeat:no-repeat;
  width:515px;
  height:130px;
  margin-top: 5px;
  position: relative;
  z-index: 200;
  padding-left: 20px;
  padding-top: 0px;
  *top:-445px;
}
	
#centers h1 {
	font-size:2.5em;
	line-height:1em;
	padding-top:0.5em;
	padding-left:0px;
	color: #FFF;
	font-weight: bold;
}


#doctors {
	background-image:url(images/doctors2.png);
	background-repeat:no-repeat;
/*	float:right;*/
	width:980px;
	height:162px;
	margin-top: 10px;
	margin-left: 20px;
	position: relative;
/*	z-index: 200;
	right:-365px;
	top: -131px;
	overflow: hidden;*/
	cursor: hand pointer;
}
	
#doctors h1 {
	font-size:2.5em;
	line-height:1em;
	padding-top:0.5em;
	padding-left:20px;
	color: #FFF;
	font-weight: bold;
	display: inline-block;
}
#doctors span {
	color:#003D86;
}
#docs {
	width: 940px;
	margin: 10px 20px;
	position: absolute;
	top: 46px;
	font-variant:normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#003D86;
	font-weight:bold;
	line-height: 18px;
	font-size:12px;
}

#docs td {
  background-repeat:no-repeat;
  background-position: center left;
  padding-left: 85px;
  height: 84px;
  width: 188px !important;
  vertical-align: middle;
}
#docs td a {
	text-decoration: none;
	color:#003D86;
}
.doc1 {
  background-image:url(images/Jeff_sm.png);
}

.doc2 {
  background-image:url(images/Davis_sm.png);
}

.doc3 {
  background-image:url(images/Kenneth_sm.png);
}

.doc4 {
  background-image:url(images/FornettiMedium.png);
}
.doc5 {
  background-image:url(images/Hausserman_sm.png);
}

ul.doctors-style li a:link, ul.doctors-style li a:visited {
  color: #003D86;
  outline: none;
  text-decoration: none;
}

ul.doctors-style li a:hover {
	color: #003D86;
	outline: none;/*  text-decoration: underline;*/
}

#content {
	float: left;
	padding-left: 25px;
	width: 700px; 
	background-color: #FFF;
	padding-right: 25px;
	padding-bottom: 20px;
	min-height: 200px;
	z-index: 2;
}

#content h1 {
	font-size:24px;
	line-height:1em;
	padding-top:0.5em;
	padding-left:0px;
	color: #069;
	font-weight: normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#content h2 {
}

#content h3 {
}

#content p {
	padding-top: 2px;
	padding-left: 0px;
	position: relative;
	top: 0px;
	padding-right: 20px;
	color:#000;
	padding-bottom: 10px;
}
#content-hip-knee {
	float: left;
	padding-left: 15px;
	width: 700px;
	background-color: #FFF;
	padding-right: 15px;
	padding-bottom: 20px;
	min-height: 200px;
	z-index: 2;
}

#content-hip-knee h1 {
	font-size:24px;
	line-height:1em;
	padding-top:0.5em;
	padding-left:0px;
	color: #069;
	font-weight: normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#content-hip-knee h2 {
}

#content-hip-knee h3 {
}

#content-hip-knee p {
	padding-top: 2px;
	padding-left: 0px;
	position: relative;
	top: 0px;
	padding-right: 5px;
	color:#000;
	padding-bottom: 11px;
}
#content-k {
	float: left;
	padding-left: 0px;
	width: 310px; 
	background-color: #FFF;
	padding-right: 0px;
	padding-bottom: 0px;
	min-height: 200px;
	z-index: 2;
}

#content-k h1 {
	font-size:24px;
	line-height:1em;
	padding-top:0.5em;
	padding-left:0px;
	color: #069;
	font-weight: normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#content-k h2 {
}

#content-k h3 {
}

#content-k p {
	padding-top: 2px;
	padding-left: 0px;
	position: relative;
	top: 0px;
	padding-right: 2px;
	color:#000;
	padding-bottom: 10px;
}

#content-j {
	background-image:url(images/Kennedy_HipKnee_ColorBoxes.jpg);
	background-position:right;
	background-repeat:no-repeat;
	float: right;
	padding-left: 2px;
	width: 331px; 
	background-color: #FFF;
	padding-right: 5px;
	padding-bottom: 0px;
	min-height: 200px;
	z-index: 2;
}

#content-j h1 {
	font-size:24px;
	line-height:1em;
	padding-top:0.5em;
	padding-left:0px;
	color: #069;
	font-weight: normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#content-j h2 {
}

#content-j h3 {
}

#content-j p {
	padding-top: 0px;
	padding-left: 12px;
	position: relative;
	top: 0px;
	padding-right: 1px;
	color:#000;
	padding-bottom: 0px;
}
#content-j li {
	padding-top: 0px;
	padding-left: 2px;
	position: relative;
	top: 0px;
	padding-right: 1px;
	padding-bottom: 0px;
}

ul.our-doctors-style,
ul.our-doctors-style ul {
	padding-left: 0px;
	margin-bottom: 0px;
	padding-right: 0px;
	left: 0px;
	width: 440px;
}

ul.our-doctors-style li {
	border: 0;
	/*	border-top: 0;
*/	float: left;
	font-variant:normal;
	color:#000;
	font-size:12px;
	/* Additional overrides to deal with Garland theme. */
  margin: 0;
	margin-left:0px;
	list-style: none;
	padding-left: 100px;
	background-repeat: no-repeat;
}

ul.our-doctors-style li.doc1 {
	background-image:url(images/Jeff_sm.png);
	background-repeat:no-repeat;
	display:block;
	padding-left: 100px;
	padding-top: 20px;
	padding-bottom: 40px;
	text-align: left;
	width: 400px;
	
}

ul.our-doctors-style li.doc2 {
	background-image:url(images/Davis_sm.png);
	background-repeat:no-repeat;
	display:block;
	padding-left: 100px;
	padding-top: 20px;
	padding-bottom: 40px;
	text-align: left;
	width: 400px;
	
}

ul.our-doctors-style li.doc3 {
	background-image:url(images/Darin_sm.png);
	background-repeat:no-repeat;
	display:block;
	padding-left: 100px;
	padding-top: 20px;
	padding-bottom: 40px;
	text-align: left;
	width: 400px;
	
}

ul.our-doctors-style li.doc4 {
  background-image:url(images/Kenneth_sm.png);
  background-repeat:no-repeat;
  display:block;
  padding-left: 100px;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: left;
  width: 400px;
  
}



ul.our-doctors-style li a:link, ul.our-doctors-style li a:visited {
	color: #069;
	outline: none;
	text-decoration: none;
}

ul.our-doctors-style li a:hover {
	color: #003D86;
	outline: none;/*  text-decoration: underline;*/
}


ul.insurance-style,
ul.insurance-style ul {
	padding-left: 20px;
	margin-bottom: 20px;
	padding-right: 0px;
	left: 0px;
	width: 500px;
	padding-bottom: 20px;
	padding-top: 5px;
}

ul.insurance-style li {
	border: 0;
	float: left;
	font-variant:normal;
	font-size:12px;
	margin: 0;
	margin-left:0px;
	width: 450px;
	padding-left: 5px;
}

.contact {
	width:400px;
	float:left;
}

ul.centers-style,
ul.centers-style ul {
	padding-left: 20px;
	margin-bottom: 20px;
	padding-right: 0px;
	left: 0px;
	width: 500px;
	padding-bottom: 10px;
	padding-top: 5px;
}

ul.centers-style li {
	border: 0;
	font-variant:normal;
	font-size:12px;
	margin: 0;
	margin-left:0px;
	width: 450px;
	padding-left: 5px;
}


#sidebar-right-hipknee {
	float: right;
	margin-left: 0px;
	width:210px;
	background-color: #B3D88C;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 30px;
}

#sm-callout {
	background-color: #B3D88C;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-right: 10px;
	margin-top: 0px;
	padding: 20px;
	width: 350px;
}

#lg-callout {
	background-color: #B3D88C;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-right: 0px;
	margin-top: 0px;
	padding: 20px;
	width: 660px;
}

#hp-callout{
	font-weight: bold;
	font-size: 14px;
	padding: 20px;
}

#ContentTitle {
	margin-top:50px;
	margin-bottom: 30px;
}

#video {
	position:relative;
	float:right;
}

/* slideshow + Preface top + Slideshow
-------------------------------------------------------------- */

/*#slideshow2-wrapper{
	width:100%;
	height:420px;
	position: relative;
	margin-top:250px;
}*/

/*#slideshow-wrapper{
width:100%;
background: transparent url(http://www.thekennedycenteroshkosh.com/images/slideshow-shadow.gif) no-repeat center bottom;
height:420px;
margin-bottom:-45px;
margin-top:14px;
}

.slideshow-inner{
width:950px;
margin:0 auto;
height:355px;
position:relative;
z-index:1;
}

#slideshow-preface {
float:left;
position:absolute;
text-align:left;
z-index:4;
}
*/
.slideshow2 {
width:370px;
height:355px;
position:relative;
/*float: right; */
z-index:2;
/*top:-220px; */
}
.slideshow2 IMG {
/*position:absolute; */
top:0;
left:0;
z-index:8;
background-color:transparent;
/*background:none !important;
filter:none !important;
*/}

.slideshow {
width:950px;
height:355px;
position:relative;
z-index:2;
top:-220px;
}

.slideshow IMG {
position:absolute;
top:0;
left:0;
z-index:8;
background-color:transparent;
/*background:none !important;
filter:none !important;
*/}

/*#preface {
padding: 20px;
font-size:1.2em;
color:#fff;
display:block;
float:left;
}

#preface a {
color:#fff;
text-decoration:underline;
}

#preface a:hover {
text-decoration:none;
}

#slideshow-bottom{
width:950px;
float:left;
background:url(http://www.thekennedycenteroshkosh.com/images/mission-bg.png) no-repeat center bottom;
min-height:65px;
position:absolute;
position:relative;
bottom:0;
left:0;
text-align:right;
z-index:3;
line-height:1.7em;
}
*/

	#slideshow li
	{
		float: left;
		position: absolute;
	}