/* Tutorial			: How to create an interactive map using jQuery & Coffeescript
*  Author 			: Zech (@zechtz)
*  Prepared for 	: Martians Blog
*  Author URL		: http://dstl.co.tz
*/

/*===========================================
	body and some other stuff
============================================*/
a{
	color: #ccc;
	text-decoration: none;
}


img{
	max-width: 100%; /* responsive image, doesn't work for the ugly ie browser */
}

/*===========================================
	wraps the map and centers it
============================================*/
#wrapper{
	margin: 80px auto;
}
/*==========================================
	contains the map
============================================*/
#map_container{
	background: url(../_images/world_map.png) 0px 0px no-repeat;
	height: 415px;
	width: 960px;
	position: relative;
	color: #fff;
	margin: 0px 0px 0px 0px;
}

/*===========================================
	our markers (posiotion must be absolute)
===========================================*/
a.marker{
	position: absolute;
	background: url('../_images/markers_2.png') 0% 0% no-repeat;
	height: 32px;
	width: 20px;
	display: block;
	cursor:pointer;
}

a.marker:hover{
	background: url('../_images/markers_2.png') 0% 50% no-repeat;
}

a.current{
	background: url('../_images/markers_2.png') 0 100% no-repeat;
}

.back{
	text-align: center;
}
/*===========================================
	info box
===========================================*/

.info_box {
	display: none;
	position: absolute; /* important because we need to dynamically position*/
	width: 240px;
	height: 160px;
	overflow: hidden;
	padding:5px;
	padding-left:15px;
    background: rgb(238,238,238); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2NjY2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(204,204,204,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-8 */

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #999;
	color:#000;
}

.info_box h2{
	/*color: #515a6b;*/
	font-weight:bold;
	font-size:22px;
	color:#000;
	text-transform:uppercase;
}

.info{
	display: none;
}

