@charset "utf-8";
/* CSS Document */
/*
maincontainer
	contentwrapper
		| * this file
		map-wrapper
			mapleftcolumn
					toolbar
					sidebar
							weather_widget
					alert
			mapcolumn
					map
footer
*/

#map-wrapper {
	position: relative;
	height: 100%;
}

#mapleftcolumn	{
	position: relative;
	display: block;
	float: left;
	width: 320px;	 /* Width of left column */
	margin-left: -10px;	 /* Set left margin to -(MainContainerWidth) */
	margin-top: 10px;
	clear: none;
	text-align: left;
	z-index: 3;
}

#mapcolumn	{
	position: relative;
	margin-left: 320px;		 /* Set left margin to LeftColumnWidth */
	/*	margin: 0 20px 0 26%; 	*/	
	/* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. 	*/
	clear: none;
	z-index: 1;
}
#map	{
	position: relative;
	border: 5px solid #51621b;
	margin-top: 5px;
	width: 620px;
	height: 450px;
	clear: none;
	z-index: 2;
/*
 width: 100%;
 height: 100%;
*/
}
#map_help	{
	position: relative;
	float: right;
	margin: 5px 250px 5px 0px;
	text-align: justify;
}

#toolbar {
	position: relative;
	top: 0px;
	left: 0px;
	width: 300px;
	padding: 5px;
	clear: none;
	z-index: 5;
}

#toolbar ul{
	margin: 0;
	margin-left: 0px;
    padding-left: 0px;
}
#toolbar ul li{
	list-style: none;
	margin-left: 0px;
}
#sidebar {
	position: relative;
	float: left;
	top: 0px;
	width: 300px;
	padding: 5px;
	height: 100%;
	/* overflow: visible; */
	clear: none;
	z-index: 4;

}

/* CSS styles for use with example.php bundled with the PHPWeatherLib library v1.1 PHPWeatherLib Homepage: http://www.ebrueggeman.com/phpweatherlib  */
#weather_widget {
	margin-top: 20px;
	padding-left: 2px;
	padding-right: 2px;
	width: 300px;
}
#weather_widget .white{
	color: #d89c53;
}
#weather_widget p.right{
	text-align:: left;
	float: left;
	clear: none;
}
#weather_widget p.left{
	text-align:: left;
	float: left;
	clear: none;
}
#greer_days_info	{
	background-color: #F7FCDA;
	position: relative;
	clear: none;
	float: none;
/*	height: 500px; */
	width: 300px; 
	border: thin inset #336600;
	z-index: 8;
	margin-top: 0px; /* map height */
	overflow: visible;
}
.close {
	display: block;
	width: 300px;
	border-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: inset;
	border-left-style: none;
	border-color: #000;
	text-align: center;
}


body.sidebar-right #map-wrapper { margin-right: 300px; }
body.sidebar-right #sidebar { right: 0; }
body.sidebar-right a#button-sidebar-show { display: none; }

body.sidebar-off #map-wrapper { margin: 0; }
body.sidebar-off #sidebar { display: none; }
body.sidebar-off a#button-sidebar-hide { display: none; }

#alert {
	position: relative;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	display: none;
}
#alert p {
	width: 150px;
	margin: 0 auto 0 auto;
	padding: 10px;
	background: white;
	border: 1px solid #FF0000;
}
body.loading #alert { display: block; }
