/* ---------->>> bottom navigation styles: <<<--------------------------------------------------------------------*/
/* ------------  the following styles govern the position/style of elements in the bottom navigation area, -------*/
/* ------------  including news links, bottom navigation and footer area -----------------------------------------*/

/* bottomContent contains entire bottom area of page (not including footer) */
#bottomContent {
	position:relative;
	top:-1px;
	left:0px;
	padding:25px 0;
	overflow:visible;
	height:auto;
	/*margin-bottom:125px;*/				/* build in some bottom-margin to equal height of the footer */
	background-color: #003664;
	border:0px #333333 dashed;
}

/* positions the "title" row of content */
.contentRowHeader {
	position:relative;
	width:900px;
	height:auto;
	overflow:hidden;
	margin-bottom:10px;
	border:0px #cccccc solid;
}

/* contains rows of teaser content */
.contentRow {
	position:relative;
	width:900px;
	height:auto;
	overflow:hidden;
	border:0px #cccccc solid;
}

#seal 	{
	background-repeat: no-repeat;
	background-position: center bottom;
}

/* contains first row of teaser content */
/* #contentRow1 {
	position:relative;
	width:900px;
	height:auto;
	overflow:hidden;
	border:0px #cccccc solid;
} */

/* contains second row of teaser content */
/* #contentRow2 {
	position:relative;
	width:900px;
	height:auto;
	overflow:hidden;
	border:0px #cccccc solid;
}
*/

/* styles for second row of teaser content (event calendar, browse jhu and on the web teasers) */
.secondRowText {
	position:relative;
	float:left;
	width:auto;
	padding-top:10px;
	color: #63a0d1;
	font-weight:normal;
	font-size:14px;
}

.secondRowThumbImg {
	position:relative;
	float:left;
	overflow:hidden;
	height:32px;  	/* make sure photo takes up entire height of news column so text doesn't wrap around it */
	margin-left:10px;
}

/* contains third row of teaser content (bottom navigation links) */
/* #contentRow3 {
	position:relative;
	width:900px;
	height:auto;
	overflow:hidden;
	background-image: url(../graphics/seal.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	border:0px #cccccc solid;
} */


/* styles for "more" links */
.moreNews {
	text-align: right;
	font-size: 11px;
	color: #63A0D1;
}

.moreNews a {
	font-size: 11px;
	text-decoration:underline;
	margin-left:5px;
}

.moreNews a:link, .moreNews a:visited {
	color: #63a0d1;
}

.moreNews a:hover, .moreNews a:active {
	color: #FFFFFF;
}

/* dictates the width and float for all all teaser and navigation columns (for 3+ horizontal columns) */
/* (this style is also present in top-nav_layout.css) */
.columnTempRemove {
	position:relative;
	float:left;
	height:auto;
	width:auto;
	overflow:visible;
	padding-bottom:5px; /* ie cuts off bottom of text in really short containers - add padding to prevent */
	margin-right:20px; 	/* ie doesn't calculate padding the same as firefox, so use margin here instead */
	border:0px #ffffff dashed;
}

ul.bottomNavLinks {
	position:relative;  	/* position:relative needed for ie 6 peakaboo bug */
	top:0px;
	height:auto;			/* do we need this here ?*/
	margin:0;
	padding:0px 5px 0px 0px;
	text-indent:0px;
	border:0px solid #cccccc;
}

ul.bottomNavLinks li {
	position:relative; 		/* position:relative; needed for ie 6 peakaboo bug */
	margin-left:0px;
	text-indent:15px;
	padding-bottom:4px;
	list-style-type: none;
	border:0px dashed #ffffff;
}

ul.bottomNavLinks li.header {
	position:relative; 		/* position:relative; needed for ie 6 peakaboo bug */
	text-indent:0px;
	margin-left:15px;
	padding-bottom:12px;
	list-style-type:square;
}

ul.bottomNavLinks li.header a  {
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
}

ul.bottomNavLinks li.header a:link, ul.bottomNavLinks li.header a:visited  {
	color: #B2CDE3;
}

ul.bottomNavLinks li.header a:hover, ul.bottomNavLinks li.header a:active {
	color: #ffffff;
}

ul.bottomNavLinks li a {
	text-decoration: none;
	font-size: 11px;
	font-weight:normal;
}

ul.bottomNavLinks li a:link, ul.bottomNavLinks li a:visited  {
	color: #B2CDE3;
}

ul.bottomNavLinks li a:hover, ul.bottomNavLinks li a:active {
	color: #ffffff;
}

ul.horizontalGroup {
	position:relative; 	/* position:relative; needed for ie 6 peakaboo bug */
	top:0px;
	overflow:hidden;
	height:auto;
	margin:0;
	padding:0;
	list-style-type: none;
	text-indent:0px;
	border:0px solid #cccccc;
}

ul.horizontalGroup li {
	position:relative; 	/* position:relative; needed for ie 6 peakaboo bug */
	float:left;
	height:auto;
	width:auto;
	margin:0;
	margin:0;
	padding:0;
	padding-right:0px;
	list-style-type: none;
	border:0px dashed #ffffff;
}

.clearFloats {
  clear:both;
}

/* make sure to build in enough margin-bottom in the #bottomContent div (or bottom padding in bodyText div)
to space this footer out; otherwise, on long pages, the footer might overlap the text */
#footer {
	/*position:absolute; /* positioning this as relative causes layout to shift offscreen in Safari */
	bottom:0px;
	width:900px; 		/* why not 100% width? */
	height:125px;
	margin:0px 50px 0px 50px;
	border:0px solid #8d8d8d;*/
}

#footerLeft {
	top:0px;
	float:left;
	width:225px;
	padding:0px 25px 0px 0px;
	border:0px #ffffff dashed;
}

#footerRight {
	top:0px;
	float:right;
	padding:0px 2px 0px 0px;
	border:0px #ffffff solid;
}

.footerText {
	color: #4984B4;
	text-align:left;
	font-size:11px;
	line-height:14px;
}

.footerText a {
	font-size:11px;
	text-decoration: none;
}

.footerText a:link, .footerText a:visited {
	color: #4984B4;
}

.footerText a:hover, .footerText a:active {
	color: #FFFFFF;
}

/* contains and styles the dotted horizontal rule */
div.ruleFooter hr {
	/* take out the hr element; its top/bottom margin properties are completely
	different in ff and ie. (it will display for non-css browsers.) */
	display:none;
}

/* (this div wraps around and replaces the hr) */
div.ruleFooter {
	color: #003664;
	background-color: #003664;
	background-image: url(../graphics/sep.gif);
	background-repeat: repeat-x;
	width:900px;
	height:3px;
	margin:20px 0px 20px 0px;
}


ul.bottomNavLinks li {
	position:relative; 		/* position:relative; needed for ie
6 peakaboo bug */
	margin-left:0px;
	text-indent:15px;
	padding-bottom:4px;
	list-style-type: none;
	color: #B2CDE3;
}

ul.bottomNavLinks li.header {
	position:relative; 		/* position:relative; needed for ie
6 peakaboo bug */
	text-indent:0px;
	margin-left:15px;
	padding-bottom:12px;
	list-style-type:square;
	color: #B2CDE3;
}
