.col-left{
	float:left;
	width:48%;
}
.col-right{
	float:right;
	width:48%;
}

.block {
    margin-bottom: 25px;
}

.block .content{
	position: relative;
	padding: 15px;
}

.widget{
	margin-bottom:50px;
}
.widget p{
	margin-top:0;
}
.widget a{
	display: block;
	display: table;
}
.widget span.title{
	display: block;
	font-weight:bold;
}

.fieldgroup{
	position: relative;
	margin-bottom:25px;
}
input[type="text"], input[type="password"], textarea, select {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #B7B7B7;
    border-radius: 5px;
    padding: 5px;
    width: calc(100% - 10px);
    box-sizing: border-box;
}

textarea{
	height:225px;
	resize: none;
}

.accordion{
	margin-bottom:15px;
}
.accordion .question{
	color:#318aca;
	font-weight: bold;
	cursor: pointer;	
}
.accordion.opened .question{
	color:#5F5F5F;
	
}

.accordion .answer{
	max-height: 0px;
	overflow: hidden;
	height: auto;
	
	transition: 100ms all linear;
	-moz-transition: 100ms all linear;
	-o-transition: 100ms all linear;
	-webkit-transition: 100ms all linear;
}
.accordion.opened .answer{
	max-height: 250px;
	
	transition: 100ms all linear;
	-moz-transition: 100ms all linear;
	-o-transition: 100ms all linear;
	-webkit-transition: 100ms all linear;
}

.form{
	padding:25px;
}
.form h2{
	margin-bottom:30px;
}
