/* -----------------------------------
Basic rules
----------------------------------- */

body
{
/*	margin: 0;
	padding: 20px;
	color: #000;
	background: #fff;
	font: 100%/1.4 helvetica, arial, sans-serif;
*/}
#contact-page {
	background: url(../img/blooming-R.png);
	background-position:bottom right;
	background-repeat: no-repeat;
	height:100%;
	background-color:#fff;	
}

/* -----------------------------------
Form - narrow
----------------------------------- */

.row-form
{
	clear: left;
	overflow: hidden;
	zoom: 1;
	margin: 0 0 1em;
}

.label
{
	display: block;
	margin: 0 0 .1em;
	font-size: .8em;
	text-transform: uppercase;

}

.input,.select,.textarea
{
	width: 95%;
	*width: 90%;
	box-sizing: border-box;
	border: 1px solid #999;
	border-radius: .3em;
}

.input,.textarea { padding: 5px; }
.textarea { height: 150px; }

.radio
{
	margin-left: 1px;
	margin-right: .5em;
}

.form-list
{
	margin: 0;
	padding: 0;
	list-style: none;
}

.btn
{
	font-family: 'Muli', sans-serif;
	display: inline-block;
	margin: 0;
	padding: .7em 1.2em;
	border: 0;
	border-radius: .3em;
	color: #fff;
	background-color: #c10000;
	line-height: 1;
background: rgb(189,216,177); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(189,216,177,1) 0%, rgba(156,198,131,1) 17%, rgba(127,175,82,1) 33%, rgba(71,122,0,1) 67%, rgba(50,86,0,1) 83%, rgba(0,36,0,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(189,216,177,1)), color-stop(17%,rgba(156,198,131,1)), color-stop(33%,rgba(127,175,82,1)), color-stop(67%,rgba(71,122,0,1)), color-stop(83%,rgba(50,86,0,1)), color-stop(100%,rgba(0,36,0,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(189,216,177,1) 0%,rgba(156,198,131,1) 17%,rgba(127,175,82,1) 33%,rgba(71,122,0,1) 67%,rgba(50,86,0,1) 83%,rgba(0,36,0,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(189,216,177,1) 0%,rgba(156,198,131,1) 17%,rgba(127,175,82,1) 33%,rgba(71,122,0,1) 67%,rgba(50,86,0,1) 83%,rgba(0,36,0,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(189,216,177,1) 0%,rgba(156,198,131,1) 17%,rgba(127,175,82,1) 33%,rgba(71,122,0,1) 67%,rgba(50,86,0,1) 83%,rgba(0,36,0,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(189,216,177,1) 0%,rgba(156,198,131,1) 17%,rgba(127,175,82,1) 33%,rgba(71,122,0,1) 67%,rgba(50,86,0,1) 83%,rgba(0,36,0,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdd8b1', endColorstr='#002400',GradientType=0 ); /* IE6-9 */

}

.btn:focus { background-color: #4F6CA8; }
.btn:hover {  
background: rgb(0,36,0); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(0,36,0,1) 0%, rgba(50,86,0,1) 17%, rgba(71,122,0,1) 33%, rgba(127,175,82,1) 67%, rgba(156,198,131,1) 83%, rgba(189,216,177,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,36,0,1)), color-stop(17%,rgba(50,86,0,1)), color-stop(33%,rgba(71,122,0,1)), color-stop(67%,rgba(127,175,82,1)), color-stop(83%,rgba(156,198,131,1)), color-stop(100%,rgba(189,216,177,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(0,36,0,1) 0%,rgba(50,86,0,1) 17%,rgba(71,122,0,1) 33%,rgba(127,175,82,1) 67%,rgba(156,198,131,1) 83%,rgba(189,216,177,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(0,36,0,1) 0%,rgba(50,86,0,1) 17%,rgba(71,122,0,1) 33%,rgba(127,175,82,1) 67%,rgba(156,198,131,1) 83%,rgba(189,216,177,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(0,36,0,1) 0%,rgba(50,86,0,1) 17%,rgba(71,122,0,1) 33%,rgba(127,175,82,1) 67%,rgba(156,198,131,1) 83%,rgba(189,216,177,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(0,36,0,1) 0%,rgba(50,86,0,1) 17%,rgba(71,122,0,1) 33%,rgba(127,175,82,1) 67%,rgba(156,198,131,1) 83%,rgba(189,216,177,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002400', endColorstr='#bdd8b1',GradientType=0 ); /* IE6-9 */
}
.btn:active { background-color: #AAC968; }

/* -----------------------------------
Form - wide
----------------------------------- */

@media (min-width:33em)
{
	.submission-form { max-width: 40em; }
	
	.label
	{
		float: left;
		width: 25%;
		margin: 0 2% 0 0;
		text-align: right;
	}
	
	.input,.select,.textarea
	{
		float: left;
		width: 70%;
	}

	.form-indent
	{
		margin-left: 27%;
		width: 70%;
	}
}
