/**
	overall.css 
	Global and overall header/footer styles.

**/

* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 80%;
	font-family: Tahoma,Arial,sans-serif;
	background: #DDDDDD;
}

a,a:link,a:visited,a:hover,a:active {	/* LVHA */
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #0066CC;
}

img {
	border: none;
	vertical-align: middle;
}

acronym {
	font-size: 100%;
}

select option {
	padding-right: 5px;
}

/* --- OVERALL HEADER ------------------------------------- */
#overall-container {
	/*width: 783px;*/
	background-color: #FFF;
	background: #FFF url(../img/background.jpg);
	margin: 0 auto;
}

#overall-header {
	text-align: center;
	background: url(../img/baseballglove2.gif) repeat; 
}

#overall-logo {
	text-align: center;
}

/* --- OVERALL MENU --------------------------------------- */
#overall-menu {
	width: 780px;
	margin: 1em auto;
}
#overall-menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	float: left;
	width: 100%;
}
#overall-menu ul li {
	display: inline;
}
#overall-menu ul li a {
	float: left;
	width: 128px;
	line-height: 16px;
	color: white;
	background: #008F00 url(../img/icons/baseball.png) no-repeat 4px 50%;
	margin: 1px;
	padding-left: 24px;
	font-weight: bold;
	text-align: left;
	font-size: 11px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	border-style: solid;
	border-width: 1px;
	border-color: #BFFFBF #598059 #598059 #BFFFBF;
}
#overall-menu .testdjs {
	float: left;
	width: 128px;
	line-height: 16px;
	color: white;
	background: #FFFFFF url(../img/icons/baseball.png) no-repeat 4px 50%;
	margin: 1px;
	padding-left: 24px;
	font-weight: bold;
	text-align: left;
	font-size: 11px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	border-style: solid;
	border-width: 1px;
	border-color: #BFFFBF #598059 #598059 #BFFFBF;
}
#overall-menu a:hover {
	color: #BFFFBF;
	background-color: #408040;
	position: relative;
	top: 1px;
	left: 1px;
}

#overall-menu .loggedin-only {
	font-style: italic;
	color: #FFCCCC;
}
/* --- OVERALL FOOTER ------------------------------------- */
#overall-footer {
	margin-top: 1em;
	background-color: #BFEAFF;
	color: #666;
	font-size: 9px;
	font-family: Verdana;
/*
	height: 41px;
	overflow: hidden;
	position: relative;
*/
	clear: left;
	text-align: center;
}
#footer-middle {
	margin-top: 5px;
}

/* --- OVERALL LOGIN POPUP --------------------------------------------- */
#login-popup {
	position: absolute;
	width: 230px;
	height: 103px;
	background: transparent url(../img/popup-login.gif) no-repeat;
	overflow: hidden;
	z-index: 65535;
}
#login-popup #login-inner,
#search-popup #search-inner
{
	margin: 33px 10px 0 10px;
	font-size: 8pt;
}
#login-popup input.field {
	margin: 0 0.2em 0 0.2em;
}
#login-inner p {
	margin-bottom: 0.2em;
}
#login-inner p label {
	float: left;
	width: 60px;
	text-align: right;
}
#login-inner button, 
#search-inner button {
	vertical-align: bottom;
	border: none;
	background: transparent;
	cursor: pointer;
}
#login-reg {
	position: absolute;
	right: 10px;
	top: 13px;
}
#login-reg a {
	text-decoration: underline;
}
#login-options {
	font-size: 8pt;
}
#login-popup input.field {
	border: 1px solid gray;
	width: 100px;
}
#login-options a {
	position: absolute;
	right: 0px !important;		/* FF */
	right: 10px;			/* IE */
	top: 3px !important;		/* FF */
	top: 6px;			/* IE */
	text-decoration: underline;
}

#loggedin-popup {
	position: absolute;
	padding: 2em;
	text-align: left;
	background: #9BB39B;
	color: #F4FFDE;
	border: 1px solid black;
	width: 300px;
	font-size: 110%;
}

/* --- OVERALL SEARCH POPUP --------------------------------------------- */
/* some styles are included in the LOGIN styles above */
#search-popup {
	position: absolute;
	width: 230px;
	height: 60px;
	background: url(../img/popup-search.gif) no-repeat;
	z-index: 65535;
}
#search-popup input.field {
	background: white url(../img/search-input-icon.png) no-repeat 0 50%;
	border: 1px solid gray;
	width: 155px;
	padding-left: 17px;
}
input.search { /* generic search class */
	background: white url(../img/search-input-icon.png) no-repeat 0 50%;
	padding-left: 17px;
	border: 1px solid gray;
	width: 125px;
}

.clear { clear: both; }
