	/* MAIN BODY STYLES */
	 
* {
	    margin: 0px; /*NO MARGIN/*
	    padding: 0px; /*NO PADDING*/
	}
	 



	/* SLIDING PANEL STYLES */
	 
#slide-panel {
	    height: 420px; /*HEIGHT OF HIDDEN SLIDE PANEL*/
	    width: auto; /*WIDTH OF HIDDEN SLIDE PANEL*/
	    display: none; /*THE ELEMENT WILL NOT BE DISPLAYED*/
	    border-right-width: 0px; /*ADDS RIGHT BORDER OF 2PX*/
	    border-left-width: 0px; /*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:url(images/menu-back.png) left bottom repeat-x #e4e6da; /*SLIDE PANEL BACKGROUND COLOR*/
	    border-bottom-width: 0px; /*ADDS BOTTOM BORDER OF 2PX*/
	    border-bottom-style: solid; /*MAKES BOTTOM BORDER SOLID*/
	    border-bottom-color: #626262; /*BOTTOM BORDER COLOR*/
	    opacity: 100; /*SETS SLIDE PANEL BACKGROUND'S OPACITY TO 80%*/
	    margin: auto; /*CENTERS OUR SLIDE PANEL*/
		padding-top:20px;
	}
	 
	.slide {
		margin-top:60px;
		float:right;
	    margin-left: 0px; /*NO MARGIN*/
	    padding: 7px 5px 7px 5px; /*NO PADDING*/
		width:80px;
		background:#bac078;
		height:auto;
	     /*ADDS OUR BUTTON IMAGE*/
	    background-repeat: no-repeat; /*STOPS BUTTON FROM REPEATING*/
	    background-position: left top; /*SETS BUTTON POSITION*/
		-moz-border-radius-topleft:5px;
		-moz-border-radius-topright:5px;
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	}
	 

	 
	.btn-slide {
	    text-align: center; /*ALIGNS TEXT CENTER*/
	    width: inherit; /*BUTTON WIDTH*/
	    height: auto; /*BUTTON HEIGHT*/
	    display: block; /*DISPLAY AS A BLOCK*/
		background:transparent;
	    color: #333; /*TEXT COLOR*/
	    text-decoration: none; /*REMOVES UNDERSCORE FROM LINK*/
	    font-family:Verdana, Geneva, sans-serif; /*FONT FAMILY*/
	    font-size: 10px; /*FONT SIZE*/
		text-shadow: 0px 1px 0px #6b714f;
	    margin-right: 100px; /*MARGIN AUTO*/
	    margin-left: 0px; /*MARGIN AUTO*/
	    
	}
		
		
		
		
		.slide2 {
		margin-top:0px;
	    margin-left: 0px; /*NO MARGIN*/
	    padding: 5px; /*NO PADDING*/
		width:25px;
		background:transparent;
		height:auto;
	     /*ADDS OUR BUTTON IMAGE*/
	    background-repeat: no-repeat; /*STOPS BUTTON FROM REPEATING*/
	    background-position: left top; /*SETS BUTTON POSITION*/
	}
	 
	.btn-slide2 {
	    text-align: center; /*ALIGNS TEXT CENTER*/
	    width: inherit; /*BUTTON WIDTH*/
	    height: auto; /*BUTTON HEIGHT*/
	    display: block; /*DISPLAY AS A BLOCK*/
		background:transparent;
	    color: #333; /*TEXT COLOR*/
		text-shadow: #FFF 0px 1px 0px;
	    text-decoration: none; /*REMOVES UNDERSCORE FROM LINK*/
	    font-family: Georgia, "Times New Roman", Times, serif; /*FONT FAMILY*/
	    font-size: 1em; /*FONT SIZE*/
	    margin-right: 100px; /*MARGIN AUTO*/
	    margin-left: 0px; /*MARGIN AUTO*/
	    line-height: 22px; /*LINE HEIGHT OF BUTTON TEXT*/
		}
		
