#slideout {
			position: fixed;
			top: 225px;
			left: 0;
			width: 0px;
			padding: 0px;
			text-align: center;
			background: #6DAD53;
			-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;
			 z-index: 1000;
		}
		
#slideout_inner {
			position: fixed;
			top: 225px;
			left: -250px;
			background: #6DAD53;
			width: 200px;
			padding: 25px;
			height: 335px;
			-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;
			 background: url("images/slider_bg.png") repeat scroll 0 0 transparent;
			 z-index: 999;
		}
		
#slideout_inner textarea {
			width: 190px;
			height: 100px;
			margin-bottom: 6px;
		}
		
#slideout:hover {
			left: 250px;
		}
		
#slideout:hover #slideout_inner {
			left: 0;
		}
		
	