

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* END RESET */

body{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	background-color:#fff;
}

/* FONT STYLES*/
h3{
	font-size: 24px;
	font-family: Helvetica, Arial, sans-serif;
	color: #333333;
	margin-bottom: 25px;
}
h4{
	margin-bottom: 25px;
	font-size: 18px;
	font-family: Helvetica, Arial, sans-serif;
}
h5{
	font-size: 14px;
	font-family: Helvetica, Arial, sans-serif;
}
p{
	font-size: 13px;
	color: #555555;
	line-height: 18px;
}
a, a:link, a:visited{
	text-decoration: none;
	outline: none;
}
.green{
	color: #509743;
}
.white{
	color: #fff;
}
strong{
    font-weight: bold;
	/*
    font-family: comic sans;
    color: #FFECCF;
	*/
}

/* END FONTS STYLES */




/* HEADER */
#header-wrap{
	padding-top: 0px;
	position: relative;
	margin: 0px auto;
}
#upper-header {
    background-color: #035;
}
header{
	position: relative;
	width: 960px;
	height: 185px;
    margin: 0px auto;
    padding: 0px;
	background: url(../images/banner.png);
	border-radius: 12px;
}

#login{
	float: right;
	height: auto;
	border-right: 0px dotted grey;
}

label {
    color: #fff;
    display: inline-block;
    margin-left: 0px;
    padding-top: 0px;
    font-size: 15px;
}




input[type=submit]{
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    background-color: #acd6ef; 
    background-image: -webkit-gradient(linear, left top, left bottom, from(#acd6ef), to(#6ec2e8));
    background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
    background-image: linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
    border-radius: 30px;
    border: 1px solid #66add6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    cursor: pointer;
}
input[type=checkbox]{
	margin-left: -5px;
}
.lower {
	float: right;	
	height: auto;
    margin: 20px 0px 0px 0px;
	padding: 5px;
}



/*.navmenu*/

#navmenu{
	background-color:#2D2F49;
}
#menu{
	width: 960px;
	height: 50px;
	margin: 10px auto;
	border-radius: 8px;
	box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.5);
}
.nav {
	padding: 15px;
}

.nav ul{
	position:relative;
    z-index:1000;
	list-style:none; 
	margin:0;
	padding:0;
	font-size: 15px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
        
.nav > ul > li {
	position: relative;
	float: left;
	margin-right: 34px;
	display: inline;
	border-right: 0px;

}
.active {
	text-shadow: 0px 0px 10px yellow;
}
.nav > ul > li > a {
	padding:13px;
	color: rgb(0, 222, 128);
}

.nav > ul > li > a:hover{
	color:#fff;
	border-radius: 10px;
	text-shadow: 5px 5px 20px rgb(136 174 247);
	}
		
		
.nav ul ul{ 
            width:220px; /* you need a width to accommodate tertiary menus */
            position:absolute;
			top: 36px;
            z-index:100;
			height: 0;
            overflow: hidden;
			border-radius: 8px;
			-webkit-transition: height 0.3s ease-in;
            -moz-transition: height 0.3s ease-in;
            -o-transition: height 0.3s ease-in;
            -ms-transition: height 0.3s ease-in;
            transition: height 0.3s ease-in;
        }
        


        
        .nav > ul > li:hover .menu1{
			height: 290px;
			border-radius: 8px;
			opacity: 0.8;
        }
		.nav > ul > li:hover .menu2{
			height: 90px;
			border-radius: 8px;
			opacity: 0.8;

        }
        /* drop-down item styles */
        /* if you want different styling for tertiary menus, just copy the 4 rules below and insert an additional ul: for example: ".navigation ul ul li", becomes: ".navigation ul ul ul li" */
        
        .nav ul ul li{
		
            background-color:#2D2F49;
			-webkit-transition: background-color 0.6s ease;
            -moz-transition: background-color 0.6s ease;
            -o-transition: background-color 0.6s ease;
            -ms-transition: background-color 0.6s ease;
            transition: background-color 0.6s ease;
        }
        

        
.nav ul ul li a {
    display:block;
    padding: 10px;
	color: rgb(0, 222, 128);
}
.nav ul ul li a:hover {
	color:#fff;
	border-radius: 10px;
	text-shadow: 5px 5px 20px rgb(136 174 247);
}
  
.clear{
	clear: both;
}

/* END HEADER */

#container{
	position: relative;
	width: 960px;
	margin: 0px auto;
}

