/*!
Theme Name: Paavai

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

/*a:visited {
	color: #db514e;
}*/

a:hover, a:focus, a:active {
	color: #db514e;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* end */

@import url(https://fonts.googleapis.com/css?family=Halant:400,300,500,600,700);
* {
	margin: 0;
	padding: 0;
}
a {
	outline: none;
	text-decoration: none;
}
img {
	border: 0px;
}
table {
	border-spacing: 0px;
	border-collapse: collapse;
}
ul, li {
	list-style: none;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: 'Halant', serif;
}
body {
	color: #444;
	background-color: #fefefe;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.banner_bg {
	float: left;
	width: 100%;
}
.banner_bg img {
	float: left;
	width: 100%;
}
.rslides {
	width: 100%;
	list-style: none;
	overflow: hidden;
	position: relative;
}
.rslides li {
	top: 0;
	left: 0;
	width: 100%;
	display: none;
	position: absolute;
	-webkit-backface-visibility: hidden;
}
.rslides li:first-child {
	float: left;
	display: block;
	position: relative;
}
.rslides img {
	width: 100%;
	float: left;
	height: auto;
	display: block;
}
.revImg {
	display: none;
}
.prev, .next {
	z-index: 2;
	top: 365px;
	width: 50px;
	height: 50px;
	position: absolute;
	background: url(images/arr_lft.png) 0 0 no-repeat;
}
.next {
	right: 0px;
	background: url(images/arr_rht.png) 0 0 no-repeat;
}
.content01, .content02, .content03, .content04, .content05 {
	float: left;
	width: 100%;
	background-color:white;
}
.container {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}
.container li
{ font-size:12px; font-family:trebuchet MS; line-height:18px}
.container p, .container td, .container th {
	font-size: 11.6px;
	line-height: 19px;
}
 .footer_bg img {
	max-width: 100%;
}
.content_bg h1 {
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 30px;
	text-transform: uppercase;
	border-bottom: 3px solid #db514e;
}
.content_bg h3 {
	font-size: 20px;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.content_bg h4 {
	color: #fff;
	font-size: 30px;
	line-height: 24px;
	text-align: right;
	background-color: #db514e;
	text-transform: uppercase;
	padding: 10px 10px 5px 10px;
}
.content_bg h4 span {
	font-size: 16px;
}
.content_bg h5 {
	color: #c1923f;
	font-size: 18px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.content_bg p {
	padding-bottom: 10px;
	text-transform: none;
}
.content_bg a {
	color: #db514e;
}
.content_bg a:hover {
	color: #000;
}
.content01, .content03 {
	margin: 40px 0px;
}
.content01 {
	margin: 20px 0px;
}
.cont01, .cont02, .cont03, .cont04 {
	width: 31.2%;
	float: left;
}
.cont02 {
	margin: 0px 2% 0 4%;
}
.content01 h1 a, .circular h1 a, .content04 h1 a, .content03 h1 a {
	color: #000;
}
.content01 h1 a:hover, .circular h1 a:hover, .content04 h1 a:hover, .content03 h1 a:hover {
	color: #009BD1;
}
.cont01 ul, .cont02 ul, .cont03 ul {
	font-size: 14px;
	list-style: none;
	margin-bottom: 25px;
	text-transform: uppercase;
	font-family: 'Halant', serif;
}
.cont02 h2 {
	width: 80%;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 25px;
	text-transform: uppercase;
	border-bottom: 3px solid #db514e;
}
.cont03 {
	margin: 0px 4% 0 2%;
}
p.title {
	color: #000;
	font-size: 15px;
}
p.date {
	font-size: 12px;
	padding-bottom: 30px;
	text-transform: uppercase;
}
.cont02 h3 a {
	color: #db514e;
	padding: 3px 30px;
	background-color: #ece0cf;
	border: 1px solid #c1bfc0;
}
.cont02 h3 a:hover {
	background-color: #faefdf;
}
.cont01 li a, .cont02 li a, .cont03 li a {
	display: block;
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
}
.cont01 li a, .cont02 li a {
	color: #db514e;
	background: url(images/arr02.jpg) 0 5px no-repeat;
}
.cont01 li a:hover, .cont02 li a:hover {
	color: #000;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.cont03 li a {
	color: #000;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.cont03 li a:hover {
	color: #db514e;
	background: url(images/arr02.jpg) 0 5px no-repeat;
}
.event {
	width: 100%;
	margin-bottom: 20px;
	display: inline-block;
}
.event01 {
	width: 20%;
	display: inline-block;
}
.event02 {
	width: 75%;
	float: right;
	text-align:justify;
}
.content02 {
	border-top: 1px solid #b8b8b8;
	border-bottom: 1px solid #b8b8b8;
}
.cont05 {
	width: 49%;
	float: left;
	margin: 20px 0px;
}
.cont05 h1 {
	width: 40%;
}
.chairman {
	width: 20%;
	float: left;
}
.chairmantext {
	width: 75%;
	float: right;
}
.cont06 {
	width: 50%;
	float: right;
}
.cont06 h1 {
	width: 40%;
}
.tnea {
	width: 50%;
	float: left;
	height:275px;
	padding: 25px 0px;
	background-color: #db514e;
}
.tnea h5 {
	color: #fff;
	padding: 10px;
	text-align: center;
	background-color: #393939;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.tnea ul {
	color: #fff;
	font-size: 14px;
	list-style: none;
	margin-bottom: 25px;
	text-transform: uppercase;
	padding: 20px 20px 0px 20px;
	font-family: 'Halant', serif;
}
.tnea li {
	margin-bottom: 5px;
}
.circular {
	width: 45%;
	float: right;
	margin: 20px 0px;
}
.circular li {
	list-style: none;
	margin-bottom: 0px;
	padding: 0px 0px 0px 20px;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.content03 h1 {
	width: 32%;
}
.edu {
	float: left;
	width: 100%;
	padding: 20px 0px 0px 0px;
	background-color: #f4ede3;
}
.educationPartners {
	width: 90%;
	float: left;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	margin: 15px 0px;
}
.edu01 a {
	color: #c1923f;
	text-transform: uppercase;
}
.edu01 a:hover {
	color: #000;
}
.cont07 {
	width: 40%;
	float: left;
}
.cont07 h1 {
	width: 51%;
}
.aluminiWork {
	width: 100%;
	float: left;
	height: 160px;
	border: 1px solid #ccc;
}
.aluminiWork img {
	float: left;
	margin: 50px 30px 0px 30px;
}
.cont08 {
	width: 50%;
	float: right;
}
.cont08 h1 {
	width: 29%;
}
.paavaiNews {
	width: 100%;
	float: left;
	height: 160px;
	border: 1px solid #ccc;
}
.paavaiNews img {
	float: left;
	margin: 10px 0px 0px 20px;
}
.content05 {
	padding: 25px;
	margin: 40px 0px;
	background-color: #ffffff;
}
.cont09 {
	width: 45%;
	float: left;
}
.cont09 h1 {
	width: 58%;
}
.studentImpression, .vipImpression {
	width: 100%;
	float: left;
	height: 160px;
}
.studentImpression img, .vipImpression img {
	float: left;
}
.stu01 {
	width: 27%;
	float: left;
	border: 10px solid #fff;
}
.stu02 {
	width: 65%;
	float: left;
}
.stu02 p {
	padding: 15px;
}
.stu02 h2 {
	font-size: 14px;
	padding: 5px 15px;
	background-color: #fff;
	text-transform: uppercase;
}
.cont10 {
	width: 45%;
	float: right;
}
.cont10 h1 {
	width: 42%;
}
.footer_bg {
	float: left;
	color: #ccc;
	width: 100%;
	padding: 40px 0px;
	background-color: #303030;
}
.footer_bg h1 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.footer01 {
	width: 20%;
	float: left;
}
.footer02 {
	width: 40%;
	float: left;
	margin: 0px 30px;
}
.contact01 {
	width: 40%;
	float: left;
}
.contact02 {
	width: 57%;
	padding-left:20px;
	float: right;
}
.footer02 a {
	color: #fff;
}
.footer02 a:hover {
	text-decoration: underline;
}
.footer03 {
	width: 20%;
	float: right;
}
.footer_bg img {
	margin-right: 5px;
}
.footer_bg a:hover img {
	opacity: 0.8;
}
.copyright_bg {
	float: left;
	color: #ccc;
	width: 100%;
	padding: 10px 0px;
	background-color: #000;
}
.copyright {
	width: 50%;
	float: left;
}
.designed {
	width: 50%;
	float: left;
	text-align: right;
}
.designed a {
	color: #fff;
}
.designed a:hover {
	text-decoration: underline;
}
.marquee-vert, .marquee-vert1 {
	height: 250px;
	overflow: hidden;
}
.marquee-vert2 {
	height: 90px;
	overflow: hidden;
}
/* Start of Subpage CSS */
.sublft, .subrht {
	width: 27%;
	float: left;
}
.sublft h1 a {
	color: #000;
}
.sublft h1 a:hover {
	color: #009BD1;
}
.sublft ul {
	font-size: 14px;
	list-style: none;
	text-transform: uppercase;
	font-family: 'Halant', serif;
}
.menusection {
	background: #f3f3f1;
	padding: 20px 10px;
}
.sublft ul ul {
	text-transform: none;
	padding: 5px 0px 5px 20px;
}
.sublft li a {
	color: #009BD1;
	display: block;
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
	background: url(images/arr02.jpg) 0 5px no-repeat;
}
.sublft li .event02 a, .sublft li .event02 a:hover {
	background: none;
	padding: 0px;
}
.sublft li .on {
	color: #000;
}
.sublft li a:hover {
	color: #000;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.sublft li li .on {
	color: #c1923f;
}
.sublft li li a {
	color: #000;
	text-decoration: underline;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.sublft li li a:hover {
	color: #009BD1;
	background: url(images/arr02.jpg) 0 5px no-repeat;
}
.ins {
	float: left;
	width: 100%;
	padding-top: 40px;
}
.ins ul {
	font-size: 14px;
	list-style: none;
	margin-bottom: 25px;
	text-transform: uppercase;
	font-family: 'Halant', serif;
}
.ins li a {
	color: #000;
	display: block;
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.ins li a:hover {
	color: #009BD1;
	background: url(images/arr02.jpg) 0 5px no-repeat;
}
.subcontent {
	width: 63%;
	float: left;
	margin: 0px 0px 0px 6%;
	font-family:trebuchet Ms;
	font-size:12px;
	
}
.subcontent h2 {
	color: #009BD1;
	font-size: 20px;
	margin-top: 10px;
	text-transform: uppercase;
}
.subcontent h4 {
	font-size: 20px;
	text-align: left;
	margin-top: 10px;
}
.subcontent h5 {
	margin-top: 10px;
}
.subcontent ul {
	list-style: none;
	margin: 10px 20px;
}
.subcontent li {
	list-style: none;
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
	background: url(images/arr01.jpg) 0 5px no-repeat;
	font-family:trebuchet Ms;
	font-size:14px;
	line-height:24px;
}
.subcontent p, .subcontent ul {
	font-size: 14px;
	line-height: 30px;
	text-align:justify;
}
.subcontent a {
	color: #009BD1;
	text-decoration: underline;
}
.subcontent a:hover {
	color: #000;
}
.blogPagination {
	float: left;
	width: 100%;
}
.postDate {
	text-transform: none !important;
}
.nav-next {
	float: right;
}
.nav-previous {
	float: left;
}
.galleryContainer {
	float: left;
	width: 100%;
	margin-top: 20px;
}
.galleryContainer > ul {
	float: left;
	margin: 0;
}
.galleryContainer li {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	float: left;
	margin-right: 10px;
	padding-left: 0;
	width: 150px;
}
.galleryContainer li img {
	border: 1px solid #b8b8b8;
	height: 100px;
	padding: 2px;
	width: 200px;
}

.MoreRht {
	float: right;
}
.impressionCon {
	float: left;
	padding-bottom: 0px;
	width: 100%;
}
.hrs {
	height: 2px;
	float: left;
	width: 100%;
	margin: 20px 0;
	background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(159,34,31,0.10), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(159,34,31,0.10), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(159,34,31,0.10), rgba(0,0,0,0));
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(159,34,31,0.10), rgba(0,0,0,0));
}
.impressionImg {
	float: left;
	margin: 0 15px 0 0;
	width: 24%;
}
.impresContent {
	float: left;
	width: 100%;
}
.impresContent p{
	text-align:justify;
}
.impresContent h3 {
	margin-bottom: 5px;
}
.impressionImg img {
	border: 1px solid #ccc;
	padding: 2px;
}
.pagination {
	float: right;
	width: auto;
}
.pagination li {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 1px solid #ccc;
	float: left;
	margin-right: 5px;
	padding: 2px 6px;
}
.pagination li a {
	color: #009BD1;
	text-decoration: none;
}
.pagination .active > a {
	color: #000;
	text-decoration: underline;
}
.enquiry .inputrow {
	float: left;
	width: 100%;
}
.enquiry .label {
	float: left;
	font-size: 16px;
	text-align: left;
	width: 30%;
}
.enquiry .colon {
	float: left;
	margin-right: 10px;
}
.enquiry .inputcol {
	float: left;
	margin: 0 0 10px;
	width: 60%;
}
.enquiry .input {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	padding: 8px 10px;
	width: 180px;
}
.enquiry .input1 {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 8px 10px;
	resize: none;
	width: 180px;
}
.enquiry .btn {
	background: #009BD1;
	border: 0 none;
	color: #fff;
	cursor: pointer;
	margin-right: 10px;
	padding: 5px 15px;
}
.errorMsg {
	color: #900;
	font-size: 12px;
	height: 15px;
}
.enqFormStar {
	color: #900;
}
.contactAddress {
	border-right: 1px dotted #ccc;
	float: left;
	margin-bottom: 20px;
	padding-right: 5%;
	width: 40%;
}
.phoneEmailAddress {
	float: left;
	margin-bottom: 20px;
	padding-left: 20px;
	width: 60%;
}
.failureMsg {
	font-size: 16px;
	color: #C00;
	margin-bottom: 20px;
}
.successMsg {
	font-size: 16px;
	color: #060;
	margin-bottom: 20px;
}
.designation {
	color: #c1923f;
	float: right;
	font-size: 14px !important;
	font-style: italic;
	text-align: right;
	clear:both;
}
/*Gallery Section*/
.photoGalleryContainer {
	/*float: left;*/
	width: 100%;
}
.photoGalleryContainer a{
	text-decoration:none;
}
.galSec {
	background: rgba(52, 28, 15, 0.28) none repeat scroll 0 0;
	border: 1px solid gray;
	float: left;
	height: 180px;
	margin: 0 12px 20px 0 !important;
	padding: 5px;
	text-align: center;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
	width: 163px;
	padding: 70px 0;
	text-transform: uppercase;
}
.videoContainer p {
	font-size: 12px;
	line-height: normal;
	margin: 5px auto;
	padding: 0;
	text-transform: none;
	text-align: center;
	color: #fff;
	text-decoration: none;
	height: auto !important;
}
.ngg-album-compact h4 a:hover {
	color: #fff;
	text-decoration: underline;
}
.videoContainer {
	float: left;
	margin: 0 1% 1% 0;
	width: 48%;
}
.ngg-album-compactbox .Thumb {
	border: 0px !important;
}	
.photoGalleryContainer img{
	padding:2px;
	border: 1px solid #eee;
	margin:0 1% 1% 0;
}
.videoContainer p {
	font-size: 12px;
	line-height: normal;
	margin: 5px auto;
	padding: 0;
	text-transform: none;
}
.ngg-album-compact h4 a:hover {
	color: #fff;
	text-decoration: underline;
}
.videoContainer {
	float: left;
	margin: 0 1% 1% 0;
	width: 48%;
}
.ngg-album-compactbox .Thumb {
	border: 0px !important;
}
.videoImg, .videoTitle {
	float: left;
	width: 100%;
}
.videoTitle {
	background: #009BD1;
	height: 40px;
}
.lpbModal.cboxElement {
	display: block;
}
.videoTitle h4 {
	margin: 0;
}
/*Gallery Section starts here*/
/*Accordion starts here*/
#accordion {
	float: left;
	width: 100%;
}
#accordion > h3 {
	background: #009BD1;
	border-bottom: 1px solid #393939;
	color: rgb(255, 255, 255);
	cursor: pointer;
	font-size: 14px;
	margin: 0;
	padding: 10px 20px;
	text-transform: uppercase;
}
.accordion-content {
	background-color: rgb(246, 246, 246);
	border: 1px solid rgb(204, 204, 204);
	float: left;
	margin: 0 0 15px;
	padding: 15px;
	width: 100%;
}
.minus {
	background: url("images/slide_arr.png") no-repeat scroll 1px 8px;
	float: left;
	height: 20px;
	padding-right: 20px;
	width: 7px;
}
.plus {
	background: url("images/slide_arr1.png") no-repeat scroll 1px 8px;
	float: left;
	height: 20px;
	padding-right: 20px;
	width: 7px;
}
.downloadSec img {
	float: right;
}
/*Accordion ends here*/
.alignright {
	float: right;
}
.navi {
	color: #000;
	float: left;
	font-size: 12px;
	margin-bottom: 20px;
	text-transform: uppercase;
	width: 100%;
}
.navi a {
	color: #999;
}
.navi a {
	color: #999;
}
.tablescroll {
	float: left;
	margin: 10px 0;
	overflow-x: scroll;
	width: 100%;
}
.subcontent table {
	border-collapse: collapse;
	border-color: #ccc;
	text-align: left;
	width: 100%;
}

.subcontent table tr:first-child { background-color: #db514e; color:whitesmoke; text-align:center; }

.subcontent table tr {
	border: 1px solid black;
}
.subcontent table th {
	background-color: #009BD1;
	border: 1px solid #ccc;
	color: #000;
	font-weight: bold;
	padding: 10px 5px;
	text-align: center;
}
.subcontent table td {
	font-weight: normal;
	border: 1px solid black;
	padding: 10px 5px;
	text-align:center;
	font-size:14px;
	line-height:30px;
}
.subcontent h3 {
	margin-bottom: 0;
}
.subcontent ul {
	margin-bottom: 20px;
}
.registration {
	float: left;
	padding: 10px 0;
	width: 100%;
}
.registration h6 {
	display: inline-block;
	/*float: left;*/
	font-size: 18px;
	line-height: 24px;
}
.registration a {
	color: #fff;
	display: block;
	margin: 60px auto;
	text-align: center;
	width: 250px;
	text-decoration: none;
}
.registration a:hover {
	color: #fff;
}
.registration .oddlink, .registration .evenlink {
	border-radius: 5px;
	margin: 5px 5px 0 0;
}
.registration .evenlink:hover, .registration .oddlink:hover{
		background-color: #666;
}
.registration .evenlink {
	background-color: #db514e;
}
.registration .oddlink {
	background-color: #999;
}
#html5-watermark > a {
    display: none;
}
.subcontent > p {
    text-align: justify;
}
.alignleft {
    float: left;
    margin: 0 2% 2% 0;
}
.alignright {
    float: right;
    margin: 0 0 2% 2%;
}
.flexImages{
	display:none;
}
/* End of Subpage CSS */
@media only screen and (min-width:960px) and (max-width:1389px) {
.container {
	width: 960px;
}
.container li
	{font-size:12px;
	font-family:trebuchet MS;
	line-height:18px}
.container p, .container td, .container th {
	font-size: 14px;
	line-height: 18px;
}
.prev, .next {
	top: 250px;
}
.content_bg h1 {
	font-size: 20px;
	line-height: 24px;
}
.content_bg h3 {
	font-size: 16px;
}
.content_bg h4 {
	font-size: 20px;
	line-height: 18px;
}
.content_bg h4 span {
	font-size: 14px;
}
.content_bg h5 {
	font-size: 16px;
	margin-bottom: 5px;
}
.content_bg p {
	padding-bottom: 10px;
	text-align:justify;
}
.content01, .content03 {
	margin: 30px 0px;
}
.cont02 ul, .cont03 ul {
	font-size: 13px;
	margin-bottom: 25px;
}
.cont02 h2 {
	font-size: 14px;
	line-height: 20px;
}
p.date {
	font-size: 11px;
	padding-bottom: 30px;
}
.content02 {
	border-top: 1px solid #b8b8b8;
	border-bottom: 1px solid #b8b8b8;
}
.cont05 {
	width: 38%;
	margin: 20px 0px;
}
.cont05 h1 {
	width: 45%;
}
.chairman {
	width: 20%;
}
.chairmantext {
	width: 70%;
}
.cont06 {
	width: 60%;
}
.cont06 h1 {
	width: 75%;
}
.tnea {
	width: 45%;
	padding: 25px 0px;
}
.tnea ul {
	font-size: 13px;
}
.circular {
	width: 50%;
}
.circular li {
	padding: 0px 0px 0px 15px;
	background: url(images/arr01.jpg) 0 5px no-repeat;
}
.content03 h1 {
	width: 28%;
}
.edu {
	padding: 20px 0px 0px 0px;
}
.educationPartners {
	width: 90%;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	margin: 15px 0px;
}
.cont07 {
	width: 40%;
}
.cont07 h1 {
	width: 55%;
}
.aluminiWork {
	height: 125px;
	border: 1px solid #ccc;
}
.aluminiWork img {
	width: 80%;
	margin: 30px 0px 0px 20px;
}
.cont08 {
	width: 50%;
}
.cont08 h1 {
	width: 30%;
}
.paavaiNews {
	height: 125px;
	border: 1px solid #ccc;
}
.paavaiNews img {
	width: 85%;
	margin: 10px 0px 0px 20px;
}
.content05 {
	padding: 25px;
	margin: 30px 0px;
}
.cont09 {
	width: 45%;
}
.cont09 h1 {
	width: 48%;
}
.studentImpression, .vipImpression {
	height: 140px;
}
.cont10 {
	width: 45%;
}
.cont10 h1 {
	width: 36%;
}
.footer_bg {
	padding: 30px 0px;
}
.footer_bg h1 {
	font-size: 16px;
	margin-bottom: 15px;
}
.footer01 {
	width: 21%;
	margin-left:0px;
}
.footer02 {
	width: 40%;
	margin: 0px 70px;
}
.contact01 {
	width: 40%;
	
}
.contact02 {
	width: 60%;
	
}
.footer03 {
	width: 23%;
}
.marquee-vert, .marquee-vert1 {
	height: 250px;
}
.marquee-vert2 {
	height: 90px;
}
/* Start of Subpage CSS */
.sublft ul {
	font-size: 13px;
}
.ins {
	padding-top: 30px;
}
.ins ul {
	font-size: 13px;
	margin-bottom: 25px;
}
.subcontent h2 {
	font-size: 18px;
}
.subcontent h4 {
	font-size: 18px;
}
.subcontent p, .subcontent ul {
	font-size: 13px;
	line-height: 19px;
}
/* End of Subpage CSS */
}
@media only screen and (min-width:768px) and (max-width:990px) {
.container {
	width: 761px;
}
.container p, .container li, .container td, .container th {
	font-size: 9px;
	line-height: 15px;
}
.prev, .next {
	top: 200px;
}
.content_bg h1 {
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid #db514e;
}
.content_bg h3 {
	font-size: 14px;
	margin-bottom: 20px;
}
.content_bg h4 {
	font-size: 18px;
	line-height: 16px;
	padding: 5px 10px 5px 10px;
}
.content_bg h4 span {
	font-size: 10px;
}
.content_bg h5 {
	font-size: 12px;
	margin-bottom: 5px;
}
.content_bg p {
	padding-bottom: 10px;
}
.content01, .content03 {
	margin: 25px 0px;
}
.cont01, .cont02, .cont03, .cont04 {
	width: 22%;
	float: left;
}
.cont02 {
	margin: 0px 2% 0 4%;
}
.cont02 ul, .cont03 ul {
	font-size: 11px;
	margin-bottom: 0px;
}
.cont02 h2 {
	width: 80%;
	font-size: 14px;
	line-height: 18px;
	margin: 20px 0px 15px 0px;
	border-bottom: 2px solid #009BD1;
}
.cont03 {
	margin: 0px 4% 0 2%;
}
p.title {
	font-size: 11px;
}
p.date {
	font-size: 9px;
	padding-bottom: 20px;
}
.cont02 h3 a {
	padding: 3px 30px;
	border: 1px solid #c1bfc0;
}
.cont02 li a, .cont03 li a {
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
}
.event {
	margin-bottom: 10px;
}
.event01 {
	width: 20%;
}
.event02 {
	width: 75%;
}
.cont05 {
	width: 35%;
	margin: 20px 0px;
}
.cont05 h1 {
	width: 63%;
}
.chairman {
	width: 20%;
}
.chairmantext {
	width: 75%;
}
.cont06 {
	width: 60%;
}
.cont06 h1 {
	width: 50%;
}
.tnea {
	width: 60%;
	padding: 25px 0px;
}
.tnea h5 {
	padding: 10px;
}
.tnea ul {
	font-size: 11px;
	margin-bottom: 25px;
	padding: 20px 20px 0px 20px;
}
.tnea li {
	margin-bottom: 5px;
}
.circular {
	width: 35%;
	margin: 20px 0px;
}
.circular li {
	padding: 0px 0px 0px 20px;
}
.content03 h1 {
	width: 32%;
}
.edu {
	width: 100%;
	padding: 20px 0px 0px 0px;
}
.educationPartners {
	width: 90%;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	margin: 15px 0px;
}
.cont07 {
	width: 40%;
}
.cont07 h1 {
	width: 60%;
}
.aluminiWork, .paavaiNews {
	height: 105px;
}
.aluminiWork img {
	margin: 30px 0px 0px 15px;
}
.cont08 {
	width: 50%;
}
.cont08 h1 {
	width: 35%;
}
.paavaiNews img {
	margin: 10px 0px 0px 15px;
}
.content05 {
	padding: 25px;
	margin: 25px 0px;
}
.cont09 {
	width: 45%;
}
.cont09 h1 {
	width: 58%;
}
.studentImpression, .vipImpression {
	height: 120px;
}
.stu01 {
	width: 27%;
	border: 10px solid #fff;
}
.stu02 {
	width: 65%;
}
.stu02 p {
	padding: 10px;
}
.stu02 h2 {
	font-size: 13px;
	padding: 5px 15px;
}
.cont10 {
	width: 45%;
}
.cont10 h1 {
	width: 42%;
}
.footer_bg {
	padding: 40px 0px;
}
.footer_bg h1 {
	font-size: 14px;
	margin-bottom: 15px;
}
.footer01 {
	width: 24%;
}
.footer02 {
	width: 40%;
	margin: 0px 5%;
}
.contact01 {
	width: 30%;
}
.contact02 {
	width: 65%;
}
.footer03 {
	width: 26%;
}
.footer_bg img {
	margin-right: 5px;
}
.copyright_bg {
	padding: 10px 0px;
}
.marquee-vert, .marquee-vert1 {
	height: 250px;
}
.marquee-vert2 {
	height: 90px;
}
/* Start of Subpage CSS */
.sublft ul {
	font-size: 11px;
}
.ins {
	padding-top: 20px;
}
.ins ul {
	font-size: 11px;
	margin-bottom: 25px;
}
.subcontent h2 {
	font-size: 14px;
}
.subcontent h4 {
	font-size: 14px;
}
.subcontent p, .subcontent ul {
	font-size: 10px;
	line-height: 16px;
}
/* End of Subpage CSS */
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.container {
	width: 761px;
}
.container p, .container li, .container td, .container th {
	font-size: 9px;
	line-height: 15px;
}
.prev, .next {
	top: 200px;
}
.content_bg h1 {
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid #009BD1;
}
.content_bg h3 {
	font-size: 14px;
	margin-bottom: 20px;
}
.content_bg h4 {
	font-size: 18px;
	line-height: 16px;
	padding: 5px 10px 5px 10px;
}
.content_bg h4 span {
	font-size: 10px;
}
.content_bg h5 {
	font-size: 12px;
	margin-bottom: 5px;
}
.content_bg p {
	padding-bottom: 10px;
}
.content01, .content03 {
	margin: 25px 0px;
}
.cont01, .cont02, .cont03, .cont04 {
	width: 22%;
	float: left;
}
.cont02 {
	margin: 0px 2% 0 4%;
}
.cont02 ul, .cont03 ul {
	font-size: 11px;
	margin-bottom: 0px;
}
.cont02 h2 {
	width: 80%;
	font-size: 14px;
	line-height: 18px;
	margin: 20px 0px 15px 0px;
	border-bottom: 2px solid #009BD1;
}
.cont03 {
	margin: 0px 4% 0 2%;
}
p.title {
	font-size: 11px;
}
p.date {
	font-size: 9px;
	padding-bottom: 20px;
}
.cont02 h3 a {
	padding: 3px 30px;
	border: 1px solid #c1bfc0;
}
.cont02 li a, .cont03 li a {
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
}
.event {
	margin-bottom: 10px;
}
.event01 {
	width: 20%;
}
.event02 {
	width: 75%;
}
.cont05 {
	width: 35%;
	margin: 20px 0px;
}
.cont05 h1 {
	width: 63%;
}
.chairman {
	width: 20%;
}
.chairmantext {
	width: 75%;
}
.cont06 {
	width: 60%;
}
.cont06 h1 {
	width: 50%;
}
.tnea {
	width: 60%;
	padding: 25px 0px;
}
.tnea h5 {
	padding: 10px;
}
.tnea ul {
	font-size: 11px;
	margin-bottom: 25px;
	padding: 20px 20px 0px 20px;
}
.tnea li {
	margin-bottom: 5px;
}
.circular {
	width: 35%;
	margin: 20px 0px;
}
.circular li {
	padding: 0px 0px 0px 20px;
}
.content03 h1 {
	width: 32%;
}
.edu {
	width: 100%;
	padding: 20px 0px 0px 0px;
}
.educationPartners {
	width: 90%;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	margin: 15px 0px;
}
.cont07 {
	width: 40%;
}
.cont07 h1 {
	width: 60%;
}
.aluminiWork, .paavaiNews {
	height: 105px;
}
.aluminiWork img {
	margin: 30px 0px 0px 15px;
}
.cont08 {
	width: 50%;
}
.cont08 h1 {
	width: 35%;
}
.paavaiNews img {
	margin: 10px 0px 0px 15px;
}
.content05 {
	padding: 25px;
	margin: 25px 0px;
}
.cont09 {
	width: 45%;
}
.cont09 h1 {
	width: 58%;
}
.studentImpression, .vipImpression {
	height: 120px;
}
.stu01 {
	width: 27%;
	border: 10px solid #fff;
}
.stu02 {
	width: 65%;
}
.stu02 p {
	padding: 10px;
}
.stu02 h2 {
	font-size: 13px;
	padding: 5px 15px;
}
.cont10 {
	width: 45%;
}
.cont10 h1 {
	width: 42%;
}
.footer_bg {
	padding: 40px 0px;
}
.footer_bg h1 {
	font-size: 14px;
	margin-bottom: 15px;
}
.footer01 {
	width: 24%;
}
.footer02 {
	width: 40%;
	margin: 0px 5%;
}
.contact01 {
	width: 30%;
}
.contact02 {
	width: 65%;
}
.footer03 {
	width: 26%;
}
.footer_bg img {
	margin-right: 5px;
}
.copyright_bg {
	padding: 10px 0px;
}
.marquee-vert, .marquee-vert1 {
	height: 250px;
}
.marquee-vert2 {
	height: 90px;
}
/* Start of Subpage CSS */
.sublft ul {
	font-size: 11px;
}
.ins {
	padding-top: 20px;
}
.ins ul {
	font-size: 11px;
	margin-bottom: 25px;
}
.subcontent h2 {
	font-size: 14px;
}
.subcontent h4 {
	font-size: 14px;
}
.subcontent p, .subcontent ul {
	font-size: 10px;
	line-height: 16px;
}
/* End of Subpage CSS */
}
@media all and (max-width: 768px) {
.container {
	width: 761px;
}
.container p, .container li, .container td, .container th {
	font-size: 9px;
	line-height: 15px;
}
.prev, .next {
	top: 170px;
}
.content_bg h1 {
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid #009BD1;
}
.content_bg h3 {
	font-size: 14px;
	margin-bottom: 20px;
}
.content_bg h4 {
	font-size: 18px;
	line-height: 16px;
	padding: 5px 10px 5px 10px;
}
.content_bg h4 span {
	font-size: 10px;
}
.content_bg h5 {
	font-size: 12px;
	margin-bottom: 5px;
}
.content_bg p {
	padding-bottom: 10px;
}
.content01, .content03 {
	margin: 25px 0px;
}
.cont01, .cont02, .cont03, .cont04 {
	width: 22%;
	float: left;
}
.cont02 {
	margin: 0px 2% 0 4%;
}
.cont02 ul, .cont03 ul {
	font-size: 11px;
	margin-bottom: 0px;
}
.cont02 h2 {
	width: 80%;
	font-size: 14px;
	line-height: 18px;
	margin: 20px 0px 15px 0px;
	border-bottom: 2px solid #009BD1;
	overflow-y:scroll !important;
}
.cont03 {
	margin: 0px 4% 0 2%;
}
p.title {
	font-size: 11px;
}
p.date {
	font-size: 9px;
	padding-bottom: 20px;
}
.cont02 h3 a {
	padding: 3px 30px;
	border: 1px solid #c1bfc0;
}
.cont02 li a, .cont03 li a {
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
}
.event {
	margin-bottom: 10px;
}
.event01 {
	width: 20%;
}
.event02 {
	width: 75%;
}
.cont05 {
	width: 35%;
	margin: 20px 0px;
}
.cont05 h1 {
	width: 63%;
}
.chairman {
	width: 20%;
}
.chairmantext {
	width: 75%;
}
.cont06 {
	width: 60%;
}
.cont06 h1 {
	width: 50%;
}
.tnea {
	width: 60%;
	padding: 25px 0px;
}
.tnea h5 {
	padding: 10px;
}
.tnea ul {
	font-size: 11px;
	margin-bottom: 25px;
	padding: 20px 20px 0px 20px;
}
.tnea li {
	margin-bottom: 5px;
}
.circular {
	width: 35%;
	margin: 20px 0px;
}
.circular li {
	padding: 0px 0px 0px 20px;
}
.content03 h1 {
	width: 32%;
}
.edu {
	width: 100%;
	padding: 20px 0px 0px 0px;
}
.educationPartners {
	width: 90%;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	margin: 15px 0px;
}
.cont07 {
	width: 40%;
}
.cont07 h1 {
	width: 60%;
}
.aluminiWork, .paavaiNews {
	height: 160px;
}
.aluminiWork img {
	margin: 50px 0px 0px 65px;
}
.cont08 {
	width: 50%;
}
.cont08 h1 {
	width: 35%;
}
.paavaiNews img {
	margin: 10px 0px 0px 55px;
}
.content05 {
	padding: 25px;
	margin: 25px 0px;
}
.cont09 {
	width: 45%;
}
.cont09 h1 {
	width: 58%;
}
.studentImpression, .vipImpression {
	height: 120px;
}
.stu01 {
	width: 27%;
	border: 10px solid #fff;
}
.stu02 {
	width: 65%;
}
.stu02 p {
	padding: 10px;
}
.stu02 h2 {
	font-size: 13px;
	padding: 5px 15px;
}
.cont10 {
	width: 45%;
}
.cont10 h1 {
	width: 42%;
}
.footer_bg {
	padding: 40px 0px;
}
.footer_bg h1 {
	font-size: 14px;
	margin-bottom: 15px;
}
.footer01 {
	width: 24%;
}
.footer02 {
	width: 40%;
	margin: 0px 5%;
}
.contact01 {
	width: 30%;
}
.contact02 {
	width: 65%;
}
.footer03 {
	width: 26%;
}
.footer_bg img {
	margin-right: 5px;
}
.copyright_bg {
	padding: 10px 0px;
}
.marquee-vert, .marquee-vert1 {
	height: 250px;
}
.marquee-vert2 {
	height: 90px;
}
/* Start of Subpage CSS */
.sublft ul {
	font-size: 11px;
}
.ins {
	padding-top: 20px;
}
.ins ul {
	font-size: 11px;
	margin-bottom: 25px;
}
.subcontent h2 {
	font-size: 14px;
}
.subcontent h4 {
	font-size: 14px;
}
.subcontent p, .subcontent ul {
	font-size: 10px;
	line-height: 16px;
}
/* End of Subpage CSS */
}
@media only screen and (max-width:767px) {
.container {
	width: 300px;
}
.container p, .container li, .container td, .container th {
	font-size: 8px;
	line-height: 14px;
}
.prev, .next {
	top: 80px;
	width: 25px;
	height: 25px;
	background: url(images/arr_lft1.png) 0 0 no-repeat;
}
.next {
	right: 0px;
	background: url(images/arr_rht1.png) 0 0 no-repeat;
}
.content_bg h1 {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 15px;
	border-bottom: 2px solid #009BD1;
}
.content_bg h3 {
	font-size: 11px;
	margin-bottom: 20px;
}
.content_bg h4 {
	font-size: 14px;
	line-height: 16px;
	padding: 5px 10px 5px 10px;
}
.content_bg h4 span {
	font-size: 9px;
}
.content_bg h5 {
	font-size: 10px;
	margin-bottom: 5px;
}
.content_bg p {
	padding-bottom: 10px;
}
.content01, .content03 {
	margin: 10px 0px 0px 0px;
}
.cont01, .cont02, .cont03, .cont04 {
	width: 48%;
	float: left;
	height: 280px;
}
.cont02, .cont04 {
	margin: 0px;
	float: right;
}
.cont03 {
	margin: 0px;
}
.cont02 ul, .cont03 ul {
	font-size: 8px;
	margin-bottom: 0px;
}
.cont02 h2 {
	width: 80%;
	font-size: 11px;
	line-height: 16px;
	margin: 20px 0px 15px 0px;
	border-bottom: 2px solid #009BD1;
}
p.title {
	font-size: 9px;
}
p.date {
	font-size: 7px;
	padding-bottom: 10px;
}
.cont02 h3 a {
	padding: 3px 30px;
	border: 1px solid #c1bfc0;
}
.cont02 li a, .cont03 li a {
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
}
.event {
	margin-bottom: 10px;
}
.event01 {
	width: 20%;
}
.event02 {
	width: 75%;
}
.cont05 {
	width: 100%;
	margin: 10px 0px;
}
.cont05 h1 {
	width: 33%;
}
.chairman {
	width: 20%;
}
.chairmantext {
	width: 75%;
}
.cont06 {
	width: 100%;
}
.cont06 h1 {
	width: 50%;
}
.tnea {
	width: 55%;
	padding: 10px 0px;
}
.tnea h5 {
	padding: 10px;
}
.tnea ul {
	font-size: 7px;
	margin-bottom: 10px;
	padding: 10px 20px 0px 10px;
}
.tnea li {
	margin-bottom: 0px;
}
.circular {
	width: 40%;
	margin: 0px;
}
.circular li {
	padding: 0px 0px 0px 20px;
}
.content03 h1 {
	width: 55%;
}
.edu {
	width: 100%;
	margin-bottom: 10px;
	padding: 10px 0px 0px 0px;
}
.educationPartners {
	width: 90%;
	height: 115px;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	width: 50%;
	margin: 0px;
}
.cont07 {
	width: 48%;
}
.cont07 h1 {
	width: 90%;
}
.aluminiWork, .paavaiNews {
	height: 76px;
}
.aluminiWork img {
	width: 50%;
	margin: 25px 0px 0px 30px;
}
.cont08 {
	width: 48%;
	float: right;
}
.cont08 h1 {
	width: 65%;
}
.paavaiNews img {
	margin: 0px;
}
.content05 {
	padding: 10px;
	margin: 10px 0px;
}
.cont09 {
	width: 100%;
	margin-bottom: 10px;
}
.cont09 h1 {
	width: 43%;
}
.studentImpression, .vipImpression {
	height: 120px;
}
.stu01 {
	width: 27%;
	border: 5px solid #fff;
}
.stu02 {
	width: 65%;
}
.stu02 p {
	padding: 5px;
}
.stu02 h2 {
	font-size: 10px;
	padding: 5px 15px;
}
.cont10 {
	width: 100%;
}
.cont10 h1 {
	width: 31%;
}
.footer_bg {
	padding: 20px 0px;
}
.footer_bg h1 {
	font-size: 11px;
	margin-bottom: 3px;
}
.footer01 {
	width: 50%;
	text-align: center;
}
.footer01 img {
	width: 80%;
}
.footer02 {
	width: 48%;
	margin: 0px 0px 20px 2%;
}
.contact01 {
	width: 100%;
}
.contact02 {
	width: 100%;
}
.footer03 {
	width: 48%;
	margin: 0px 0px 0px 2%;
}
.footer03 img {
	width: 20px;
}
.footer_bg img {
	margin-right: 5px;
}
.copyright_bg {
	padding: 10px 0px;
}
.marquee-vert, .marquee-vert1 {
	height: 230px;
}
.marquee-vert2 {
	height: 90px;
}
/* Start of Subpage CSS */
.subnone {
	display: none;
}
.sublft, .subrht {
	width: 100%;
}
.sublft ul {
	font-size: 9px;
}
.ins {
	padding-top: 10px;
}
.ins ul {
	font-size: 9px;
	margin-bottom: 10px;
}
.subcontent {
	width: 100%;
	margin: 10px 0px;
}
.subcontent h2 {
	font-size: 12px;
}
.subcontent h4 {
	font-size: 12px;
}
.subcontent p, .subcontent ul {
	font-size: 9px;
	line-height: 13px;
}
/* End of Subpage CSS */
}
@media only screen and (min-width:480px) and (max-width:767px) {
.container {
	width: 420px;
}
.container p, .container li, .container td, .container th {
	font-size: 9px;
	line-height: 15px;
}
.prev, .next {
	top: 100px;
}
.content_bg h1 {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid #009BD1;
}
.content_bg h3 {
	font-size: 12px;
	margin-bottom: 20px;
}
.content_bg h4 {
	font-size: 16px;
	line-height: 16px;
	padding: 5px 10px 5px 10px;
}
.content_bg h4 span {
	font-size: 10px;
}
.content_bg h5 {
	font-size: 11px;
	margin-bottom: 5px;
}
.content_bg p {
	padding-bottom: 10px;
}
.content01, .content03 {
	margin: 15px 0px 0px 0px;
}
.cont01, .cont02, .cont03, .cont04 {
	width: 48%;
	float: left;
	height: 250px;
}
.cont02, .cont04 {
	margin: 0px;
	float: right;
}
.cont03 {
	margin: 0px;
}
.cont02 ul, .cont03 ul {
	font-size: 9px;
	margin-bottom: 0px;
}
.cont02 h2 {
	width: 80%;
	font-size: 12px;
	line-height: 18px;
	margin: 20px 0px 15px 0px;
	border-bottom: 2px solid #009BD1;
}
p.title {
	font-size: 10px;
}
p.date {
	font-size: 8px;
	padding-bottom: 20px;
}
.cont02 h3 a {
	padding: 3px 30px;
	border: 1px solid #c1bfc0;
}
.cont02 li a, .cont03 li a {
	margin-bottom: 5px;
	padding: 0px 0px 0px 20px;
}
.event {
	margin-bottom: 10px;
}
.event01 {
	width: 20%;
}
.event02 {
	width: 75%;
}
.cont05 {
	width: 100%;
	margin: 20px 0px;
}
.cont05 h1 {
	width: 28%;
}
.chairman {
	width: 20%;
}
.chairmantext {
	width: 75%;
}
.cont06 {
	width: 100%;
}
.cont06 h1 {
	width: 50%;
}
.tnea {
	width: 55%;
	padding: 10px 0px;
}
.tnea h5 {
	padding: 10px;
}
.tnea ul {
	font-size: 9px;
	margin-bottom: 25px;
	padding: 20px 20px 0px 20px;
}
.tnea li {
	margin-bottom: 5px;
}
.circular {
	width: 40%;
	margin: 0px;
}
.circular li {
	padding: 0px 0px 0px 20px;
}
.content03 h1 {
	width: 45%;
}
.edu {
	width: 100%;
	margin-bottom: 20px;
	padding: 10px 0px 0px 0px;
}
.educationPartners {
	width: 90%;
	height: 170px;
	margin: 0px 5%;
}
.educationPartners .edu01 {
	padding: 0px 5%;
}
.edu01 img {
	margin: 15px 0px;
}
.cont07 {
	width: 48%;
}
.cont07 h1 {
	width: 75%;
}
.aluminiWork, .paavaiNews {
	height: 106px;
}
.aluminiWork img {
	width: 70%;
	margin: 25px 0px 0px 30px;
}
.cont08 {
	width: 48%;
	float: right;
}
.cont08 h1 {
	width: 52%;
}
.paavaiNews img {
	margin: 0px;
}
.content05 {
	padding: 15px;
	margin: 20px 0px;
}
.cont09 {
	width: 100%;
	margin-bottom: 20px;
}
.cont09 h1 {
	width: 35%;
}
.studentImpression, .vipImpression {
	height: 120px;
}
.stu01 {
	width: 27%;
	border: 5px solid #fff;
}
.stu02 {
	width: 65%;
}
.stu02 p {
	padding: 10px;
}
.stu02 h2 {
	font-size: 13px;
	padding: 5px 15px;
}
.cont10 {
	width: 100%;
}
.cont10 h1 {
	width: 26%;
}
.footer_bg {
	padding: 20px 0px;
}
.footer_bg h1 {
	font-size: 12px;
	margin-bottom: 10px;
}
.footer01 {
	width: 50%;
	text-align: center;
}
.footer01 img {
	width: 80%;
}
.footer02 {
	width: 48%;
	margin: 0px 0px 20px 2%;
}
.contact01 {
	width: 100%;
}
.contact02 {
	width: 100%;
}
.footer03 {
	width: 48%;
	margin: 0px 0px 0px 2%;
}
.footer03 img {
	width: 20px;
}
.footer_bg img {
	margin-right: 5px;
}
.copyright_bg {
	padding: 10px 0px;
}
.marquee-vert, .marquee-vert1 {
	height: 230px;
}
.marquee-vert2 {
	height: 90px;
}
/* Start of Subpage CSS */
.subnone {
	display: none;
}
.sublft, .subrht {
	width: 100%;
}
.sublft ul {
	font-size: 10px;
}
.ins {
	padding-top: 20px;
}
.ins ul {
	font-size: 10px;
	margin-bottom: 20px;
}
.subcontent {
	width: 100%;
	margin: 20px 0px;
}
.subcontent h2 {
	font-size: 14px;
}
.subcontent h4 {
	font-size: 14px;
}
.subcontent p, .subcontent ul {
	font-size: 10px;
	line-height: 15px;
}
/* End of Subpage CSS */
}
/*
/* Flex slider starts */
.flex-direction-nav a {
	width: 25px;
	height: 25px;
	display: block;
	cursor: pointer;
	position: relative;
	text-indent: -9999px;
	-webkit-transition: all .3s ease;
}
.flex-next:hover, .flex-prev:hover {
	opacity: 0.5;
}
.educationPartners .flex-prev {
	top: -100px;
	left: -55px;
	background: url(../images/arr_lft1.png) no-repeat 0 0;
}
.educationPartners .flex-next {
	top: -125px;
	left: 103%;
	background: url(../images/arr_rht1.png) no-repeat 0 0;
}
.aluminiWork .flex-prev {
	top: -40px;
	left: -14px;
	background: url(../images/arr_lft1.png) no-repeat 0 0;
}
.aluminiWork .flex-next {
	top: -65px;
	left: 97.5%;
	background: url(../images/arr_rht1.png) no-repeat 0 0;
}
.paavaiNews .flex-prev {
	top: -80px;
	left: -14px;
	background: url(../images/arr_lft1.png) no-repeat 0 0;
}
.paavaiNews .flex-next {
	top: -100px;
	left: 97.5%;
	background: url(../images/arr_rht1.png) no-repeat 0 0;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 75%;
	top: -180px;
	background: url(../images/arr_lft1.png) no-repeat 0 0;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 80%;
	top: -205px;
	background: url(../images/arr_rht1.png) no-repeat 0 0;
}
@media only screen and (min-width:960px) and (max-width:1389px) {
.educationPartners .flex-prev {
	top: -100px;
	left: -30px;
}
.educationPartners .flex-next {
	top: -125px;
	left: 100%;
}
.aluminiWork .flex-prev {
	top: -45px;
	left: -14px;
}
.aluminiWork .flex-next {
	top: -70px;
	left: 97.5%;
}
.paavaiNews .flex-prev {
	top: -70px;
	left: -14px;
}
.paavaiNews .flex-next {
	top: -95px;
	left: 97.5%;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 78%;
	top: -175px;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 85%;
	top: -200px;
}
}
@media only screen and (min-width:768px) and (max-width:990px) {
.aluminiWork .flex-prev {
	top: -40px;
	left: -13px;
}
.aluminiWork .flex-next {
	top: -65px;
	left: 96%;
}
.paavaiNews .flex-prev {
	top: -55px;
	left: -13px;
}
.paavaiNews .flex-next {
	top: -80px;
	left: 97%;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 75%;
	top: -160px;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 85%;
	top: -185px;
}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.aluminiWork .flex-prev {
	top: -40px;
	left: -13px;
}
.aluminiWork .flex-next {
	top: -65px;
	left: 96%;
}
.paavaiNews .flex-prev {
	top: -55px;
	left: -13px;
}
.paavaiNews .flex-next {
	top: -80px;
	left: 97%;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 75%;
	top: -160px;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 85%;
	top: -185px;
}
}
@media all and (max-width: 768px) {
.educationPartners .flex-prev {
	top: -100px;
	left: -30px;
}
.educationPartners .flex-next {
	top: -125px;
	left: 100%;
}
.aluminiWork .flex-prev {
	top: -40px;
	left: 0px;
}
.aluminiWork .flex-next {
	top: -65px;
	left: 90%;
}
.paavaiNews .flex-prev {
	top: -75px;
	left: 0px;
}
.paavaiNews .flex-next {
	top: -100px;
	left: 90%;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 75%;
	top: -160px;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 85%;
	top: -185px;
}
}
@media only screen and (max-width:767px) {
.educationPartners .flex-prev {
	top: -70px;
	left: -14px;
}
.educationPartners .flex-next {
	top: -95px;
	left: 96%;
}
.aluminiWork .flex-prev {
	top: -30px;
	left: -1px;
}
.aluminiWork .flex-next {
	top: -55px;
	left: 83%;
}
.paavaiNews .flex-prev {
	top: -49px;
	left: -1px;
}
.paavaiNews .flex-next {
	top: -74px;
	left: 83%;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 70%;
	top: -130px;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 80%;
	top: -155px;
}
}
@media only screen and (min-width:480px) and (max-width:767px) {
.educationPartners .flex-prev {
	top: -90px;
	left: -22px;
}
.educationPartners .flex-next {
	top: -115px;
	left: 99%;
}
.aluminiWork .flex-prev {
	top: -45px;
	left: -1px;
}
.aluminiWork .flex-next {
	top: -70px;
	left: 88%;
}
.paavaiNews .flex-prev {
	top: -67px;
	left: -1px;
}
.paavaiNews .flex-next {
	top: -93px;
	left: 88%;
}
.studentImpression .flex-prev, .vipImpression .flex-prev {
	left: 78%;
	top: -140px;
}
.studentImpression .flex-next, .vipImpression .flex-next {
	left: 85%;
	top: -165px;
}
}
/* flex slider Ends */
