
.box1 p { color: #f6b000;  }
.box1 h3 { color: #f6b000;  }
.box1 i { color: #f6b000; font-size: 4em; }
.box2 p { color: #013c65;  }
.box2 p a:hover {color:#013c65 !important;}

/*-=-=-=-=-=-=-=-=-=-*/
/* Column Grids */
/*-=-=-=-=-=-=-=-=-= */


.col_third { 
	width: 32%;
	position: relative;
	display:inline;
	display: inline-block;
	float: left;
	margin-right: 2%;
	margin-bottom: 20px;
}
.end { margin-right: 0 !important; }

/*-=-=-=-=-=-=-=-=-=-=- */
/* Flip Panel */
/*-=-=-=-=-=-=-=-=-=-=- */

.flipwrap{ width: 100%; margin: 0 auto;}

.flippanel {
	margin: 0 auto;
	height: 250px;  
	position: relative;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
}

.flippanel .front,
.flippanel .back {
	text-align: center;
}
	
.flippanel .front {
	height: inherit;
	position: absolute;
	top: 0;
	z-index: 900;
	text-align: center;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	   -moz-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.flippanel .back {
	height: inherit;
	position: absolute;
	top: 0;
	z-index: 1000;
	-webkit-transform: rotateY(-180deg);
	   -moz-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
.flippanel.flip .front {
	z-index: 900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.flippanel.flip .back {
	z-index: 1000;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
}
.box1 {
	background-color: #013c65;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	padding: 20px;
    padding-top: 50px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
.box2 {
	background-color: #f6b000;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

@media only screen and (max-width: 600px) {
  .col_third {
    display: block !important;
	float: none !important;
	width: 100% !important;
	margin-right: none;
	margin-bottom: 20px;
  }
	
 .box1 {
	 width:100%;
	 margin: 0 auto;
 }

 .box2 {
	 width:100%;
	 margin: 0 auto;
 }
	
}
/*-=-=-=-=-=-=-=-=-=-=- */
/* ToolTip */
/*-=-=-=-=-=-=-=-=-=-=- */


.webtooltip {
  border-bottom: 1px dotted #013c65;
  color: #60697a; outline: none;
  cursor: help; text-decoration: none;
  position: relative;
}

.webtooltip span {
  margin-left: -999em !important;
  position: absolute;
}

.webtooltip:hover span {
  position: absolute;
  left: 3em;
  top: -4em;
  z-index: 99;
  margin-left: 0 !important;;
  padding: .5em;
  color: #013c65;
  width: 250px;
  border-radius: 25px 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
}

.webtooltip:hover img {
  border: 0;
  margin: -10px 0 0 -55px;
  float: left;
  position: absolute;
}

.webtooltip:hover em {
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  padding: 0.2em 0 0.6em 0;
}

.classic { background-color: #f5e3b1; border: 1px solid #FFAD33; padding: 0.8em 1em; }
.custom { padding: 0.5em 0.8em 0.8em 2em; }
.critical { background: #FFCCAA; border: 1px solid #FF3334; }
.help { background: #9FDAEE; border: 1px solid #2BB0D7; }
.info { background: #9FDAEE; border: 1px solid #2BB0D7; }
.warning { background: #FFFFAA; border: 1px solid #FFAD33; }