#aboutpage{
	margin: 0px auto;
}

/* SLIDES */
#slides{
	position: relative;
	margin:0 auto;
	width:960px;
	height:336px;
	border-radius:2px;
	box-shadow: 1px 1px 30px 0px;
}
/* END SLIDES*/


/*marquee*/
#welcome{
	width: 750px;
}

.wc {
    font-size: 30px;
    padding-top: 20px;
    font-family: "arial", comic sans;
    color: #003355;
    font-weight: bold;
}
/*marquee ends here*/


/*mainbody starts here*/
#mainbody{
	width:960px;
}
#bodycontent{
	float: left;
	position: relative; 
	width: 700px;
	border-radius: 12px;
	background-color:#003355;
	margin-bottom: 10px;
	box-shadow:0px 0px 0px 0px;
	min-height: 600px;
}
#contactpage{
	margin: 30px 30px;
	box-shadow: 0px 3px 10px #fff;
	padding: 20px;
	border-radius: 12px;
}
#contactpage h3{
	font-size: 17px;
	color: #fff;
	margin-bottom: 10px;
}
#contactpage h4{
	font-size: 15px;
	color: #fff;
	margin-bottom: 10px;
}
#contactpage p{
	font-size: 13px;
	color: #fff;
	margin-bottom: 10px;
	margin-top: 10px;
	margin: 0px;
	padding: 0px
}

.strongtxt{
	background-color:#fff;
	text-align: center;
	line-height: 32px;
}
#bodycontent .strongtxt{
	font-size: 16px;
	color: #ED8A05;
}

#bodycontent ul{
	list-style-image: url(../images/more.png);
	margin-left: 15px;
}

#bodycontent ul li {
    color: #FFF;
    line-height: 30px;
}
#clipping, #shadow, #editing, #retouching, #masking, #manipulation {
    position: relative;
    float: left;
    width: 300px;
	height: 300px;
	padding: 10px;
    margin: 10px;
    border: 3px solid grey;
	border-radius: 12px;
}

#clipping img, #shadow img, #editing img, #retouching img, #masking img, #manipulation img{
	float: left;
	width: 108px;
	height: auto;
	position: relative;
}

#clipping p, #shadow p, #editing p, #retouching p, #masking p, #manipulation p{
	font-size: 17px;
	line-height: 30px;
	color:#fff;
}

#clipping h3, #shadow h3, #editing h3, #retouching h3, #masking h3, #manipulation h3{
	text-align:left;
	font-size: 17px;
	color:#FF0;
	
}

.readmore{
	float: right;
}

#firstpara, #secondpara, #thirdpara {
	position: relative;
	width: 650px;
	height: auto;
	margin: 34px;
}

#para1, #para2, #para3 {
    line-height: 22px;
    font-size: 13px;
    color: #FFF;
    text-align: justify;
    margin-right: 30px;
}

.heading1, .heading2, .heading3{
	margin: 20px;
	color:#69F;
	text-align: center;
	font-size: 30px;
	font-family:"Arial Black", Gadget, sans-serif;
	text-shadow:#FF9;
}


#contentwrapper .heading1{
	text-align: center;
}

#photogallary{
	float: left;
	margin: 0px auto;
	padding: 0px;
}

#photogallary a{
	padding: 0px;
	margin: 0px;
}

#photogallary img{
    margin: 5px;
    padding: 5px;
}
/* mainbody ends here*/


/*sidebar starts here*/

#sidewrapper{
	float: right;
	width: 200px;
	margin: 0px auto;
	position: relative;
}

#sidebar{
	float: left;
    box-shadow: 0px 0px 12px #1A1B1D;
    background-color: #003355;
    border-radius: 12px;
	background-color: #003355;
}
#sidebar2{
	float: right;
    box-shadow: 0px 0px 12px #1A1B1D;
    background-color: #003355;
    border-radius: 12px;
	width: 200px;
	margin-top: 20px;
	padding: 0px 0px;
}

#sidebar2 img {
    padding-left: 14px;
    margin-top: -30px;
}

#sidebar2 p{
    font-size: 13px;
    color: #fff;
    line-height: 18px;
    padding: 8px;
}
#readmore a {
    color: yellow;
}

