table
/* GRID PART */
/*  SECTIONS  ============================================================================= */

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

/*  GROUPING  ============================================================================= */


.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/*  GRID COLUMN SETUP   ==================================================================== */

.col {
	display: block;
	float:left;
	margin: 0 0 1% 1.6%;
}

.col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */


/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

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

/*  GRID OF THREE   ============================================================================= */

	
.span_3_of_3 {
	width: 100%;
}
.span_2_of_3 {
	width: 66.1%;
}
.span_1_of_3 {
	width: 32.2%;
}

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

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

/* END GRID PART */

body {
	background-color: #e9fbe7;
    font-family: Arial, Helvetica, sans-serif;	
	font-size: 1.0em;
	color: #000000;
	padding: 0;
	margin: 0;
	height:100%;
}


img {
    vertical-align: middle;
    border: 0;
}
a { 
	text-decoration: none; 
	color: #337ab7;
	padding: 0; 
	margin: 0; 
}
a:hover { 
	text-decoration: none; 
	color: #000000; 
	outline: 0; 
	padding: 0; 
	margin: 0; 
}

#wrap {
	max-width: 100%;
	min-height: 100px;
	height: auto !important;
	margin: 0 auto;
	margin-top:0;
}

.loader {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
	right:0px;
    visibility: hidden;
    background: url(/images/loading.gif) 0 0 no-repeat;
    background-size: 20px 20px;
}
.button {
	position:relative;
	padding:0px 24px 0 24px;
	line-height:24px;
	font-size:13px;
	color:#f1f3f4;
    display: inline-block;
	cursor:pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(top,#4792d4 0,#1a466d 100%);
    background-image: -o-linear-gradient(top,#4792d4 0,#1a466d 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#4792d4),to(#1a466d));
    background-image: linear-gradient(to bottom,#4792d4 0,#1a466d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4792d4', endColorstr='#1a466d', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
}
.button:hover {
	padding:0px 24px 0 24px;
	color:#ffffff;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.9);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.9);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.9);
}
#dsignin{
	position:relative;
	top:0;
	left:0;
	width:100%;
	height:500px;
}
#dsignin_main {
	position:fixed;
	top:40%;
	left:50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	width:330px;
	/*height:325px;*/
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
}
.dsignin_top {
	position:relative;
	/*background:rgba(192,241,189,1);*/
	background:#fbfbfb;
	text-align:center;
	padding:23px 0;
}
.dsignin_top img{
	width:133px;
	height:190px;
}
.dsignin_top img.close{
	position:absolute;
	top:10px;
	right:10px;
	width:20px;
	height:20px;
	cursor:pointer;
}
.dsignin_mid {
	background:#065201;
	height:8px;
	display:block;
}
.dsignin_tab {
	height:30px;
	display:block;
}
ul.dsignin_ul {
	display:block;
	height:100%;
	padding:0;
	margin:0;
}
ul.dsignin_ul li {
	float:left;
	width:50%;
	text-align:center;
	margin:0;
	padding:8px 0;
}
ul.dsignin_ul li.nonactive {
	background: #717173;
	border-bottom:1px solid #c3c1c1;
	color:#bfbebe;
	cursor:pointer;
}
ul.dsignin_ul li.active {
	background: #eaeaec;
	border-bottom:0px;
	color:#333;
	font-weight:bold;
	cursor:default;
}
.dsignin_inp {
	background: #fbfbfb;
	padding:19px 20px 10px 20px;
	display:block;
}
.dsignin_inp input {
	width:264px;
	padding: 10px;
	outline: none;
    font-size: 14px;
	border: solid 1px #fff;
	box-shadow: inset 1px 1px 2px 0 #707070;
	transition: box-shadow 0.3s;	
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	margin-bottom:10px;
}
.dsignin_inp input:focus,
.dsignin_inp input.focus {
  box-shadow: inset 1px 1px 2px 0 #c9c9c9;
}

.dsignin_bot {
	position:relative;
	padding:0 20px 15px 20px;
	display:block;
	text-align:center;
	background: #fbfbfb;
}
.dsignin_bot .button{
	margin:5px;
	padding: 10px 10px 8px 10px;
	width:190px;
	background-color: #1460a0;
	background-image:url(/images/menu_arrow_right.png);
	background-repeat:no-repeat;
	background-position:20px 12px; 
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-size:19px;
	font-weight:normal;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,1);
	-webkit-transition: background-position .4s ease;
	-moz-transition: background-position .4s ease;
	-o-transition: background-position .4s ease;
	-ms-transition: background-position .4s ease;
	transition: background-position .4s ease;
}
.dsignin_bot .button:hover{
	background-position:40px 12px;
}
.dsignin_bot p{
	font-size:13px;
	margin:12px;
}
.clear {
	clear:both;
}

