/* background setup */
.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}

/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
}
.fullscreen,
.content-a {
    width:100%;
    min-height:100%;
}
.not-fullscreen,
.not-fullscreen .content-a,
.fullscreen.not-overflow,
.fullscreen.not-overflow .content-a {
    height:100%;
    overflow:hidden;
}

/* content centering styles */
.content-a {
	display:table;
}
.content-b {
	display:table-cell;
    position:relative;
	vertical-align: top;
	text-align: right;
	padding-right: 15%;
}

.content-in {
	display:table-cell;
    position:relative;
	vertical-align: top;
	text-align: right;
	padding-right: 30%;
}


.im-fix {
	display: block;
	/* float: right; */
	margin-left: auto;
	/* margin: 0; */
	/* padding: 0; */
	margin-right: auto;
}

.block {
	display:block;
}


/* visual styles */
body{
    margin:0;
    font-family:sans-serif;
    font-size:28px;
    line-height:100px;
	color:#ffffff;
    text-align:center;
}


/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	/*margin: 1% 0 1% 1.6%;*/
}
.col:first-child { margin-left: 0; }


/*  GROUPING  */
.group:before,
.group:after {
	content:"";
	display:table;
}
.group:after {
	clear:both;
}
.group {
    zoom:1; /* For IE 6/7 */
}
                                               
					
/*  GRID OF TWO  */
.span_2_of_2 {
	width: 100%;
}
.span_1_of_2 {
	width: 74.2%;
	margin: 0 0 1% 1.6%;
}

.span_1_of_2  p {
	font-size: 18px;
	color: #B6935B;
	line-height: 25px;
}
.span_1_of_2  p  a {
	text-decoration: none;
	color: #B6935B;
}
.span_1_of_22 {
	width: 15.2%;
	margin: 4% 0 1% 10.6%;
}

.centert {
	text-align: center;
	float: right;
	margin-top: 10%;
	line-height: 20px;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
}

@media only screen and (max-width: 480px) {
	.span_2_of_2 {
		width: 100%; 
	}
	.span_1_of_2 {
		width: 100%;
	}
	.span_1_of_22 {
		width: 100%;
	}
}


.btn {
  background: #e8b86f;
  background-image: -webkit-linear-gradient(top, #e8b86f, #B6935B);
  background-image: -moz-linear-gradient(top, #e8b86f, #B6935B);
  background-image: -ms-linear-gradient(top, #e8b86f, #B6935B);
  background-image: -o-linear-gradient(top, #e8b86f, #B6935B);
  background-image: linear-gradient(to bottom, #e8b86f, #B6935B);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.btn:hover {
  background: #B6935B;
  background-image: -webkit-linear-gradient(top, #B6935B, #B6935B);
  background-image: -moz-linear-gradient(top, #B6935B, #B6935B);
  background-image: -ms-linear-gradient(top, #B6935B, #B6935B);
  background-image: -o-linear-gradient(top, #B6935B, #B6935B);
  background-image: linear-gradient(to bottom, #B6935B, #B6935B);
  text-decoration: none;
}

.btn a {
	text-decoration: none;
	color: #fff;
}