/*
IKO Website
Page_Recipient.css
*/

#divContent {
	background: url("images/Recipient-Background-20x20.jpg") repeat top left;
}

#divBackground {
	width: 820px;
	height: 529px;
	margin: 0 auto;
	position: relative;
	top: 30px;
	text-align: center;
}

h2 {
	margin: 0;
	padding: 20px 0 0 0;
	font-size: 1.375em;
}

h3 {
	margin: 0;
	padding: 5px 0 0 0;
	font-size: 1.125em;
}

p {
	width: 700px;
	margin: 10px auto 0 auto;
}

/*
divTextContainer's purpose is to constrain the height of the text above divScrollContainer,
thus absolutely positioning the top of divScrollContainer within divContent,
thus allowing precisely located features in divContent's background image.
*/

#divRecipientName {
	height: 30px;
	width: 780px;
	margin: 20px auto 0 auto;
}

#divRecipientText {
	height: 130px;
	width: 780px;
	margin: 0 auto 0 auto;
	overflow: auto;
}

#divScrollContainer {
	position: relative;
	height: 300px;
	width: 780px;
	margin: 0 auto 0 auto;
}

/*
The ScrollNavBar isn't in use at the moment.
*/
.ulScrollNavBar {
	height: 60px;
	padding-top: 10px;
	list-style-type: none;
	text-align: center;
}

.ulScrollNavBar li {
	display: inline;
	margin: 0 20px;
	background-color: #EEE;
}

.ulScrollNavBar a {
	color: #933;
	font-weight: bolder;
	text-decoration: none;
}

.imgScrollPrev {
	position: absolute;
	left: 78px;
	top: 120px;
	cursor: pointer;
}

.imgScrollNext {
	position: absolute;
	left: 658px;
	top: 120px;
	cursor: pointer;
}

.divScroll {
	position: absolute;
	left: 138px;
	width: 500px;
	height: 300px;
	overflow: hidden;
}

/*
ulScrollPanels must be wide enough to accomodate all of the scrolling images
*/
.ulScrollPanels {
	list-style-type: none;
	width: 3000px;
	padding: 0;
}

.liScrollPanel {
	width: 500px;
	height: 300px;
	float: left;
}

/*
imgScroll centers an image within liScrollPanel.
The images should all be 280 pixels tall.
*/
.imgScroll {
	margin: 10px;
	text-align: center;
};

/*
Tabs aren't in use at the moment.
*/
#divTabContainer {
	height: 580px;
	width: 900px;
	margin: 0 auto 0 auto;
}

#ulTabs {
	width: 900px;
	height: 50px;

	background: url("images/Tab-Header-900x50.jpg") no-repeat top left;

	list-style-type: none;
  font-family: arial, sans-serif;
  font-size: 1.1em;
  font-weight: bold;
}

/*
Had to vertically pad the li instead of the container ul to prevent IE6 from mysteriously
adding 10px to the bottom of the ul when a li element was hovered ?!?
*/

#ulTabs li {
	float: left;
	text-align: center;
	padding: 15px 20px 5px 20px;
	width: 260px;
	height: 30px;
/*
	background-image: url("images/Beveled-Button-200x40.jpg");
	background-repeat: no-repeat;
	background-position: top left;
*/
}
	
#ulTabs li a {
	text-decoration: none;
	outline: none;

	color: #609463; 			/* IKO Gray Green */
}

/*
http://docs.jquery.com/UI/Tabs prescribes the following:
.ui-tabs .ui-tabs-hide { display: none; }

The UI tabs widget adds...
ui-tabs ui-widget ui-widget-content ui-corner-all to the container div
ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all to the ul
ui-state-default ui-corner-top to all li elements
ui-tabs-selected ui-state-active to selected li elements
ui-tabs-panel ui-widget-content ui-corner-bottom to the panel divs
ui-tabs-hide to unselected tab panels.

IE opacity filter fails on relatively positioned descendents unless the parent is
relatively positioned as well!
*/

.ui-tabs-hide {
		display: none;
}

#ulTabs li a:hover, #ulTabs li a:active {
	color: black;
	text-decoration: none;
}

#ulTabs li.ui-tabs-selected a {
	color: black;
}

.divTabPanel {
	width: 900px;
	height: 410px;
	margin: 0 auto 0 auto;
	padding: 20px 0 0 0;
}

#divScholar {
/*	background: url("images/Tab-Background-Left-900x593.jpg") no-repeat top left; */
}

#divSoldier {
/*	background: url("images/Tab-Background-Center-900x593.jpg") no-repeat top left; */
}

#divMaryland {
/*	background: url("images/Tab-Background-Right-900x593.jpg") no-repeat top left; */
}

.divTabPanelTop {
	height: 150px;
	text-align: center;
}

.divTabPanelBottom {
	position: relative;		/* To allow positioning of descendents */
	height: 360px;
}

.divTabPanelBottom {
	background-color: #b0b09b;
}


