html, body {border:0; margin:0; padding:0;}
body {font-family:'ptsf'; background:#fff; font-size:13px; color:#333;}
@font-face {font-family:'trebuc'; src: url(../fonts/trebuc.ttf);}
@font-face {font-family:'ptsf'; src: url(../fonts/PTS55F.ttf);}
.font_fam_BarbedorT{font-family:'BarbedorT';}
h1, h2, h3, h4, h5, h6 {margin:0px 0; padding:0;font-family:'ptsf'; font-weight:normal; text-transform:uppercase; }
ul, ol {margin:0; padding:0;}
img {border:0;}
a, a:link, a:visited, a:hover {text-decoration:none; outline:none;}
form input, form select, form textarea {font:12px, tahoma, calibri;}
form label {cursor:pointer;}
table { margin:0; padding:0;}
table tr td {padding:5px;}
.left{float:left;}
.right{float:right}
.width100{width:100%;}
.wrapper{width:100%; float:left;}
.center-align{width:1000px; margin:0 auto;}
.orange-text{
	color:#ff9c00;
}
.white-text{
	color:#fff;
}
.m-bottom20{
	margin-bottom:20px;
}
.width220{
	width:220px;
	float:right;
}
.width500{
	width:500px;
	float:left;
}
/*--------------------------------------FOnt-------------------------------------------*/
h1{
	color:#013B87;
	font-size:20px;
	margin-bottom:10px;
}
h2{
	color:#013B87;
	font-size:16px;
	margin-bottom:10px;
}
strong{
	color:#013B87;
}
p{
	font-size:13px;
	line-height:22px;
	text-align:justify;
	margin-bottom:20px;
}
.list1 li{
	list-style:none;
}
.list1 a{
	background:url(../images/list.png) left center no-repeat;
	color:#fff;
	line-height:22px;
	margin-left:30px;
	padding-left:20px;
}
.list1 a:hover{
	background:url(../images/list.png) left center no-repeat;
	color:#e28f0b;
	line-height:22px;
	margin-left:30px;
	padding-left:20px;
}
.list li{
	list-style:url(../images/list.png);
	color:#222;
	line-height:22px;
	margin-left:30px;
}
.header-area{
	width:100%;
	float:left;
	border-top:5px solid#013B87;
	z-index:1000;
	position:relative;
}
.header-box{
	width:1000px;
	float:left;
	height:100px;
}
.logo-box{
	width:250px;
	float:left;
}
.logo-box-right{
	width:100px;
	float:right;
}/*
.menu li{
	text-decoration:none;
	display:inline;
	color:#fff;
	font-size:16px;
}
.menu a{
	color:#013B87;
	padding:40px 20px 40px 20px;
	text-decoration:none;
}
.menu a:hover{
	color:#fff;
	padding:40px 20px 40px 20px;
	text-decoration:none;
	background:#013B87;
}*/
/*-----------------------------------Menu Area----------------------------------------------------*/
.menu-box{
	width:500px;
	height:100px;
	float:right;
	text-align:right;
	margin-top:-10px;
}
/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {	
	height: 100px;
	width: 600px;
	
	/*background:url(../images/menu-bg.png) repeat-x;
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);

	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;*/
	text-align:center;
}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 100px;
}

/* Links */

.menu li a {
	display: block;
	padding:50px 20px 45px 20px;
	margin: 1px 0;
	text-decoration: none;
	text-transform:uppercase;
	font-size: 13px;
	color:#030C4D;/*#741b1b;*/
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.6);

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;*/
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { 
	color:#fff;
	background:#030C4D;
	padding:50px 20px 45px 20px;
}

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 110px;
	left: 0;

	opacity: 0;
	
	background:#030C4D;

	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	height: 0;
	overflow: hidden;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	height: auto;
	overflow: visible;
	padding: 0;
}

.menu ul li a {
	width: 200px;
	padding: 5px 10px 5px 10px;
	text-align:left;
	margin: 0;
	color:#fff;

	border: none;
	border-bottom: 1px solid #eee;
}

.menu ul li a:hover {
	width: 200px;
	padding: 5px 10px 5px 10px;
	text-align:left;
	margin: 0;
	color:#fff;
	background:#454847;

	border: none;
	border-bottom: 1px solid #eee;
}

.menu ul li:last-child a { border: none; }

/* Icons */

/*.menu a.documents { background: url(../img/docs.png) no-repeat 6px center; }
.menu a.messages { background: url(../img/bubble.png) no-repeat 6px center; }
.menu a.signout { background: url(../img/arrow.png) no-repeat 6px center; }*/
/*----------------------------------Main Area----------------------------------------------------*/
.current a{
	color:#fff;
	padding:40px 20px 40px 20px;
	text-decoration:none;
	background:#013B87;
}
.banner-area{
	width:100%;
	float:left;
	background:#030C4D;
	z-index:1;
	position:relative;
}
.banner-box{
	width:1000px;
	height:350px;
	float:left;
}
.content-area{
	width:100%;
	float:left;
}
.content-box{
	width:1000px;
	float:left;
	padding:20px 0;
}
.left-box{
	width:230px;
	float:left;
	background:#454847;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:20px;
	margin-right:30px;
	
}
.left-box1{
	width:270px;
	float:left;
	margin-right:30px;
	
}
.right-box{
	width:700px;
	float:left;
}
.footer-area{
	width:100%;
	float:left;
	background:#dddddd;
	border-top:5px solid#013B87;
}
.footer-box{
	width:1000px;
	float:left;
	padding:20px 0;
}
.footer-left{
	width:500px;
	float:left;
	text-align:left;
}
.footer-right{
	width:500px;
	float:left;
	text-align:right;
}
a{
	color:#232;
}
a:hover{
	color:#013B87;
}
.boottom-img-box{
	width:500px;
	float:left;
	margin:10px 85px;
}
.img_box{
	width:250px;
	float:right;	
	margin-left:20px;
	margin-bottom:20px;
}


.client-box{
	width:400px;
	float:left;
}
.client-list-box{
	width:130px;
	float:left;
}
.client-img-main-box{
	width:700px;
	float:left;
	margin-bottom:10px;
}
.client-img-box{
	width:95px;
	height:95px;
	float:left;
	padding:4px;
	border:1px solid#ddd;
	background:#fff;
}
.client-img-box:hover{
	width:95px;
	height:95px;
	float:left;
	padding:4px;
	border:1px solid#013B87;
	background:#fff;
}