﻿@import url('css/reset.css');

/* General Demo Style */

a{
	color: #fff;
	text-decoration: none;
}
.clr{
	clear: both;
}

h1{
  	font-family: 'Cherry Swash', 'Helvetica Neue', Arial, sans-serif;
	font-size: 40px;
	position:relative;
	font-weight: 400;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.2);
    padding: 18px 30px 0px 30px;
	margin: 0px 40px 20px 0px;
    text-align: center;
	color: white;
}

h1 span{

}

.content{
	width: 90%;
	padding: 0px;
	margin: 0 auto;
}

.content p{
	text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	padding: 10px;
}

.content p a{
	color:#fff;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.6);	
}

.content p a:hover{
	color:aqua;
}

/* Header Style */
.header{
	font-family:'Arial Narrow', Arial, sans-serif;
	line-height: 24px;
	font-size: 11px;
	background: #000;
	opacity: 0.9;
	text-transform: uppercase;
	z-index: 9999;
	position: relative;
	-moz-box-shadow: 1px 0px 2px #000;
	-webkit-box-shadow: 1px 0px 2px #000;
	box-shadow: 1px 0px 2px #000;
}

.header a{
	padding: 0px 10px;
	letter-spacing: 1px;
	color: #ddd;
	display: block;
	float: left;
}

.header a:hover{
	color: #fff;
}

.header span.right{
	float: right;
}

.header span.right a{
	float: none;
	display: inline;
}

		#slideout {
			position: fixed;
			top: 80px;
			left: 0;
			width: 35px;
			padding: 12px 0;
			text-align: center;
			/* background: #6DAD53; */
			background-color:orange;
			-webkit-transition-duration: 0.3s;
			-moz-transition-duration: 0.3s;
			-o-transition-duration: 0.3s;
			transition-duration: 0.3s;
			-webkit-border-radius: 0 5px 5px 0;
			-moz-border-radius: 0 5px 5px 0;
			border-radius: 0 5px 5px 0;
		}
		#slideout_inner {
			position: fixed;
			top: 80px;
			left: -250px;
			/* background: #6DAD53; */
			background-color:orange;
			width: 200px;
			padding: 25px;
			height: 285px;
			-webkit-transition-duration: 0.3s;
			-moz-transition-duration: 0.3s;
			-o-transition-duration: 0.3s;
			transition-duration: 0.3s;
			text-align: left;
			-webkit-border-radius: 0 0 5px 0;
			-moz-border-radius: 0 0 5px 0;
			border-radius: 0 0 5px 0;
		}
		#slideout_inner textarea {
			width: 190px;
			height: 100px;
			margin-bottom: 6px;
		}
		#slideout:hover {
			left: 250px;
		}
		#slideout:hover #slideout_inner {
			left: 0;
		}
		