#toolbar{
	display: block;
	width: 100%;
	position: fixed;
	bottom: 0px;
	visibility: hidden;
	z-index: 1000;
}

#toolbar p{
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	text-transform: uppercase;
}

#toolbar a.open{
	height: 50px;
	line-height: 50px;
	width: 315px;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
	color: #ffffff;
	background-image: url(../img/toolbar_open_button.png);
	background-repeat: no-repeat;
	background-position: 280px;
	display: block;
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #ffffff;
	text-decoration: none;
}

#toolbar a.open.opened{
	background-image: url(../img/toolbar_close_button.png);
}

#toolbar a.open span{
	padding: 0px 0px 0px 20px;
}

#toolbar_outer{
	width: 100%;
	max-height: 515px;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
	color: #ffffff;
}

#toolbar_inner{
	padding: 20px;
}

#toolbar_inner2{
	display: inline-block;
	width: 100%;
}

.website_holder{
	float: left;
	display: block;
	width: 24.25%;
	margin: 0px 1% 0px 0px;
}

.website_holder:last-child{
	margin: 0px;
}

.website_holder h4{
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 22px;
	color: #ffffff;
	margin: 10px 0px 0px 0px;
}

.website_holder img{
	max-width: 100%;
	height: auto;
}

.toolbar_image{
	display: inline-block;
	position: relative;
	margin: 0px 0px 0px 0px;
	width: 100%;
}

.toolbar_image img{
	display: block;
	position: relative;
	z-index: 10;
}

.toolbar_image .shader{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0px;
	left: 0px;
	z-index: 20;
}

.toolbar_image .text{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0px;
	left: 0px;
	z-index: 30;
	color: #ffffff;
	text-align: center;
}

.toolbar_image table{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0px;
	left: 0px;
}

.toolbar_image table td{
	padding: 0px;
	background: none !important;
}

.toolbar_image .caption{
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	font-size: 19px;
	opacity: 1;
	filter: alpha(opacity = 100);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

.toolbar_image .desc{
	margin: 0px 10px;
	font-size: 15px;
	opacity: 0;
	filter: alpha(opacity = 0);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-webkit-backface-visibility:hidden;
}

.toolbar_image:hover .shader{
	background-image: url('../img/shader2.png');
	background-position: 0px 0px;
	background-repeat: repeat;	
}

.toolbar_image .text:hover .caption{
	opacity: 0;
	filter: alpha(opacity = 0);
}

.toolbar_image .text:hover .desc{
	opacity: 1;
	filter: alpha(opacity = 100);
}