/* general styling */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* -webkit-box-sizing: border-box; */
	-moz-box-sizing: border-box;
	/* -webkit-font-smoothing: antialiased; */
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
.wrap{
	width: 720px;
	margin: 15px auto;
	padding: 15px 20px;
	background: white;
  -moz-box-shadow:    3px 3px 5px 6px #ccc;
  -webkit-box-shadow: 1px 1px 2px 1px #9B9B9B;
   box-shadow:0px 1px 3px 1px #4F4F4F;
}

a{ text-decoration: none; color: #333}
h1{
	font-family: 'Francois One', sans-serif;
	font-size: 38px;
	color:#1B668C;
	text-align: center;
	margin: 25px 0;
}
h2{  
font-family: 'Francois One', sans-serif;
	font-size: 20px; margin: 8px 0
	}
h3{
	font-size: 12px;
	color: #205C96;
	margin: 5px 0;
}
h3 span{
	font-weight: normal;
	font-size: 1em;
}
.item{
	clear: both;
	margin:0;
	padding: 10px;
	overflow: hidden;
	border-top: 1px solid #DBDBDB;
}
.item:last-child{border-bottom:1px solid #DBDBDB}
.item:hover{background: #f9f9f9}
.post{
	padding: 10px 0;
	border-bottom: 1px solid #E6E6E6;
}
.comment-block{
}
.comment-item{
	overflow: hidden;
	clear: both;
	border: 1px dashed #E6E8ED;
	border-radius: 2px;
	margin: 5px;
}
.comment-avatar{
	width: 60px;
	float: left;
}
.comment-avatar img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
.comment-post{
	padding: 0 5px 0 10px;
	margin-left:60px;
}
#form{
	clear: both;
	margin: 10px;
	margin-top:-50px;

}

/* form styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    height: 2em;
    width: 70%;
    padding: 0px;
	margin-left:80px;
    transition: all 0.5s ease;
	border:none;
}

textarea:focus {
    height: 5em;
}
input[type="submit"] {
	cursor:pointer;
	width:664px;
	border:none;
	background: #3693CB;
	background-image:linear-gradient(bottom, #8C1C50 0%, #991D57 52%);
	background-image:-moz-linear-gradient(bottom, #8C1C50 0%, #991D57 52%);
	background-image: -webkit-linear-gradient(bottom, #50A1E5 0%, #39AAE5 52%);
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	border-radius:5px;
}
input[type="submit"]:hover {
	background-image:linear-gradient(bottom, #9C215A 0%, #A82767 52%);
	background-image:-moz-linear-gradient(bottom, #9C215A 0%, #A82767 52%);
	background-image: -webkit-linear-gradient(bottom, #50A1E5 0%, #50A1E5 52%);
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}
input[type="submit"]:active {
	box-shadow:inset 0 1px 3px rgba(0,0,0,0.5);
}
input:focus,
textarea:focus {
	outline:0;
	border:1px solid #999;
}
label{
	display: block;
	margin: 5px 0;
	font-weight: 900;
	cursor: pointer;
}

.alert{
	display: none;
	padding: 8px 35px 8px 14px;
	margin: 20px 0;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #468847;
	background-color: #dff0d8;
	border-color: #d6e9c6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}