@charset "utf-8";
@import "reset.css";

html, body,
.container {
	/* min-width: 1030px; */
	/* background-color: #dcdada; */
	font-family:"Times New Roman",Times,Georgia,Serif;
	background: url(../images/bg.jpg);
}
header, .body, footer {
	width: 100%;
}
article {
	width: 910px;
	height: auto;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}
a { text-decoration: none; }
h1, h2, h3, h4, h5, h6{ display: inline-block; }
h1, h2, h3, h4, h5, h6, p, a, label, center, span, li { font-family: times, Times New Roman, times-roman, georgia, serif; letter-spacing: 1px; }
.clearfix { clear: both; }
.spacer { width: 100%; padding-top: 30px; }
.spacer2 { width: 100%; padding-top: 20px; }
.spacer3 { width: 100%; padding-top: 10px; }
.float-left { float: left; }
.float-right { float: right; }





/* HEADER */
header {
	height: 290px;
	background: url(../images/header.jpg);
	background-position:50% 50%;
	/*
	-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  */

}
header article {
	padding: 0;
	height: 290px;
	width: 990px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -495px;
}
header #header-overlay {
	width: 100%;

}

header article #logo h1 {
	height: 96px;
	font-size: 47px;
	font-weight: bold;
	margin-top: 27px;
	color: #fff;
	width:900px;
	text-shadow: 2px 4px 3px rgba(0,0,0,1);
}


#logo .slogan {
	font-size: 25px;
	font-weight: bold;
	
	width:600px;
	height: 30px;
	position:relative;
	-webkit-animation:myfirst 5s; /* Chrome, Safari, Opera */
	animation:myfirst 5s;
}


/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst
{
0%   {left:0px; top:100px;}
100% {left:0px; top:0px;}
}

/* Standard syntax */
@keyframes myfirst
{
0%   {left:0px; top:100px;}
100% {left:0px; top:0px;}
}

#nav-wrapper {
	width: 100%;
	border-bottom: #d2d1d1 10px solid;
	background: #0c3585;
}

nav {
	width: 910px;
	height: 50px;
	margin: 0 auto;
	text-align: center;
}

#nav-wrapper nav a {
	color: #ffffff;
	font-size: 15px;
	display: inline-block;
	padding-left: 45px;
	padding-right: 45px;
	padding-top: 18px;
	padding-bottom: 17px;
	background: transparent;
	text-transform: uppercase;
	
	-webkit-transition: background 300ms ease-out;
	-moz-transition: background 300ms ease-out;
	-ms-transition: background 300ms ease-out;
	-o-transition: background 300ms ease-out;
	transition: background 300ms ease-out;
}
#nav-wrapper nav a:hover {
	background: #072153;
}

#nav-wrapper nav #nav-inner {
	width: 100%;
}

#nav-wrapper nav #nav-inner:before,
#nav-wrapper nav #nav-inner:after {
	height: 20%;
	transform: rotate(-3deg);
}
#nav-wrapper nav #nav-inner:after{
	transform: rotate(3deg);
	-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.5);
	box-shadow: 0 1px 10px rgba(0,0,0,0.5);
 }




/* .BODY */
.body {
	width: 100%;
	/* background: url(../images/bg.jpg) repeat; */
}
.body article {
	padding-top: 20px;
	padding-bottom: 20px;

	
	/* -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.5);
	box-shadow: 0 1px 10px rgba(0,0,0,0.5); */
}
.body p,
.body a,
.body li {
	font-size: 16px;
	text-align: justify;
	color: #333;
	line-height: 30px;
	margin-bottom: 30px;
	list-style: square;
	margin-left: 10px;
}
.body p:last-child {
	margin-bottom: 0;
}
.body li {
	margin-bottom: 0;
}
.body li:last-child {
	margin-bottom: 30px;
}
.body ul {
	padding-left: 30px;
	list-style: disc;
}
.body h1, .body h2 , .body h3{
	color: #0c3585;
	text-transform: uppercase;
	line-height: 30px;
}
.body h1 {
	font-size: 30px;
	font-smooth: always;
}
.body h2 {
	color: #333;
	font-size: 23px;
	margin-bottom: 12px;
	font-weight: bold;
}

.body h3 {
	color: #333;
	font-size: 20px;
	margin-bottom: 12px;
}

.body h2 span, .body h3 span {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url(../images/header-bullet.jpg) no-repeat;
	margin-right: 5px;
}





