/* SLIDING PANEL STYLES */

#slide-panel {
position:absolute;
z-index:50;
margin-left: 200px;
margin-top:12px;
	height: 80px; /*HEIGHT OF HIDDEN SLIDE PANEL*/
	width: 550px; /*WIDTH OF HIDDEN SLIDE PANEL*/
	display: none; /*THE ELEMENT WILL NOT BE DISPLAYED*/
	border-right-width: 2px; /*ADDS RIGHT BORDER OF 2PX*/
	border-left-width: 2px; /*ADDS LEFT BORDER OF 2PK*/
	border-right-style: solid; /*MAKES RIGHT BORDER SOLID*/
	border-left-style: solid; /*MAKES LEFT BORDER SOLID*/
	border-right-color: #626262; /*RIGHT BORDER COLOR*/
	border-left-color: #626262; /*LEFT BORDER COLOR*/
	background-color: #AAAAAA; /*SLIDE PANEL BACKGROUND COLOR*/
	border-bottom-width: 2px; /*ADDS BOTTOM BORDER OF 2PX*/
	border-bottom-style: solid; /*MAKES BOTTOM BORDER SOLID*/
	border-bottom-color: #626262; /*BOTTOM BORDER COLOR*/
	opacity: .8; /*SETS SLIDE PANEL BACKGROUND'S OPACITY TO 80%*/
}

.slide {
position:absolute;
z-index:50;
margin-left: 370px;
	padding: 0; /*NO PADDING*/
}

#topBar {
visibility:hidden;
}

.btn-slide {
position:absolute;
margin-top:12px;
	background-image: url(images/topBarBG.png); /*ADDS OUR BUTTON IMAGE*/
	background-repeat: no-repeat; /*STOPS BUTTON FROM REPEATING*/
	background-position: center top; /*SETS BUTTON POSITION*/
	text-align: center; /*ALIGNS TEXT CENTER*/
	width: 191px; /*BUTTON WIDTH*/
	height: 31px; /*BUTTON HEIGHT*/
	display: block; /*DISPLAY AS A BLOCK*/
	color: #000000; /*TEXT COLOR*/
	text-decoration: none; /*REMOVES UNDERSCORE FROM LINK*/
	font-family: Arial, Helvetica, sans-serif; /*FONT FAMILY*/
	font-weight: bold; /*TURNS TEXT BOLD*/
	font-size: 1em; /*FONT SIZE*/
	margin-right: auto; /*MARGIN AUTO*/
	margin-left: auto; /*MARGIN AUTO*/
	line-height: 22px; /*LINE HEIGHT OF BUTTON TEXT*/
}