#sidebar h3, #sidebar2 h3 {
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    text-transform: uppercase;
    color: #ED8A05;
    font-weight: normal;
    text-align: left;
    padding-left: 5%;
    background-color: #122D42;
    background-image: linear-gradient(to bottom, #122D42, #122D42);
    box-shadow: 0px 2px 3px #122D42;
    height: 52px;
    line-height: 52px;
    width: 95%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#sidebar ul{
	padding:0px;
	margin: -25px 0px 0px 0px;
}
#sidebar ul li{

float: left;
width: 100%;
height: 37px;
font-size: 0.928571rem;
line-height: 1.84615;
border-bottom: 1px solid #fff;

}
#sidebar ul li a{
font-size: 14px;
color: #E3E3E3 !important;
font-family: 'open_sansregular';
line-height: 37px;
padding-left: 15px;
display: block;
}

#sidebar ul li a:hover{
background-color: #122D20;
}
/*sidebar ends here*/

/* CLEAR FIX */
.group:after {
  content: "";
  display: table;
  clear: both;
}
/* END FIX */


/* WIDGET starts here */
#widget-wrap{
	margin: 0px auto;
	padding: 20px 0;
	background-color: #003355;
}

#widget{
	width: 960px;
	margin: 0 auto;
}

h4.footer-header{
	background: transparent url(images/footer-header.png) no-repeat;
	line-height: 58px;
	text-indent: 30px;
}
#links{
	width: 225px;
	float: left;
	margin-right: 75px;
}

#links ul{
	list-style-image: url(images/links.png);
	margin-left: 15px;
}

#links ul li a{
	color: #cccccc;
	font-size: 13px;
	padding: 8px 0;
	display: block;
}

#links ul li a:hover{
	color: #fff;
}

#likebuttons{
	position: relative;
	width: 290px;
	float: left;
	margin-right: 0px;
	padding-top: 48px;
}

#likebuttons li{
	display: inline;
}

#likebuttons img{
	top: 0px;
	left: 0px;
	height: 40px;
	width: 40px;
}

#likebuttons p{
	font-weight: bold;
	padding: 6px 13px 0px 0px;
	float: left;
	font-size: 20px;
	color: #fff;
}

#location{
	position: relative;
	width: 290px;
	float: right;
}

#location img{
	position: absolute;
	top: 45px;
	left: 22px;
}

#location p.address{
	margin-top: 115px;
	border-right: 1px solid #484848;
	padding-right: 20px;
	text-align: right;
	color: #cccccc;
}
/*widget ends here */


/*client starts here*/
#client-wrap{
	background: #fff url(images/client-bg.jpg) repeat-x;
	padding: 40px 0;
	border-bottom: 1px solid #c8c8c8;
}

#client{
	width: 960px;
	margin: 0 auto;
}

#client ul li{
	width: 20%;
	float: left;
	text-align: center;
}
/*client ends here*/


/*footer starts here*/
#mainfooter{
	background-color: #000;
}
footer{
	width: 960px;
	margin: 0 auto;
	padding: 30px 0 60px 0;
	position: relative;
	background-color: black;
}

#footer-left{
	float: left;
	width: 50%;
}

#footer-left p{
	font-size: 12px;
	color: #0F0;
}

#footer-left a:hover{
	color: #c8c8c8;
}

#footer-right{
	float: right;
	width: 50%;
}

#footer-right ul{
	float: right;
}

#footer-right ul li{
	float: left;
	margin-right: 30px;
}

#footer-right ul li:last-child{
	margin-right: 0;
}

#footer-right ul li a{
	color: #666666;
	display: block;
	padding-bottom: 10px;
	font-size: 12px;
}

#footer-right ul li a:hover{
	border-bottom: 2px solid #c8c8c8;
}

.back-top{
	position: absolute;
	bottom: 30px;
	right: 50%;
}
/*footer ends here*/


#mainreg{
	width: 700px;
}
#bodycontent #regboxreg{
    width: 700px;
    margin-left: 30px;
}
#label1{
	width: 110px;
    color: #fff;
    display: inline-block;
    margin-left: 30px;
    font-size: 13px;
}
#bodycontent #regboxp{
	margin: 0px;
	border: 0px none;
	color: #FFF;
	font-size: 12px;
	border-radius: 0px;
}