/* FOOTER */
footer {
	margin-top: 30px;
	height: 130px;
	background: #575757;
	width: 100%;
}

footer article {
	height: 65px;
	padding: 0;
	width: 990px;
	text-align: center;
}

footer article p,
footer article a {
	padding-top: 28px;
	color: #fff;
	font-size: 14px;
}
footer article a:hover {
	text-decoration: underline;
}

#footer-nav-wrapper {
	width: 100%;
	background: #d2d1d1;
}

footer nav {
	width: 990px;
	text-align: center;
	margin: 0 auto;
	height: 30px;
	line-height: 30px;
}

footer nav a {
	font-size: 14px;
	text-transform: uppercase;
	color: #666666;
	display: inline-block;
	margin-left: 50px;
	margin-right: 50px;
	margin-bottom: 5px;
	
	
	-webkit-transition: color 300ms ease-out;
	-moz-transition: color 300ms ease-out;
	-ms-transition: color 300ms ease-out;
	-o-transition: color 300ms ease-out;
	transition: color 300ms ease-out;
}

footer nav a:hover {
	color: #000;
}



/* HOME */
#home #vision-p {
	text-align: center;
}
#home .practice-area-link {
	height: 187px;
	margin-top: 30px;
	width: 960px;
	margin-left: -20px;
	margin-right: auto;
}
#home .colm1 {
	background: url(../images/patent.jpg) no-repeat;
	margin-left: 0 !important;
}
#home .colm2 {
	background: url(../images/trademark.jpg) no-repeat;
}
#home .colm3 {
	background: url(../images/copyright.jpg) no-repeat;
}
#home .colm4 {
	background: url(../images/techtransfer.jpg) no-repeat;
	margin-right: 0 !important;
}
#home .colm {
	float: left;
	width: 229px;
	height: 187px;
	display: inline-block;
	margin-left: 6px;
	margin-right: 6px;
	position: relative;
}
#home .colm p {
	color: #fff;
	font-size: 30px;
	bottom: 10px;
	left: 10px;
	position: absolute;
	margin-bottom: 0;
}


/* PAGE 2 */
#page2 span {
	font-weight: bold;
}


/* PAGE 3 */
#page3 .colm {
	width: 450px;
}


/* PAGE 4 */
#page4 article p{
	text-align: center;
	font-size: 28px;
	line-height: 50px;
}


/* PAGE 5 */
#page5 {
}
#page5 #map_canvas {
	width: 990px;
	height: 300px;
	margin-left: -40px;
	z-index: 0;
	border-top: 1px #e9e9e9 solid;
	border-bottom: 1px #e9e9e9 solid;
}
#page5 #address {
	padding-left: 40px;
	width: 280px;
	float: left;
}
#page5 #getintouch {
	width: 580px;
	float: left;
}
#page5 #col1,
#page5 #col2,
#page5 #col3 {
	width: 100%;
	display: inline-block;
}
#page5 #col1 h2,
#page5 #col2 h2,
#page5 #col3 h2 {
	padding-right: 10px;
	text-transform: uppercase;
}
#page5 #col1 p {
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 22px;
}
#page5 #getintouch #col3 form .textfield {
	width: 265px;
	padding: 8px 6px 8px 6px;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 15px;
	margin-left: 0;
	border: 2px solid ##575757;
	font-size: 16px;
	color: #4e4e4e;
	font-family: times, Times New Roman, times-roman, georgia, serif;
}
#page5 #getintouch #col3 form .textfield-last {
	margin-right: 0 !important;
}
#page5 #getintouch #col3 form textarea {
	width: 560px !important;
	margin-right: 0 !important;
	min-height: 90px;
	max-height: 350px;
}
#page5 #getintouch #col3 form .send {
	font-size: 14px;
	color: #ffffff;
	padding: 8px 10px 8px 10px;
	background: #0c3585;
	margin: 0;
	border: 3px solid #0c3585;
	text-transform: uppercase;
	font-family: times, Times New Roman, times-roman, georgia, serif;
	letter-spacing: 1px;
	width: 180px;
}
#page5 #getintouch #col3 form .send:hover {
	background: #072153;
	border: 3px solid #072153;
}
#page5 #getintouch #col3 form .send:active {
	background: #000;
	color: #fff;
	border: 3px solid #000;
}
#page5 #getintouch .verify {
	display: inline-block;
	margin-bottom: 0;
	position: relative;
	opacity: .6;
	font-size: 14px;
	top: 7px;
}

