/*
Theme Name: MManager
Theme URI: http://wordpress.org/extend/themes/twentytwelve
Author: the MindMagnet team
Author URI: http://mindmagnetsoftware.com/
Description: 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: mmanager

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     12;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

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%;
	vertical-align: baseline;
}
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;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
.entry img {
	border: 1px solid #DDDDDD;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 0 5px #DDDDDD;
    padding: 5px;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}

/* = Columns
-------------------------------------------------------------- */
.twocol-one, 
.threecol-one, 
.fourcol-one, 
.fivecol-one{
    float: left;
    margin-right: 4%;
    position: relative;
}
.twocol-one {
    width: 48%;
}
.twocol-one.last, 
.threecol-one.last, 
.fourcol-one.last, 
.fivecol-one.last {
    clear: right;
    margin-right: 0 !important;
}
.threecol-one {
    width: 30.66%;
}
.fourcol-one {
    width: 22%;
}

/* = Boxes
-------------------------------------------------------------- */
.box {
    border-style: solid;
    border-width: 1px 0;
    color: #555555;
    margin: 1em 0 1.5em;
    padding: 15px 10px 15px 50px;
    text-shadow: none;
}
.box.info {
    background: url("images/ico-info.png") no-repeat scroll 20px 15px #EEEEEE;
    border-color: #DCDCDC;
}
.box.tick {
    background: url("images/ico-tick.png") no-repeat scroll 20px 15px #EDFCD5;
    border-color: #D4EBAF;
}
.box.download {
    background: url("images/ico-download.png") no-repeat scroll 20px 15px #EDFCD5;
    border-color: #D4EBAF;
}
.box.note {
    background: url("images/ico-note.png") no-repeat scroll 20px 15px #FEF6D2;
    border-color: #EFE3AE;
}
.box.alert {
    background: url("images/ico-alert.png") no-repeat scroll 20px 15px #FFD9C8;
    border-color: #F8C0C0;
}
/* = blockquote
-------------------------------------------------------------- */
blockquote{
	background: url("images/blockquote.gif") no-repeat scroll 10px 10px #FFFFFF;
    border: 1px solid #DEDEDE;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 
        1px 1px 0 #FFFFFF, 
        2px 2px 0 rgba(0, 0, 0, 0.1), 
        3px 3px 0 #FFFFFF, 
        4px 4px 0 rgba(0, 0, 0, 0.125), 
        6px 6px 0 #FFFFFF;
    color: #767676;
    float: left;
    font-family: georgia;
    font-size: 16px;
    font-style: italic;
    line-height: 22px;
    margin: 10px 0;
    padding: 20px 20px 20px 65px;
    position: relative;
    width: 99%;
}
	blockquote span{
		float: right;
	    font-style: normal;
	    padding-top: 10px;
	}
/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}
*{
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
}
/* Buttons */

a, a:hover, input[type="submit"], input[type="submit"]:hover{
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
a,p{
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}

.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border: none;
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content .main-navigation {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 11px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */
h1{
	font-family: 'Alegreya',serif;
	font-style: italic;
	font-size: 32px;
	line-height: 34px;
	padding-bottom: 20px;
}
h2, h3, h4, h5, h6{
	font-family: "open sans", Arial, sans-serif;	
	font-weight: 300;
	padding-bottom: 10px;
}
h2{
	font-size: 28px;
    line-height: 34px;
}
h3{
	color: #676767;
    font-size: 24px;
    line-height: 28px;
}
h4{
	color: #A6A6A6;
    font-size: 20px;
    line-height: 26px;
}
h5{
	border-bottom: 1px solid #DBD9C8;
    color: #676767;
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0;
    padding-bottom: 5px;
}
h6{
	color: #676767;
	font-size: 16px;
	line-height: 22px;
}
ul, ol {
    margin: 0 0 14px 14px;
}
ul li{
	list-style-type: none;
	line-height: 22px;
    padding-left: 25px;
}
	ol li{
		list-style: decimal inside none;;
		line-height: 22px;
	}
	.tick li{
		background: url("images/shortcode-tick.png") no-repeat scroll left top transparent;
	}
	.bullet li{
		background: url("images/shortcode-bullet.png") no-repeat scroll left top transparent;
	}
	.star li{
		background: url("images/shortcode-star.png") no-repeat scroll left top transparent;
	}
	.arrow li{
		background: url("images/shortcode-arrow.png") no-repeat scroll left top transparent;
	}
.entry p{
	padding: 5px 0;
}
.first_p{
	font-weight: 600;
}
.first_p, .second_p{
	line-height: 16px;
	padding-bottom: 30px;
}
/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	background:url(images/bg/bg1.png) center top no-repeat #E9E6D5;
	font-size: 11px;
	font-family: "Open Sans", Arial, sans-serif;
	line-height: 16px;
	text-rendering: optimizeLegibility;
	color: #000;
}
body.custom-font-enabled {
	font-family: "Open Sans", Arial, sans-serif;
}
a {
	outline: none;
	color: #D24D00;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	margin: 0 auto;
    padding: 50px 0 38px 24px;
    position: relative;
    width: 1028px;
}
	.site-header .translate{
		position: absolute;
		right: 0;
		top: 10px;
	}
.site-header h1,
.site-header h2 {
	text-align: left;
}
.site-header h1 a,
.site-header h2 a {
	color: #000 !important;
	display: inline;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-family: 'Alegreya',serif;
	font-style: italic;
    font-size: 48px;
    line-height: 42px;
    padding: 0;
}
.site-header .subtitle{
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -1px;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.site-header img {
	display: inline;
    margin-bottom: -55px;
    margin-right: 20px;
    margin-top: -30px;
    position: relative;
    z-index: 999;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* =Facebook like box
----------------------------------------------- */
.fb-like-box {
	background-color: #FFFFFF;
	display: inline;
	float: left;
	margin-top: 20px;
	padding: 10px 0px 50px 10px;
	text-align: left;
	width: 208px;
}

/* =Translate 
----------------------------------------------- */
#google_translate_element {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	height: 30px;
}
#google_translate_element .goog-te-gadget-simple {
	line-height: 24px;
}
#google_translate_element img {
	margin: 0px!important;
}

/* Navigation Menu */
.left_col{
	float: left;
    margin-left: -214px;
    width: 208px;
}
.main-navigation {
	background: none repeat scroll 0 0 #D24D00;
    display: inline;
    float: left;
    margin-top: 0;
    padding: 20px 20px 50px;
    text-align: left;
    width: 208px;
}

.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	color: #000;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
span.top_menu{
	border-bottom: 2px solid #FFFFFF;
    color: #FFFFFF;
    display: block;
    font-size: 12px;
    padding-bottom: 10px;
    width: 100%;
}
span.top_menu a{
    color: #FFFFFF;
	text-decoration: none;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: inline-block !important;
	text-align: left;
	width: 100%;
}
.main-navigation ul {
	margin: 0;
	text-indent: 0;
}
.main-navigation li a,
.main-navigation li {
	display: inline-block;
	text-decoration: none;
}
.main-navigation li a {
	border-bottom: 0 none;
    color: #FFFFFF;
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    padding: 6px 0;
    text-transform: none;
    width: 100%;
}
.main-navigation li a:hover {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}
.main-navigation li {
	border-top: 2px solid #DB7133;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}
.main-navigation li.first{
	border-top: 0;
}
.main-navigation li.has_menu{
	background: url(images/bul_closed.png) right 13px no-repeat;
}
.main-navigation li.has_menu.current-menu-item{
	background: url(images/bul_down.png) right 13px no-repeat;
}
.main-navigation li ul {
	overflow: hidden;
	padding-bottom: 10px;
    position: relative;
    top: -3px;
}
.main-navigation li ul ul {
	padding-bottom: 0px;
    top: 0;
}
.main-navigation ul li:hover > ul {
	border-left: 0;
	display: block;
}
.main-navigation li ul li{
	border-top: 0;
	line-height: 24px;
}
.main-navigation li ul li ul li{
	background: url("images/bul_subcateg.png") no-repeat scroll 6px 9px transparent;
    padding-left: 20px;
}
.main-navigation li ul li a {
	font-family: 'Source Sans Pro','open sans',sans-serif;
    font-weight: 300;
    line-height: 20px;
}
.main-navigation li ul li a:hover {
	
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
}
/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}
#slider{
	float: right;
    height: 313px;
    overflow: hidden;
    width: 782px;
}
/* =Landing page
-------------------------------------------------------------- */
.landing-desc{
	padding: 40px 20px 20px;	
}
.landing-desc.x1{
	width: 590px;
}
.landing-desc.x2{
	width: 395px;
}

.home_featured{
	display: inline;
	padding-top: 30px;
}
.home_featured.x1{
	margin-right: 9px;
	width: 188px;
}
.home_featured.x2{
	width: 396px;
}
.home-box{
	float: left;
    height: 136px;
    margin-bottom: 10px;
    margin-right: 10px;
    overflow: hidden;
    width: 188px;
}
	.home-box a, .home-box p a{
		color: #000000;
		text-decoration: none;
	}
	.home-box a:hover{
		text-decoration: underline;
	}
	.home-box h2{
		background: none repeat scroll 0 0 #A0C72C;
	    color: #000000;
	    font-size: 12px;
	    font-weight: 600;
	    line-height: 12px;
	    padding: 17px 0 10px 10px;
	}
	.home-box p{
		color: #000000;
	    display: inline-block;
	    line-height: 16px;
	    padding: 15px 10px;
	    text-decoration: none;
	    width: 100%;
	}
	.home-box a:hover{
		text-decoration: underline;
	}
	.post{
		float: left;
	    overflow: hidden;
	    padding-left: 20px;
    	width: 762px;
	}
.home-posts{
	float: left;
	padding: 40px 20px 20px;	
	width: 100%;
}
	.home-posts .half {
		width: 49%;
	}
	.home-posts .half-left {
		margin-right: 1%;
		width: 50%;
	}
/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

#content-wrap{
	display: table;
    margin: 0 auto;
    width: 1028px;
}
	#content{
		background: none repeat scroll 0 0 #FFFFFF;
	    float: right;
	    min-height: 818px;
	    padding: 30px 18px 141px 110px;
	    width: 920px;
	}
.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}
/* =Search
----------------------------------------------- */
#searchform {
	margin-top: 5px;
	position: relative;
}
	input#searchsubmit{
		background: url("http://cdn1.iconfinder.com/data/icons/bijou/10/Search.png") no-repeat scroll center center transparent;
	    border: medium none;
	    border-radius: 0 0 0 0;
	    box-shadow: none;
	    height: 30px;
	    overflow: hidden;
	    padding: 0;
	    position: absolute;
	    right: -1px;
	    text-indent: -9999px;
	    top: 0;
	    width: 25px;
	}
/* =Footer
----------------------------------------------- */
.footer{
	margin: 0 auto;
	position: relative;
	width: 100%;
}
.footer .inner{
	margin: -108px auto 60px;
    padding-left: 240px;
    position: relative;
    padding-bottom: 12px;
    width: 1028px;
}
	.footer .footer_bg{
		background: url("styles/default/bg-bottom.png") no-repeat scroll center top transparent;
	    bottom: -133px;
	    height: 156px;
	    left: 0;
	    position: absolute;
	    width: 100%;
	}
	.footer a{
		display: block;
	    float: left;
	    width: 120px;
	}
	.footer .logos{
		float: left;
	    overflow: hidden;
	    width: 360px;
	}
	.footer p.info{
		background: none repeat scroll 0 0 #D24D00;
	    color: #FFFFFF;
	    float: left;
	    line-height: 16px;
	    margin-left: 12px;
	    padding: 20px 20px 67px;
	    position: relative;
	    width: 388px;
	    z-index: 9;
	}
/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {

}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #E9E6D5;
	}
	body .site {
		padding: 0 40px;
		padding: 0 2.857142857rem;
		margin-top: 48px;
		margin-top: 3.428571429rem;
		margin-bottom: 48px;
		margin-bottom: 3.428571429rem;
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}
	body.custom-background-empty {
		background-color: #E9E6D5;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Helpers
----------------------------------------------- */

.left{float: left !important;}
.right{float: right !important;}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}
/* =Tables
----------------------------------------------- */
table {
    border-spacing: 0;
    width: 100%;
}
.bordered {
    border: 1px solid #CCCCCC;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 1px 1px #CCCCCC;
}
.bordered tr:hover {
    background: none repeat scroll 0 0 #FBF8E9;
    transition: all 0.1s ease-in-out 0s;
}
.bordered td, .bordered th {
    border-left: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    padding: 10px;
    text-align: left;
}
.bordered th {
    background: rgb(241,241,241); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(241,241,241,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(241,241,241,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(241,241,241,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(241,241,241,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(241,241,241,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(241,241,241,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    border-top: medium none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.bordered td:first-child, .bordered th:first-child {
    border-left: medium none;
}
.bordered th:first-child {
    border-radius: 6px 0 0 0;
}
.bordered th:last-child {
    border-radius: 0 6px 0 0;
}
.bordered th:only-child {
    border-radius: 6px 6px 0 0;
}
.bordered tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
}
.bordered tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
}
.zebra td, .zebra th {
    border-bottom: 1px solid #F2F2F2;
    padding: 10px;
}
.zebra tbody tr:nth-child(2n) {
    background: none repeat scroll 0 0 #F5F5F5;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.zebra th {
    background-color: #EEEEEE;
    background-image: -moz-linear-gradient(center top , #F5F5F5, #EEEEEE);
    border-bottom: 1px solid #CCCCCC;
    text-align: left;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.zebra th:first-child {
    border-radius: 6px 0 0 0;
}
.zebra th:last-child {
    border-radius: 0 6px 0 0;
}
.zebra th:only-child {
    border-radius: 6px 6px 0 0;
}
.zebra tfoot td {
    background-color: #F1F1F1;
    border-bottom: 0 none;
    border-top: 1px solid #FFFFFF;
}
.zebra tfoot td:first-child {
    border-radius: 0 0 0 6px;
}
.zebra tfoot td:last-child {
    border-radius: 0 0 6px 0;
}
.zebra tfoot td:only-child {
}


/* =IE7 fixes
----------------------------------------------- */
.ie7 body,
.ie7 #content-wrap,
.ie7 #content,
.ie7 #content .left_col #site-navigation,
.ie7 #content .left_col #site-navigation div,
.ie7 #content .left_col #site-navigation ul li ul.sub-menu,
.ie7 #content .left_col .fb-like-box,
.ie7 #content .left_col .fb-like-box *,
.ie7 #content #home-desc-container,
.ie7 #content #home-boxes,
.ie7 #content #home-boxes .home-box,
.ie7 #content #home-boxes .home-box *,
.ie7 #content .home-posts,
.ie7 #content .home-posts div,
.ie7 #content .home-posts div div,
.ie7 blockquote,
.ie7 blockquote p,
.ie7 #content .post,
.ie7 #content .post div,
.ie7 #footer,
.ie7 #footer .inner,
.ie7 #footer .inner p,
.ie7 #footer .footer_bg {
	*behavior: url(http://localhost/europadigitala/boxsizing.htc)
}

.ie7 #content { min-height: 818px; height: auto !important; height: 818px; }
.ie7 #footer .inner { margin-bottom: 0; }

/* =Themes
----------------------------------------------- */

body.default-class {
	background:url(styles/default/bg-top.png) center top no-repeat #E9E6D5;
}
	body.default-class .main-navigation {
		background: none repeat scroll 0 0 #D24D00;
	}

/* =Theme red
----------------------------------------------- */
body.school-red-class{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
}
body.school-red-class span.top_menu{
	font-size: 13px;
}
body.school-red-class .main-navigation li {
    border-top: 2px solid #5C7EA7;
}
body.school-red-class .main-navigation li ul li, body.school-red-class .main-navigation li.first {
    border-top: 0 none;
}
body.school-red-class {
	background:url(styles/school-red/bg-top.png) center top no-repeat #eeeeee;
}
	body.school-red-class a{
		color: #4a65aa;
	}
	body.school-red-class .main-navigation {
		background: none repeat scroll 0 0 #4a65aa;
	}
	body.school-red-class .main-navigation li a, body.school-red-class span.top_menu a{
		color: #fff;
	}
	body.school-red-class .home-box a{
		color: #000;
	}
	body.school-red-class .home-box h2 {
	    background: #C7DF71;
}
	body.school-red-class .footer p.info{
		background: #4a65aa;
	}
	body.school-red-class .footer .footer_bg {
		background:url(styles/school-red/bg-bottom.png) center top no-repeat;
	}
	body.school-red-class .site-header h1, body.school-red-class .site-header .subtitle, body.school-red-class h1{
		color: #000;
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
	}
	body.school-red-class .site-header h1{
		font-size: 44px;
		font-weight: bold;
		letter-spacing: -1px;
	}
	body.school-red-class .site-header .subtitle{
		text-transform: uppercase;
	}

/* =Theme blue
----------------------------------------------- */
body.school-blue-class{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
}
body.school-blue-class span.top_menu{
	font-size: 13px;
}
body.school-blue-class .main-navigation li {
    border-top: 2px solid #D53939;
}
body.school-blue-class .main-navigation li ul li, body.school-blue-class .main-navigation li.first {
    border-top: 0 none;
}
body.school-blue-class {
	background:url(styles/school-blue/bg-top.jpg) center top no-repeat #eeeeee;
}
	body.school-blue-class a{
		color: #c10100;
	}
	body.school-blue-class .main-navigation {
		background: none repeat scroll 0 0 #c10100;
	}
	body.school-blue-class .main-navigation li a, body.school-blue-class span.top_menu a{
		color: #fff;
	}
	body.school-blue-class .home-box h2 {
	    background: #cccccc;
}
	body.school-blue-class .home-box a{
		color: #000;
	}
	body.school-blue-class .footer p.info{
		background: #c10100;
	}
	body.school-blue-class .footer .footer_bg {
		background:url(styles/school-blue/bg-bottom.jpg) center top no-repeat;
	}
	body.school-blue-class .site-header .subtitle, body.school-blue-class h1{
		color: #777777;
	}
	body.school-blue-class .site-header h1, body.school-blue-class .site-header .subtitle, body.school-blue-class h1{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
	}
	body.school-blue-class .site-header h1{
		color: #000;
		font-size: 44px;
		font-weight: bold;
		letter-spacing: -1px;
	}
	body.school-blue-class .site-header .subtitle{
		color: #777777;
		text-transform: uppercase;
	}

/* =Theme math
----------------------------------------------- */
body.school-math-class{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
}
body.school-math-class span.top_menu{
	font-size: 13px;
}
body.school-math-class .main-navigation li {
    border-top: 2px solid #41516D;
}
body.school-math-class .main-navigation li ul li, body.school-math-class .main-navigation li.first {
    border-top: 0 none;
}
body.school-math-class {
	background:url(styles/school-math/bg-top.jpg) center top no-repeat #edeff2;
}
	body.school-math-class a{
		color: #37455f;
	}
	body.school-math-class .main-navigation {
		background: none repeat scroll 0 0 #37455f;
	}
	body.school-math-class .main-navigation li a, body.school-math-class span.top_menu a{
		color: #fff;
	}
	body.school-math-class .home-box h2 {
	    background: #78bb33;
}
	body.school-math-class .home-box a{
		color: #000;
	}
	body.school-math-class .footer p.info{
		background: #37455f;
	}
	body.school-math-class .footer .footer_bg {
		background:url(styles/school-math/bg-bottom.jpg) center top no-repeat;
	}
	body.school-math-class .site-header .subtitle, body.school-math-class h1{
		color: #78bb33;
	}
	body.school-math-class .site-header h1, body.school-math-class .site-header .subtitle, body.school-math-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		text-transform: capitalize;
	}
	body.school-math-class .site-header h1{
		font-size: 44px;
		font-weight: bold;
		letter-spacing: -1px;
	}
	body.school-math-class .site-header h1 a{
		color: #283346 !important;
	}
	body.school-math-class .site-header .subtitle{
		text-transform: uppercase;
	}
/* =Theme math-orange
----------------------------------------------- */
body.school-math-orange-class {
	background:url(styles/school-math-orange/bg-top.jpg) center top no-repeat #edeff2;
}
	body.school-math-orange-class .main-navigation li {
	    border-top: 2px solid #4B59A2;
	}
	body.school-math-orange-class .main-navigation li ul li, body.school-math-orange-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-math-orange-class a{
		color: #3b4b99;
	}
	body.school-math-orange-class .main-navigation {
		background: none repeat scroll 0 0 #3b4b99;
	}
		body.school-math-orange-class .main-navigation li a, body.school-math-orange-class span.top_menu a{
			color: #fff;
		}
	body.school-math-orange-class .home-box h2 {
	    background: #3b4b99;
	    color: #fff;
	}
	body.school-math-orange-class .home-box h2 a{
		color: #fff;
	}
	body.school-math-orange-class .home-box p a{
		color: #000;
	}
	body.school-math-orange-class .footer p.info{
		background: #ffb973;
	}
	body.school-math-orange-class .footer .footer_bg {
		background:url(styles/school-math-orange/bg-bottom.jpg) center top no-repeat;
	}
	body.school-math-orange-class .site-header .subtitle{
		color: #FFB973;
    	text-transform: uppercase;
	}
	body.school-math-orange-class h1 {
	    color: #78BB33;
	    font-family: 'open sans', arial, sans-serif;
	    font-size: 28px;
	    font-style: normal;
	    font-weight: 800;
	    letter-spacing: -2px;
	}
	body.school-math-orange-class .site-header h1{
		font-size: 44px;
		padding-bottom: 5px;
	}
	body.school-math-orange-class .site-header h1 a{
		color: #3B4B99 !important;
	}
/* =Theme yellow
----------------------------------------------- */
body.school-yellow-class {
	background:url(styles/school-yellow/bg-top.jpg) center top no-repeat #f4eadf;
}
	body.school-yellow-class a{
		color: #034488;
	}
	body.school-yellow-class .main-navigation li {
	    border-top: 2px solid #185596;
	}
	body.school-yellow-class .main-navigation li ul li, body.school-yellow-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-yellow-class .main-navigation {
		background: none repeat scroll 0 0 #034488;
	}
		body.school-yellow-class .main-navigation li a, body.school-yellow-class span.top_menu a{
			color: #fff;
		}
	body.school-yellow-class .home-box h2 {
	    background: #f5c200;
	    color: #000;
}
	body.school-yellow-class .home-box a{
	    color: #000;
}
	body.school-yellow-class .footer p.info{
		background: #034488;
	}
	body.school-yellow-class .footer .footer_bg {
		background:url(styles/school-yellow/bg-bottom.jpg) center top no-repeat;
	}
	body.school-yellow-class .site-header .subtitle{
		color: #000;
	}
	body.school-yellow-class h1{
		color: #000;
	}
/* =Theme arte
----------------------------------------------- */
body.school-arte-class {
	background:url(styles/arte/bg-top.jpg) center top no-repeat #f7f0ea;
}
	body.school-arte-class a{
		color: #d52a6e;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #DE397B;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-arte-class .main-navigation {
		background: none repeat scroll 0 0 #d52a6e;
	}
		body.school-arte-class .main-navigation li a, body.school-arte-class span.top_menu a{
			color: #fff;
		}
	body.school-arte-class .home-box h2 {
	    background: #d52a6e;
	    color: #fff;
}
	body.school-arte-class .home-box p a{
		color: #000;
	}
	body.school-arte-class .home-box h2 a{
	    color: #fff;
}
	body.school-arte-class .footer p.info{
		background: #17a6e0;
	}
	body.school-arte-class .footer .footer_bg {
		background:url(styles/arte/bg-bottom.png) center top no-repeat;
	}
	body.school-arte-class .site-header .subtitle{
		color: #d52a6e;
		text-transform: uppercase;
	}
	body.school-arte-class h1{
		color: #d52a6e;
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -2px;
	}
	body.school-arte-class .site-header h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -2px;
	}
	body.school-arte-class .site-header h1 a{
		color: #17a6e0 !important;
	}
/* =Theme chimie
----------------------------------------------- */
body.school-chimie-class {
	background:url(styles/chimie/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie-class a{
		color: #ad82bf;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie-class .main-navigation {
		background: none repeat scroll 0 0 #ad82bf;
	}
		body.school-chimie-class .main-navigation li a, body.school-chimie-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie-class .home-box h2 {
	    background: #ad82bf;
	    color: #fff;
	}
	body.school-chimie-class .home-box p a{
		color: #000;
	}
	body.school-chimie-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie-class .footer p.info{
		background: #f0f060;
		color: #000;
	}
	body.school-chimie-class .footer .footer_bg {
		background:url(styles/chimie/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie-class .site-header .subtitle, body.school-chimie-class h1{
		color: #ad82bf;
	}
	body.school-chimie-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme chimie2
----------------------------------------------- */
body.school-chimie2-class {
	background:url(styles/chimie2/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie2-class a{
		color: #10be9b;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie2-class .main-navigation {
		background: none repeat scroll 0 0 #10be9b;
	}
		body.school-chimie2-class .main-navigation li a, body.school-chimie2-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie2-class .home-box h2 {
	    background: #10be9b;
	    color: #fff;
	}
	body.school-chimie2-class .home-box p a{
		color: #000;
	}
	body.school-chimie2-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie2-class .footer p.info{
		background: #588298;
		color: #fff;
	}
	body.school-chimie2-class .footer .footer_bg {
		background:url(styles/chimie2/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie2-class .site-header .subtitle, body.school-chimie2-class h1{
		color: #10be9b;
	}
	body.school-chimie2-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie2-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie2-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme chimie3
----------------------------------------------- */
body.school-chimie3-class {
	background:url(styles/chimie3/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie3-class a{
		color: #f26648;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie3-class .main-navigation {
		background: none repeat scroll 0 0 #f26648;
	}
		body.school-chimie3-class .main-navigation li a, body.school-chimie3-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie3-class .home-box h2 {
	    background: #f26648;
	    color: #fff;
	}
	body.school-chimie3-class .home-box p a{
		color: #000;
	}
	body.school-chimie3-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie3-class .footer p.info{
		background: #588298;
		color: #fff;
	}
	body.school-chimie3-class .footer .footer_bg {
		background:url(styles/chimie3/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie3-class .site-header .subtitle, body.school-chimie3-class h1{
		color: #f26648;
	}
	body.school-chimie3-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie3-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie3-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme chimie4
----------------------------------------------- */
body.school-chimie4-class {
	background:url(styles/chimie4/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie4-class a{
		color: #477abb;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie4-class .main-navigation {
		background: none repeat scroll 0 0 #477abb;
	}
		body.school-chimie4-class .main-navigation li a, body.school-chimie4-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie4-class .home-box h2 {
	    background: #797979;
	    color: #fff;
	}
	body.school-chimie4-class .home-box p a{
		color: #000;
	}
	body.school-chimie4-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie4-class .footer p.info{
		background: #477abb;
		color: #fff;
	}
	body.school-chimie4-class .footer .footer_bg {
		background:url(styles/chimie4/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie4-class .site-header .subtitle, body.school-chimie4-class h1{
		color: #477abb;
	}
	body.school-chimie4-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie4-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie4-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme chimie5
----------------------------------------------- */
body.school-chimie5-class {
	background:url(styles/chimie5/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie5-class a{
		color: #d87c38;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie5-class .main-navigation {
		background: none repeat scroll 0 0 #d87c38;
	}
		body.school-chimie5-class .main-navigation li a, body.school-chimie5-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie5-class .home-box h2 {
	    background: #d87c38;
	    color: #fff;
	}
	body.school-chimie5-class .home-box p a{
		color: #000;
	}
	body.school-chimie5-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie5-class .footer p.info{
		background: #d87c38;
		color: #fff;
	}
	body.school-chimie5-class .footer .footer_bg {
		background:url(styles/chimie5/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie5-class .site-header .subtitle, body.school-chimie5-class h1{
		color: #000;
	}
	body.school-chimie5-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie5-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie5-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme chimie6
----------------------------------------------- */
body.school-chimie6-class {
	background:url(styles/chimie6/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie6-class a{
		color: #015069;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie6-class .main-navigation {
		background: none repeat scroll 0 0 #015069;
	}
		body.school-chimie6-class .main-navigation li a, body.school-chimie6-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie6-class .home-box h2 {
	    background: #faab1b;
	    color: #fff;
	}
	body.school-chimie6-class .home-box p a{
		color: #000;
	}
	body.school-chimie6-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie6-class .footer p.info{
		background: #015069;
		color: #fff;
	}
	body.school-chimie6-class .footer .footer_bg {
		background:url(styles/chimie6/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie6-class .site-header .subtitle, body.school-chimie6-class h1{
		color: #015069;
	}
	body.school-chimie6-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie6-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie6-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme chimie7
----------------------------------------------- */
body.school-chimie7-class {
	background:url(styles/chimie7/bg-top.jpg) center top no-repeat #FAFBF1;
}
	body.school-chimie7-class a{
		color: #2f4142;
	}
	body.school-arte-class .main-navigation li {
	    border-top: 2px solid #bd9bcc;
	}
	body.school-arte-class .main-navigation li ul li, body.school-arte-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.school-chimie7-class .main-navigation {
		background: none repeat scroll 0 0 #2f4142;
	}
		body.school-chimie7-class .main-navigation li a, body.school-chimie7-class span.top_menu a{
			color: #fff;
		}
	body.school-chimie7-class .home-box h2 {
	    background: #99d24f;
	    color: #fff;
	}
	body.school-chimie7-class .home-box p a{
		color: #000;
	}
	body.school-chimie7-class .home-box h2 a{
	    color: #fff;
	}
	body.school-chimie7-class .footer p.info{
		background: #2f4142;
		color: #fff;
	}
	body.school-chimie7-class .footer .footer_bg {
		background:url(styles/chimie7/bg-bottom.jpg) center top no-repeat;
	}
	body.school-chimie7-class .site-header .subtitle, body.school-chimie7-class h1{
		color: #2f4142;
	}
	body.school-chimie7-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
	}
	body.school-chimie7-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-chimie7-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
		padding-top: 10px;
	}
/* =Theme geografie
----------------------------------------------- */
body.school-geografie-class {
	background:url(styles/geografie/bg-top.jpg) center top no-repeat #f2f3ed;
}
	body.school-geografie-class a{
		color: #318cb9;
	}
	body.school-geografie-class .main-navigation {
		background: none repeat scroll 0 0 #318cb9;
	}
		body.school-geografie-class .main-navigation li a, body.school-geografie-class span.top_menu a{
			color: #fff;
		}
		body.school-geografie-class .main-navigation li {
		    border-top: 2px solid #5AA3C7;
		}
		body.school-geografie-class .main-navigation li ul li, body.school-geografie-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-geografie-class .home-box h2 {
	    background: #318cb9;
	    color: #fff;
	}
	body.school-geografie-class .home-box p a{
		color: #000;
	}
	body.school-geografie-class .home-box h2 a{
	    color: #fff;
	}
	body.school-geografie-class .footer p.info{
		background: #bba88e;
	}
	body.school-geografie-class .footer .footer_bg {
		background:url(styles/geografie/bg-bottom.jpg) center top no-repeat;
	}
	body.school-geografie-class .site-header .subtitle, body.school-geografie-class h1{
		color: #318cb9;
	}
	body.school-geografie-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-geografie-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-geografie-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme geografie2
----------------------------------------------- */
body.school-geografie2-class {
	background:url(styles/geografie2/bg-top.jpg) center top no-repeat #f2f3ed;
}
	body.school-geografie2-class a{
		color: #14a3a3;
	}
	body.school-geografie2-class .main-navigation {
		background: none repeat scroll 0 0 #14a3a3;
	}
		body.school-geografie2-class .main-navigation li a, body.school-geografie2-class span.top_menu a{
			color: #fff;
		}
		body.school-geografie2-class .main-navigation li {
		    border-top: 2px solid #5AA3C7;
		}
		body.school-geografie2-class .main-navigation li ul li, body.school-geografie2-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-geografie2-class .home-box h2 {
	    background: #14a3a3;
	    color: #fff;
	}
	body.school-geografie2-class .home-box p a{
		color: #000;
	}
	body.school-geografie2-class .home-box h2 a{
	    color: #fff;
	}
	body.school-geografie2-class .footer p.info{
		background: #58728d;
	}
	body.school-geografie2-class .footer .footer_bg {
		background:url(styles/geografie2/bg-bottom.jpg) center top no-repeat;
	}
	body.school-geografie2-class .site-header .subtitle, body.school-geografie2-class h1{
		color: #14a3a3;
	}
	body.school-geografie2-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-geografie2-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-geografie2-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme geografie3
----------------------------------------------- */
body.school-geografie3-class {
	background:url(styles/geografie3/bg-top.jpg) center top no-repeat #f2f3ed;
}
	body.school-geografie3-class a{
		color: #08566a;
	}
	body.school-geografie3-class .main-navigation {
		background: none repeat scroll 0 0 #c5527d;
	}
		body.school-geografie3-class .main-navigation li a, body.school-geografie3-class span.top_menu a{
			color: #fff;
		}
		body.school-geografie3-class .main-navigation li {
		    border-top: 2px solid #5AA3C7;
		}
		body.school-geografie3-class .main-navigation li ul li, body.school-geografie3-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-geografie3-class .home-box h2 {
	    background: #08566a;
	    color: #fff;
	}
	body.school-geografie3-class .home-box p a{
		color: #000;
	}
	body.school-geografie3-class .home-box h2 a{
	    color: #fff;
	}
	body.school-geografie3-class .footer p.info{
		background: #c5527d;
	}
	body.school-geografie3-class .footer .footer_bg {
		background:url(styles/geografie3/bg-bottom.jpg) center top no-repeat;
	}
	body.school-geografie3-class .site-header .subtitle, body.school-geografie3-class h1{
		color: #08566a;
	}
	body.school-geografie3-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-geografie3-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-geografie3-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme geografie4
----------------------------------------------- */
body.school-geografie4-class {
	background:url(styles/geografie4/bg-top.jpg) center top no-repeat #f2f3ed;
}
	body.school-geografie4-class a{
		color: #c84b35;
	}
	body.school-geografie4-class .main-navigation {
		background: none repeat scroll 0 0 #c84b35;
	}
		body.school-geografie4-class .main-navigation li a, body.school-geografie4-class span.top_menu a{
			color: #fff;
		}
		body.school-geografie4-class .main-navigation li {
		    border-top: 2px solid #5AA3C7;
		}
		body.school-geografie4-class .main-navigation li ul li, body.school-geografie4-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-geografie4-class .home-box h2 {
	    background: #c84b35;
	    color: #fff;
	}
	body.school-geografie4-class .home-box p a{
		color: #000;
	}
	body.school-geografie4-class .home-box h2 a{
	    color: #fff;
	}
	body.school-geografie4-class .footer p.info{
		background: #efd556;
		color: #000;
	}
	body.school-geografie4-class .footer .footer_bg {
		background:url(styles/geografie4/bg-bottom.jpg) center top no-repeat;
	}
	body.school-geografie4-class .site-header .subtitle, body.school-geografie4-class h1{
		color: #c84b35;
	}
	body.school-geografie4-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-geografie4-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-geografie4-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme geografie5
----------------------------------------------- */
body.school-geografie5-class {
	background:url(styles/geografie5/bg-top.jpg) center top no-repeat #f2f3ed;
}
	body.school-geografie5-class a{
		color: #0a6ba5;
	}
	body.school-geografie5-class .main-navigation {
		background: none repeat scroll 0 0 #0a6ba5;
	}
		body.school-geografie5-class .main-navigation li a, body.school-geografie5-class span.top_menu a{
			color: #fff;
		}
		body.school-geografie5-class .main-navigation li {
		    border-top: 2px solid #5AA3C7;
		}
		body.school-geografie5-class .main-navigation li ul li, body.school-geografie5-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-geografie5-class .home-box h2 {
	    background: #0a6ba5;
	    color: #fff;
	}
	body.school-geografie5-class .home-box p a{
		color: #000;
	}
	body.school-geografie5-class .home-box h2 a{
	    color: #fff;
	}
	body.school-geografie5-class .footer p.info{
		background: #70a95d;
	}
	body.school-geografie5-class .footer .footer_bg {
		background:url(styles/geografie5/bg-bottom.jpg) center top no-repeat;
	}
	body.school-geografie5-class .site-header .subtitle, body.school-geografie5-class h1{
		color: #0a6ba5;
	}
	body.school-geografie5-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-geografie5-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-geografie5-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme geografie6
----------------------------------------------- */
body.school-geografie6-class {
	background:url(styles/geografie6/bg-top.jpg) center top no-repeat #f2f3ed;
}
	body.school-geografie6-class a{
		color: #a02c16;
	}
	body.school-geografie6-class .main-navigation {
		background: none repeat scroll 0 0 #a02c16;
	}
		body.school-geografie6-class .main-navigation li a, body.school-geografie6-class span.top_menu a{
			color: #fff;
		}
		body.school-geografie6-class .main-navigation li {
		    border-top: 2px solid #5AA3C7;
		}
		body.school-geografie6-class .main-navigation li ul li, body.school-geografie6-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-geografie6-class .home-box h2 {
	    background: #a02c16;
	    color: #fff;
	}
	body.school-geografie6-class .home-box p a{
		color: #000;
	}
	body.school-geografie6-class .home-box h2 a{
	    color: #fff;
	}
	body.school-geografie6-class .footer p.info{
		background: #00525b;
	}
	body.school-geografie6-class .footer .footer_bg {
		background:url(styles/geografie6/bg-bottom.jpg) center top no-repeat;
	}
	body.school-geografie6-class .site-header .subtitle, body.school-geografie6-class h1{
		color: #a02c16;
	}
	body.school-geografie6-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-geografie6-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-geografie6-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica
----------------------------------------------- */
body.school-muzica-class {
	background:url(styles/muzica/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica-class a{
		color: #38b0b9;
	}
	body.school-muzica-class .main-navigation {
		background: none repeat scroll 0 0 #38b0b9;
	}
		body.school-muzica-class .main-navigation li a, body.school-muzica-class span.top_menu a{
			color: #fff;
		}
		body.school-muzica-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica-class .main-navigation li ul li, body.school-muzica-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica-class .home-box h2 {
	    background: #38b0b9;
	    color: #fff;
	}
	body.school-muzica-class .home-box h2 a{
	    color: #fff;
	}
	body.school-muzica-class .home-box p a{
		color: #000;
	}
	body.school-muzica-class .footer p.info{
		background: #ccb9d7;
	}
	body.school-muzica-class .footer .footer_bg {
		background:url(styles/muzica/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica-class .site-header .subtitle, body.school-muzica-class h1{
		color: #38b0b9;
	}
	body.school-muzica-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica2
----------------------------------------------- */
body.school-muzica2-class {
	background:url(styles/muzica2/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica2-class a{
		color: #0079d2;
	}
	body.school-muzica2-class .main-navigation {
		background: none repeat scroll 0 0 #0079d2;
	}
		body.school-muzica2-class .main-navigation li a, body.school-muzica2-class span.top_menu a{
			color: #fff;
		}
		body.school-muzica2-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica2-class .main-navigation li ul li, body.school-muzica2-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica2-class .home-box h2 {
	    background: #0079d2;
	    color: #fff;
	}
	body.school-muzica2-class .home-box h2 a{
	    color: #fff;
	}
	body.school-muzica2-class .home-box p a{
		color: #000;
	}
	body.school-muzica2-class .footer p.info{
		background: #7a7a7a;
	}
	body.school-muzica2-class .footer .footer_bg {
		background:url(styles/muzica2/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica2-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica2-class .site-header .subtitle, body.school-muzica2-class h1{
		color: #0079d2;
	}
	body.school-muzica2-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica2-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica2-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica3
----------------------------------------------- */
body.school-muzica3-class {
	background:url(styles/muzica3/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica3-class a{
		color: #713465;
	}
	body.school-muzica3-class .main-navigation {
		background: none repeat scroll 0 0 #713465;
	}
		body.school-muzica3-class .main-navigation li a, body.school-muzica3-class span.top_menu a{
			color: #fff;
		}
		body.school-muzica3-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica3-class .main-navigation li ul li, body.school-muzica3-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica3-class .home-box h2 {
	    background: #81a4b6;
	    color: #fff;
	}
	body.school-muzica3-class .home-box h2 a{
	    color: #fff;
	}
	body.school-muzica3-class .home-box p a{
		color: #000;
	}
	body.school-muzica3-class .footer p.info{
		background: #713465;
	}
	body.school-muzica3-class .footer .footer_bg {
		background:url(styles/muzica3/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica3-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica3-class .site-header .subtitle, body.school-muzica3-class h1{
		color: #713465;
	}
	body.school-muzica3-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica3-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica3-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica4
----------------------------------------------- */
body.school-muzica4-class {
	background:url(styles/muzica4/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica4-class a{
		color: #1d6b96;
	}
	body.school-muzica4-class .main-navigation {
		background: none repeat scroll 0 0 #ffc288;
	}
		body.school-muzica4-class .main-navigation span.top_menu { border-bottom: 2px solid #333; }
		body.school-muzica4-class .main-navigation li a, body.school-muzica4-class span.top_menu a{
			color: #000;
		}
		body.school-muzica4-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica4-class .main-navigation li ul li, body.school-muzica4-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica4-class .home-box h2 {
	    background: #1d6b96;
	    color: #fff;
	}
	body.school-muzica4-class .home-box h2 a{
	    color: #fff;
	}
	body.school-muzica4-class .home-box p a{
		color: #000;
	}
	body.school-muzica4-class .footer p.info{
		background: #ffc288;
		color: #000;
	}
	body.school-muzica4-class .footer .footer_bg {
		background:url(styles/muzica4/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica4-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica4-class .site-header .subtitle, body.school-muzica4-class h1{
		color: #000;
	}
	body.school-muzica4-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica4-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica4-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica5
----------------------------------------------- */
body.school-muzica5-class {
	background:url(styles/muzica5/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica5-class a{
		color: #d85745;
	}
	body.school-muzica5-class .main-navigation {
		background: none repeat scroll 0 0 #d85745;
	}
		body.school-muzica5-class .main-navigation li a, body.school-muzica5-class span.top_menu a{
			color: #fff;
		}
		body.school-muzica5-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica5-class .main-navigation li ul li, body.school-muzica5-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica5-class .home-box h2 {
	    background: #d85745;
	    color: #fff;
	}
	body.school-muzica5-class .home-box h2 a{
	    color: #fff;
	}
	body.school-muzica5-class .home-box p a{
		color: #000;
	}
	body.school-muzica5-class .footer p.info{
		background: #d85745;
	}
	body.school-muzica5-class .footer .footer_bg {
		background:url(styles/muzica5/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica5-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica5-class .site-header .subtitle, body.school-muzica5-class h1{
		color: #d85745;
	}
	body.school-muzica5-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica5-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica5-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica6
----------------------------------------------- */
body.school-muzica6-class {
	background:url(styles/muzica6/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica6-class a{
		color: #28395b;
	}
	body.school-muzica6-class .main-navigation {
		background: none repeat scroll 0 0 #fcc245;
	}
		body.school-muzica6-class .main-navigation span.top_menu { border-bottom: 2px solid #333; }
		body.school-muzica6-class .main-navigation li a, body.school-muzica6-class span.top_menu a{
			color: #333;
		}
		body.school-muzica6-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica6-class .main-navigation li ul li, body.school-muzica6-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica6-class .home-box h2 {
	    background: #fcc245;
	    color: #000;
	}
	body.school-muzica6-class .home-box h2 a{
	    color: #000;
	}
	body.school-muzica6-class .home-box p a{
		color: #000;
	}
	body.school-muzica6-class .footer p.info{
		background: #28395b;
	}
	body.school-muzica6-class .footer .footer_bg {
		background:url(styles/muzica6/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica6-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica6-class .site-header .subtitle, body.school-muzica6-class h1{
		color: #000;
	}
	body.school-muzica6-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica6-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica6-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme muzica7
----------------------------------------------- */
body.school-muzica7-class {
	background:url(styles/muzica7/bg-top.jpg) center top no-repeat #f5f4ef;
}
	body.school-muzica7-class a{
		color: #ed6741;
	}
	body.school-muzica7-class .main-navigation {
		background: none repeat scroll 0 0 #ed6741;
	}
		body.school-muzica7-class .main-navigation li a, body.school-muzica7-class span.top_menu a{
			color: #fff;
		}
		body.school-muzica7-class .main-navigation li {
		    border-top: 2px solid #7BCDD5;
		}
		body.school-muzica7-class .main-navigation li ul li, body.school-muzica7-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-muzica7-class .home-box h2 {
	    background: #ed6741;
	    color: #fff;
	}
	body.school-muzica7-class .home-box h2 a{
	    color: #fff;
	}
	body.school-muzica7-class .home-box p a{
		color: #000;
	}
	body.school-muzica7-class .footer p.info{
		background: #ce3a74;
	}
	body.school-muzica7-class .footer .footer_bg {
		background:url(styles/muzica7/bg-bottom.jpg) center top no-repeat;
	}
	body.school-muzica7-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.school-muzica7-class .site-header .subtitle, body.school-muzica7-class h1{
		color: #000;
	}
	body.school-muzica7-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-muzica7-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;
	}
	body.school-muzica7-class .site-header .subtitle{
		font-weight: 700;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport
----------------------------------------------- */
body.school-sport-class {
	background:url(styles/sport/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport-class a{
		color: #eb7f62;
	}
	body.school-sport-class .main-navigation {
		background: none repeat scroll 0 0 #eb7f62;
	}
		body.school-sport-class .main-navigation li a, body.school-sport-class span.top_menu a{
			color: #fff;
		}
		body.school-sport-class .main-navigation li {
		    border-top: 2px solid #EF9981;
		}
		body.school-sport-class .main-navigation li ul li, body.school-sport-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport-class .home-box h2 {
	    background: #eb7f62;
	    color: #fff;
	}
	body.school-sport-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport-class .home-box p a{
		color: #000;
	}
	body.school-sport-class .footer p.info{
		background: #c7df8b;
		color: #000;
	}
	body.school-sport-class .footer .footer_bg {
		background:url(styles/sport/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport-class .site-header .subtitle, body.school-sport-class h1{
		color: #eb7f62;
	}
	body.school-sport-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport2
----------------------------------------------- */
body.school-sport2-class {
	background:url(styles/sport2/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport2-class a{
		color: #26ad64;
	}
	body.school-sport2-class .main-navigation {
		background: none repeat scroll 0 0 #384b63;
	}
		body.school-sport2-class .main-navigation li a, body.school-sport2-class span.top_menu a{
			color: #fff;
		}
		body.school-sport2-class .main-navigation li {
		    border-top: 2px solid #EF9981;
		}
		body.school-sport2-class .main-navigation li ul li, body.school-sport2-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport2-class .home-box h2 {
	    background: #384b63;
	    color: #fff;
	}
	body.school-sport2-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport2-class .home-box p a{
		color: #000;
	}
	body.school-sport2-class .footer p.info{
		background: #26ad64;
		color: #000;
	}
	body.school-sport2-class .footer .footer_bg {
		background:url(styles/sport2/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport2-class .site-header .subtitle{
		color: #384b63;
	}
	body.school-sport2-class h1{
		color: #26ad64;
	}
	body.school-sport2-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport2-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport2-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport3
----------------------------------------------- */
body.school-sport3-class {
	background:url(styles/sport3/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport3-class a{
		color: #04659c;
	}
	body.school-sport3-class .main-navigation {
		background: none repeat scroll 0 0 #fe78b3;
	}

		body.school-sport3-class .main-navigation span.top_menu { border-bottom: 2px solid #333; }
		body.school-sport3-class .main-navigation li a, body.school-sport3-class span.top_menu a{
			color: #333;
		}
		body.school-sport3-class .main-navigation li {
		    border-top: 2px solid #333;
		}
		body.school-sport3-class .main-navigation li ul li, body.school-sport3-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport3-class .home-box h2 {
	    background: #04659c;
	    color: #fff;
	}
	body.school-sport3-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport3-class .home-box p a{
		color: #000;
	}
	body.school-sport3-class .footer p.info{
		background: #fe78b3;
		color: #000;
	}
	body.school-sport3-class .footer .footer_bg {
		background:url(styles/sport3/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport3-class .site-header .subtitle, body.school-sport3-class h1{
		color: #04659c;
	}
	body.school-sport3-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport3-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport3-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport4
----------------------------------------------- */
body.school-sport4-class {
	background:url(styles/sport4/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport4-class a{
		color: #79bd34;
	}
	body.school-sport4-class .main-navigation {
		background: none repeat scroll 0 0 #79bd34;
	}
		body.school-sport4-class .main-navigation li a, body.school-sport4-class span.top_menu a{
			color: #fff;
		}
		body.school-sport4-class .main-navigation li {
		    border-top: 2px solid #EF9981;
		}
		body.school-sport4-class .main-navigation li ul li, body.school-sport4-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport4-class .home-box h2 {
	    background: #79bd34;
	    color: #fff;
	}
	body.school-sport4-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport4-class .home-box p a{
		color: #000;
	}
	body.school-sport4-class .footer p.info{
		background: #4db1d2;
		color: #000;
	}
	body.school-sport4-class .footer .footer_bg {
		background:url(styles/sport4/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport4-class .site-header .subtitle, body.school-sport4-class h1{
		color: #4db1d2;
	}
	body.school-sport4-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport4-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport4-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport5
----------------------------------------------- */
body.school-sport5-class {
	background:url(styles/sport5/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport5-class a{
		color: #b93d6c;
	}
	body.school-sport5-class .main-navigation {
		background: none repeat scroll 0 0 #b93d6c;
	}
		body.school-sport5-class .main-navigation li a, body.school-sport5-class span.top_menu a{
			color: #fff;
		}
		body.school-sport5-class .main-navigation li {
		    border-top: 2px solid #EF9981;
		}
		body.school-sport5-class .main-navigation li ul li, body.school-sport5-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport5-class .home-box h2 {
	    background: #5f5f5f;
	    color: #fff;
	}
	body.school-sport5-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport5-class .home-box p a{
		color: #000;
	}
	body.school-sport5-class .footer p.info{
		background: #b93d6c;
		color: #fff;
	}
	body.school-sport5-class .footer .footer_bg {
		background:url(styles/sport5/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport5-class .site-header .subtitle, body.school-sport5-class h1{
		color: #5f5f5f;
	}
	body.school-sport5-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport5-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport5-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport6
----------------------------------------------- */
body.school-sport6-class {
	background:url(styles/sport6/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport6-class a{
		color: #be619b;
	}
	body.school-sport6-class .main-navigation {
		background: none repeat scroll 0 0 #be619b;
	}
		body.school-sport6-class .main-navigation li a, body.school-sport6-class span.top_menu a{
			color: #fff;
		}
		body.school-sport6-class .main-navigation li {
		    border-top: 2px solid #EF9981;
		}
		body.school-sport6-class .main-navigation li ul li, body.school-sport6-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport6-class .home-box h2 {
	    background: #47bd94;
	    color: #fff;
	}
	body.school-sport6-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport6-class .home-box p a{
		color: #000;
	}
	body.school-sport6-class .footer p.info{
		background: #be619b;
		color: #fff;
	}
	body.school-sport6-class .footer .footer_bg {
		background:url(styles/sport6/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport6-class .site-header .subtitle, body.school-sport6-class h1{
		color: #be619b;
	}
	body.school-sport6-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport6-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport6-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme sport7
----------------------------------------------- */
body.school-sport7-class {
	background:url(styles/sport7/bg-top.jpg) center top no-repeat #F8F4F3;
}
	body.school-sport7-class a{
		color: #2ccfca;
	}
	body.school-sport7-class .main-navigation {
		background: none repeat scroll 0 0 #2ccfca;
	}

		body.school-sport7-class .main-navigation span.top_menu { border-bottom: 2px solid #3d3435; }
		body.school-sport7-class .main-navigation li a, body.school-sport7-class span.top_menu a{
			color: #3d3435;
		}
		body.school-sport7-class .main-navigation li {
		    border-top: 2px solid #3d3435;
		}
		body.school-sport7-class .main-navigation li ul li, body.school-sport7-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-sport7-class .home-box h2 {
	    background: #3d3435;
	    color: #fff;
	}
	body.school-sport7-class .home-box h2 a{
	    color: #fff;
	}
	body.school-sport7-class .home-box p a{
		color: #000;
	}
	body.school-sport7-class .footer p.info{
		background: #2ccfca;
		color: #000;
	}
	body.school-sport7-class .footer .footer_bg {
		background:url(styles/sport7/bg-bottom.jpg) center top no-repeat;
	}
	body.school-sport7-class .site-header .subtitle, body.school-sport7-class h1{
		color: #3d3435;
	}
	body.school-sport7-class .site-header h1{
		font-size: 46px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school-sport7-class h1{
		font-family: 'open sans',arial, sans-serif;
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.school-sport7-class .site-header .subtitle{
		font-weight: bold;
		font-size: 22px;
		text-transform: uppercase;
	}
/* =Theme uman
----------------------------------------------- */
body.school-uman-class {
	background:url(styles/uman/bg-top.jpg) center top no-repeat #F7F1E8;
}
	body.school-uman-class a{
		color: #56aa08;
	}
	body.school-uman-class .main-navigation {
		background: none repeat scroll 0 0 #56aa08;
	}
		body.school-uman-class .main-navigation li a, body.school-uman-class span.top_menu a{
			color: #fff;
		}
		body.school-uman-class .main-navigation li {
		    border-top: 2px solid #78BB39;
		}
		body.school-uman-class .main-navigation li ul li, body.school-uman-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-uman-class .home-box h2 {
	    background: #56aa08;
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman-class .home-box h2 a{
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman-class .home-box p a{
		color: #000;
	}
	body.school-uman-class .footer p.info{
		background: #56aa08;
	}
	body.school-uman-class .footer .footer_bg {
		background:url(styles/uman/bg-bottom.jpg) center top no-repeat;
	}
	body.school-uman-class .site-header .subtitle, body.school-uman-class h1{
		color: #56aa08;
	}
	body.school-uman-class h1,body.school-uman-class h2,body.school-uman-class h3,body.school-uman-class h4,body.school-uman-class h5,body.school-uman-class h6,body.school-uman-class .site-header .subtitle{
		font-family: 'Neuton', serif;
	}
	body.school-uman-class h1{
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		line-height: 28px;
	}
	body.school-uman-class .site-header h1{
		font-size: 52px;
		padding-bottom: 15px;	
	}
	body.school-uman-class .site-header .subtitle{
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme uman2
----------------------------------------------- */
body.school-uman2-class {
	background:url(styles/uman2/bg-top.jpg) center top no-repeat #F7F1E8;
}
	body.school-uman2-class a{
		color: #56adad;
	}
	body.school-uman2-class .main-navigation {
		background: none repeat scroll 0 0 #56adad;
	}
		body.school-uman2-class .main-navigation li a, body.school-uman2-class span.top_menu a{
			color: #fff;
		}
		body.school-uman2-class .main-navigation li {
		    border-top: 2px solid #78BB39;
		}
		body.school-uman2-class .main-navigation li ul li, body.school-uman2-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-uman2-class .home-box h2 {
	    background: #56adad;
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman2-class .home-box h2 a{
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman2-class .home-box p a{
		color: #000;
	}
	body.school-uman2-class .footer p.info{
		background: #56adad;
	}
	body.school-uman2-class .footer .footer_bg {
		background:url(styles/uman2/bg-bottom.jpg) center top no-repeat;
	}
	body.school-uman2-class .site-header .subtitle, body.school-uman2-class h1{
		color: #56adad;
	}
	
	body.school-uman2-class h2,
	body.school-uman2-class h3,
	body.school-uman2-class h4,
	body.school-uman2-class h5,
	body.school-uman2-class h6,
	body.school-uman2-class .site-header { font-family: 'Neuton', serif; }

	body.school-uman2-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 28px;
		line-height: 28px;
	}
	body.school-uman2-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;	
	}
	body.school-uman2-class .site-header .subtitle{
		font-family: 'open sans', arial, sans-serif;
		font-weight: 400;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme uman3
----------------------------------------------- */
body.school-uman3-class {
	background:url(styles/uman3/bg-top.jpg) center top no-repeat #F7F1E8;
}
	body.school-uman3-class a{
		color: #f58752;
	}
	body.school-uman3-class .main-navigation {
		background: none repeat scroll 0 0 #f58752;
	}
		body.school-uman3-class .main-navigation li a, body.school-uman3-class span.top_menu a{
			color: #fff;
		}
		body.school-uman3-class .main-navigation li {
		    border-top: 2px solid #78BB39;
		}
		body.school-uman3-class .main-navigation li ul li, body.school-uman3-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-uman3-class .home-box h2 {
	    background: #f58752;
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman3-class .home-box h2 a{
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman3-class .home-box p a{
		color: #000;
	}
	body.school-uman3-class .footer p.info{
		background: #f58752;
	}
	body.school-uman3-class .footer .footer_bg {
		background:url(styles/uman3/bg-bottom.jpg) center top no-repeat;
	}
	body.school-uman3-class .site-header .subtitle, body.school-uman3-class h1{
		color: #f58752;
	}
	
	body.school-uman3-class h2,
	body.school-uman3-class h3,
	body.school-uman3-class h4,
	body.school-uman3-class h5,
	body.school-uman3-class h6,
	body.school-uman3-class .site-header { font-family: 'Neuton', serif; }

	body.school-uman3-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 28px;
		line-height: 28px;
	}
	body.school-uman3-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;	
	}
	body.school-uman3-class .site-header .subtitle{
		font-family: 'open sans', arial, sans-serif;
		font-weight: 400;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme uman4
----------------------------------------------- */
body.school-uman4-class {
	background:url(styles/uman4/bg-top.jpg) center top no-repeat #F7F1E8;
}
	body.school-uman4-class a{
		color: #ee5e44;
	}
	body.school-uman4-class .main-navigation {
		background: none repeat scroll 0 0 #ee5e44;
	}
		body.school-uman4-class .main-navigation li a, body.school-uman4-class span.top_menu a{
			color: #fff;
		}
		body.school-uman4-class .main-navigation li {
		    border-top: 2px solid #78BB39;
		}
		body.school-uman4-class .main-navigation li ul li, body.school-uman4-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-uman4-class .home-box h2 {
	    background: #ee5e44;
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman4-class .home-box h2 a{
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman4-class .home-box p a{
		color: #000;
	}
	body.school-uman4-class .footer p.info{
		background: #ee5e44;
	}
	body.school-uman4-class .footer .footer_bg {
		background:url(styles/uman4/bg-bottom.jpg) center top no-repeat;
	}
	body.school-uman4-class .site-header .subtitle, body.school-uman4-class h1{
		color: #691200;
	}
	
	body.school-uman4-class h2,
	body.school-uman4-class h3,
	body.school-uman4-class h4,
	body.school-uman4-class h5,
	body.school-uman4-class h6,
	body.school-uman4-class .site-header { font-family: 'Neuton', serif; }

	body.school-uman4-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 28px;
		line-height: 28px;
	}
	body.school-uman4-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;	
	}
	body.school-uman4-class .site-header .subtitle{
		font-family: 'open sans', arial, sans-serif;
		font-weight: 400;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme uman5
----------------------------------------------- */
body.school-uman5-class {
	background:url(styles/uman5/bg-top.jpg) center top no-repeat #F7F1E8;
}
	body.school-uman5-class a{
		color: #048fb6;
	}
	body.school-uman5-class .main-navigation {
		background: none repeat scroll 0 0 #048fb6;
	}
		body.school-uman5-class .main-navigation li a, body.school-uman5-class span.top_menu a{
			color: #fff;
		}
		body.school-uman5-class .main-navigation li {
		    border-top: 2px solid #78BB39;
		}
		body.school-uman5-class .main-navigation li ul li, body.school-uman5-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-uman5-class .home-box h2 {
	    background: #048fb6;
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman5-class .home-box h2 a{
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman5-class .home-box p a{
		color: #000;
	}
	body.school-uman5-class .footer p.info{
		background: #048fb6;
	}
	body.school-uman5-class .footer .footer_bg {
		background:url(styles/uman5/bg-bottom.jpg) center top no-repeat;
	}
	body.school-uman5-class .site-header .subtitle, body.school-uman5-class h1{
		color: #ac3633;
	}
	
	body.school-uman5-class h2,
	body.school-uman5-class h3,
	body.school-uman5-class h4,
	body.school-uman5-class h5,
	body.school-uman5-class h6,
	body.school-uman5-class .site-header { font-family: 'Neuton', serif; }

	body.school-uman5-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 28px;
		line-height: 28px;
	}
	body.school-uman5-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;	
	}
	body.school-uman5-class .site-header .subtitle{
		font-family: 'open sans', arial, sans-serif;
		font-weight: 400;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme uman6
----------------------------------------------- */
body.school-uman6-class {
	background:url(styles/uman6/bg-top.jpg) center top no-repeat #F7F1E8;
}
	body.school-uman6-class a{
		color: #723566;
	}
	body.school-uman6-class .main-navigation {
		background: none repeat scroll 0 0 #723566;
	}
		body.school-uman6-class .main-navigation li a, body.school-uman6-class span.top_menu a{
			color: #fff;
		}
		body.school-uman6-class .main-navigation li {
		    border-top: 2px solid #78BB39;
		}
		body.school-uman6-class .main-navigation li ul li, body.school-uman6-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school-uman6-class .home-box h2 {
	    background: #723566;
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman6-class .home-box h2 a{
	    color: #fff;
	    font-size: 14px;
	}
	body.school-uman6-class .home-box p a{
		color: #000;
	}
	body.school-uman6-class .footer p.info{
		background: #723566;
	}
	body.school-uman6-class .footer .footer_bg {
		background:url(styles/uman6/bg-bottom.jpg) center top no-repeat;
	}
	body.school-uman6-class .site-header .subtitle, body.school-uman6-class h1{
		color: #ac3633;
	}
	
	body.school-uman6-class h2,
	body.school-uman6-class h3,
	body.school-uman6-class h4,
	body.school-uman6-class h5,
	body.school-uman6-class h6,
	body.school-uman6-class .site-header { font-family: 'Neuton', serif; }

	body.school-uman6-class h1{
		font-family: 'open sans', arial, sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 28px;
		line-height: 28px;
	}
	body.school-uman6-class .site-header h1{
		font-family: 'Neuton', serif;
		font-style: normal;
		font-weight: bold;
		padding-bottom: 10px;
		font-size: 52px;
		line-height: 42px;
		letter-spacing: 0px;	
	}
	body.school-uman6-class .site-header .subtitle{
		font-family: 'open sans', arial, sans-serif;
		font-weight: 400;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme school5
----------------------------------------------- */
body.school5-class {
	background:url(styles/school5/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school5-class a{
		color: #d11441;
	}
	body.school5-class .main-navigation {
		background: none repeat scroll 0 0 #d11441;
	}
		body.school5-class .main-navigation li a, body.school5-class span.top_menu a{
			color: #fff;
		}
		body.school5-class .main-navigation li {
		    border-top: 2px solid #da4369;
		}
		body.school5-class .main-navigation li ul li, body.school5-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school5-class .home-box h2 {
	    background: #002962;
	}
	body.school5-class .home-box h2 a{
		color: #fff;
	}
	body.school5-class .home-box p a{
		color: #000;
	}
	body.school5-class .footer p.info{
		background: #d11441;
		color: #fff;
	}
	body.school5-class .footer .footer_bg {
		background:url(styles/school5/bg_bottom.jpg) center top no-repeat;
	}
	body.school5-class .site-header .subtitle, body.school5-class h1{
		color: #777777;
	}
	body.school5-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school5-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		letter-spacing: -1px;
	}
	body.school5-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme school6
----------------------------------------------- */
body.school6-class {
	background:url(styles/school6/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school6-class a{
		color: #b93d6c;
	}
	body.school6-class .main-navigation {
		background: none repeat scroll 0 0 #b93d6c;
	}
		body.school6-class .main-navigation li a, body.school6-class span.top_menu a{
			color: #fff;
		}
		body.school6-class .main-navigation li {
		    border-top: 2px solid #c76489;
		}
		body.school6-class .main-navigation li ul li, body.school6-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school6-class .home-box h2 {
	    background: #454545;
	}
	body.school6-class .home-box h2 a{
		color: #fff;
	}
	body.school6-class .home-box p a{
		color: #000;
	}
	body.school6-class .footer p.info{
		background: #b93d6c;
		color: #fff;
	}
	body.school6-class .footer .footer_bg {
		background:url(styles/school6/bg_bottom.jpg) center top no-repeat;
	}
	body.school6-class .site-header .subtitle, body.school6-class h1{
		color: #777777;
	}
	body.school6-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school6-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		letter-spacing: -1px;
	}
	body.school6-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}

/* =Theme school7
----------------------------------------------- */
body.school7-class {
	background:url(styles/school7/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school7-class a{
		color: #6bccdd;
	}
	body.school7-class .main-navigation {
		background: none repeat scroll 0 0 #6bccdd;
	}
		body.school7-class span.top_menu{
			border-color: #000;
		}
		body.school7-class .main-navigation li a, body.school7-class span.top_menu a{
			color: #000;
		}
		body.school7-class .main-navigation li {
		    border-top: 2px solid #5cadba;
		}
		body.school7-class .main-navigation li ul li, body.school7-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school7-class .home-box h2 {
	    background: #2f4142;
	}
	body.school7-class .home-box h2 a{
		color: #fff;
	}
	body.school7-class .home-box p a{
		color: #000;
	}
	body.school7-class .footer p.info{
		background: #6bccdd;
		color: #000;
	}
	body.school7-class .footer .footer_bg {
		background:url(styles/school7/bg_bottom.jpg) center top no-repeat;
	}
	body.school7-class .site-header .subtitle, body.school7-class h1{
		color: #777777;
	}
	body.school7-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school7-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28x;
		letter-spacing: -1px;
	}
	body.school7-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}

/* =Theme school8
----------------------------------------------- */
body.school8-class {
	background:url(styles/school8/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school8-class a{
		color: #875fb8;
	}
	body.school8-class .main-navigation {
		background: none repeat scroll 0 0 #875fb8;
	}
		body.school8-class .main-navigation li a, body.school8-class span.top_menu a{
			color: #fff;
		}
		body.school8-class .main-navigation li {
		    border-top: 2px solid #9f7fc6;
		}
		body.school8-class .main-navigation li ul li, body.school8-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school8-class .home-box h2 {
	    background: #cccccc;
	}
	body.school8-class .home-box h2 a{
		color: #000;
	}
	body.school8-class .home-box p a{
		color: #000;
	}
	body.school8-class .footer p.info{
		background: #875fb8;
		color: #fff;
	}
	body.school8-class .footer .footer_bg {
		background:url(styles/school8/bg_bottom.jpg) center top no-repeat;
	}
	body.school8-class .site-header .subtitle, body.school8-class h1{
		color: #777777;
	}
	body.school8-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school8-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		letter-spacing: -1px;
	}
	body.school8-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}

/* =Theme school9
----------------------------------------------- */
body.school9-class {
	background:url(styles/school9/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school9-class a{
		color: #a93d36;
	}
	body.school9-class .main-navigation {
		background: none repeat scroll 0 0 #a93d36;
	}
		body.school9-class .main-navigation li a, body.school9-class span.top_menu a{
			color: #fff;
		}
		body.school9-class .main-navigation li {
		    border-top: 2px solid #ba645e;
		}
		body.school9-class .main-navigation li ul li, body.school9-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school9-class .home-box h2 {
	    background: #cccccc;
	}
	body.school9-class .home-box h2 a{
		color: #000;
	}
	body.school9-class .home-box p a{
		color: #000;
	}
	body.school9-class .footer p.info{
		background: #a93d36;
		color: #fff;
	}
	body.school9-class .footer .footer_bg {
		background:url(styles/school9/bg_bottom.jpg) center top no-repeat;
	}
	body.school9-class .site-header .subtitle, body.school9-class h1{
		color: #777777;
	}
	body.school9-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school9-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		letter-spacing: -1px;
	}
	body.school9-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}

/* =Theme school10
----------------------------------------------- */
body.school10-class {
	background:url(styles/school10/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school10-class a{
		color: #26ad64;
	}
	body.school10-class .main-navigation {
		background: none repeat scroll 0 0 #26ad64;
	}
		body.school10-class .main-navigation li a, body.school10-class span.top_menu a{
			color: #fff;
		}
		body.school10-class .main-navigation li {
		    border-top: 2px solid #51bd83;
		}
		body.school10-class .main-navigation li ul li, body.school10-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school10-class .home-box h2 {
	    background: #cccccc;
	}
	body.school10-class .home-box h2 a{
		color: #000;
	}
	body.school10-class .home-box p a{
		color: #000;
	}
	body.school10-class .footer p.info{
		background: #26ad64;
		color: #fff;
	}
	body.school10-class .footer .footer_bg {
		background:url(styles/school10/bg_bottom.jpg) center top no-repeat;
	}
	body.school10-class .site-header .subtitle, body.school10-class h1{
		color: #777777;
	}
	body.school10-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school10-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		letter-spacing: -1px;
	}
	body.school10-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}
/* =Theme school11
----------------------------------------------- */
body.school11-class {
	background:url(styles/school11/bg_top.jpg) center top no-repeat #edeff2;
}
	body.school11-class a{
		color: #cd4343;
	}
	body.school11-class .main-navigation {
		background: none repeat scroll 0 0 #cd4343;
	}
		body.school11-class .main-navigation li a, body.school11-class span.top_menu a{
			color: #fff;
		}
		body.school11-class .main-navigation li {
		    border-top: 2px solid #d76969;
		}
		body.school11-class .main-navigation li ul li, body.school11-class .main-navigation li.first {
		    border-top: 0 none;
		}
	body.school11-class .home-box h2 {
	    background: #fecc66;
	}
	body.school11-class .home-box h2 a{
		color: #000;
	}
	body.school11-class .home-box p a{
		color: #000;
	}
	body.school11-class .footer p.info{
		background: #cd4343;
		color: #fff;
	}
	body.school11-class .footer .footer_bg {
		background:url(styles/school11/bg_bottom.jpg) center top no-repeat;
	}
	body.school11-class .site-header .subtitle, body.school11-class h1{
		color: #777777;
	}
	body.school11-class .site-header h1{
		font-size: 44px;
		font-weight: 800;
		letter-spacing: -2px;
		padding-bottom: 10px;
	}
	body.school11-class h1{
		font-family: 'Libre Baskerville', serif;
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		letter-spacing: -1px;
	}
	body.school11-class .site-header .subtitle{
		color: #777777;
		font-family: 'Libre Baskerville', serif;
		font-weight: bold;
		font-size: 24px;
		text-transform: uppercase;
	}

/* =Theme arte3
----------------------------------------------- */
body.arte3-class {
	background:url(styles/arte3/bg_top.jpg) center top no-repeat #f5f4ef;
}
	body.arte3-class a{
		color: #ed6741;
	}
	body.arte3-class .main-navigation li {
	    border-top: 2px solid #f18567;
	}
	body.arte3-class .main-navigation li ul li, body.arte3-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte3-class .main-navigation {
		background: none repeat scroll 0 0 #ed6741;
	}
		body.arte3-class .main-navigation li a, body.arte3-class span.top_menu a{
			color: #fff;
		}
	body.arte3-class .home-box h2 {
	    background: #ed6741;
	    color: #fff;
}
	body.arte3-class .home-box p a{
		color: #000;
	}
	body.arte3-class .home-box h2 a{
	    color: #fff;
}
	body.arte3-class .footer p.info{
		background: #ce3a74;
	}
	body.arte3-class .footer .footer_bg {
		background:url(styles/arte3/bg_bottom.jpg) center top no-repeat;
	}
	body.arte3-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte3-class h1{
		color: #000;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte3-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: 'Neuton', serif;
		font-weight: bold;
		font-size: 52px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte4
----------------------------------------------- */
body.arte4-class {
	background:url(styles/arte4/bg_top.jpg) center top no-repeat #f5f4ef;
}
	body.arte4-class a{
		color: #fcc245;
	}
	body.arte4-class span.top_menu{
		border-color: #000;
	}
	body.arte4-class .main-navigation li {
	    border-top: 2px solid #d4a541;
	}
	body.arte4-class .main-navigation li ul li, body.arte4-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte4-class .main-navigation {
		background: none repeat scroll 0 0 #fcc245;
	}
		body.arte4-class .main-navigation li a, body.arte4-class span.top_menu a{
			color: #000;
		}
	body.arte4-class .home-box h2 {
	    background: #fcc245;
	    color: #fff;
}
	body.arte4-class .home-box p a{
		color: #000;
	}
	body.arte4-class .home-box h2 a{
	    color: #000;
}
	body.arte4-class .footer p.info{
		background: #28395b;
	}
	body.arte4-class .footer .footer_bg {
		background:url(styles/arte4/bg_bottom.jpg) center top no-repeat;
	}
	body.arte4-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte4-class h1{
		color: #000;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte4-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: 'Neuton', serif;
		font-weight: bold;
		font-size: 52px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte5
----------------------------------------------- */
body.arte5-class {
	background:url(styles/arte5/bg_top.jpg) center top no-repeat #f5f4ef;
}
	body.arte5-class a{
		color: #d85745;
	}
	body.arte5-class .main-navigation li {
	    border-top: 2px solid #f18567;
	}
	body.arte5-class .main-navigation li ul li, body.arte5-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte5-class .main-navigation {
		background: none repeat scroll 0 0 #d85745;
	}
		body.arte5-class .main-navigation li a, body.arte5-class span.top_menu a{
			color: #fff;
		}
	body.arte5-class .home-box h2 {
	    background: #d85745;
	    color: #fff;
}
	body.arte5-class .home-box p a{
		color: #000;
	}
	body.arte5-class .home-box h2 a{
	    color: #fff;
}
	body.arte5-class .footer p.info{
		background: #d85745;
	}
	body.arte5-class .footer .footer_bg {
		background:url(styles/arte5/bg_bottom.jpg) center top no-repeat;
	}
	body.arte5-class .site-header .subtitle{
		color: #d85745;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte5-class h1{
		color: #d85745;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte5-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: 'Neuton', serif;
		font-weight: bold;
		font-size: 52px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte6
----------------------------------------------- */
body.arte6-class {
	background:url(styles/arte6/bg_top.jpg) center top no-repeat #f5f4ef;
}
	body.arte6-class a{
		color: #ffc288;
	}
	body.arte6-class .main-navigation li {
	    border-top: 2px solid #d6a577;
	}
	body.arte6-class span.top_menu{
		border-color: #000;
	}
	body.arte6-class .main-navigation li ul li, body.arte6-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte6-class .main-navigation {
		background: none repeat scroll 0 0 #ffc288;
	}
		body.arte6-class .main-navigation li a, body.arte6-class span.top_menu a{
			color: #000;
		}
	body.arte6-class .home-box h2 {
	    background: #1d6b96;
	    color: #fff;
}
	body.arte6-class .home-box p a{
		color: #000;
	}
	body.arte6-class .home-box h2 a{
	    color: #fff;
}
	body.arte6-class .footer p.info{
		background: #ffc288;
		color: #000;
	}
	body.arte6-class .footer .footer_bg {
		background:url(styles/arte6/bg_bottom.jpg) center top no-repeat;
	}
	body.arte6-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte6-class h1{
		color: #000;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte6-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: 'Neuton', serif;
		font-weight: bold;
		font-size: 52px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte7
----------------------------------------------- */
body.arte7-class {
	background:url(styles/arte7/bg_top.jpg) center top no-repeat #f5f4ef;
}
	body.arte7-class a{
		color: #713465;
	}
	body.arte7-class .main-navigation li {
	    border-top: 2px solid #8d5d84;
	}
	body.arte7-class .main-navigation li ul li, body.arte7-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte7-class .main-navigation {
		background: none repeat scroll 0 0 #713465;
	}
		body.arte7-class .main-navigation li a, body.arte7-class span.top_menu a{
			color: #fff;
		}
	body.arte7-class .home-box h2 {
	    background: #81a4b6;
	    color: #fff;
}
	body.arte7-class .home-box p a{
		color: #000;
	}
	body.arte7-class .home-box h2 a{
	    color: #fff;
}
	body.arte7-class .footer p.info{
		background: #713465;
	}
	body.arte7-class .footer .footer_bg {
		background:url(styles/arte7/bg_bottom.jpg) center top no-repeat;
	}
	body.arte7-class .site-header .subtitle{
		color: #713465;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte7-class h1{
		color: #713465;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte7-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: 'Neuton', serif;
		font-weight: bold;
		font-size: 52px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte8
----------------------------------------------- */
body.arte8-class {
	background:url(styles/arte8/bg_top.jpg) center top no-repeat #f5f4ef;
}
	body.arte8-class a{
		color: #0079d2;
	}
	body.arte8-class .main-navigation li {
	    border-top: 2px solid #3394db;
	}
	body.arte8-class .main-navigation li ul li, body.arte8-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte8-class .main-navigation {
		background: none repeat scroll 0 0 #0079d2;
	}
		body.arte8-class .main-navigation li a, body.arte8-class span.top_menu a{
			color: #fff;
		}
	body.arte8-class .home-box h2 {
	    background: #0079d2;
	    color: #fff;
}
	body.arte8-class .home-box p a{
		color: #000;
	}
	body.arte8-class .home-box h2 a{
	    color: #fff;
}
	body.arte8-class .footer p.info{
		background: #7a7a7a;
	}
	body.arte8-class .footer .footer_bg {
		background:url(styles/arte8/bg_bottom.jpg) center top no-repeat;
	}
	body.arte8-class .site-header .subtitle{
		color: #0079d2;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte8-class h1{
		color: #0079d2;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte8-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: 'Neuton', serif;
		font-weight: bold;
		font-size: 52px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte9
----------------------------------------------- */
body.arte9-class {
	background:url(styles/arte9/bg_top.jpg) center top no-repeat #f7f0ea;
}
	body.arte9-class a{
		color: #dbb76c;
	}
	body.arte9-class .main-navigation li {
	    border-top: 2px solid #b99d61;
	}
	body.arte9-class span.top_menu{
		border-color: #000;
	}
	body.arte9-class .main-navigation li ul li, body.arte9-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte9-class .main-navigation {
		background: none repeat scroll 0 0 #dbb76c;
	}
		body.arte9-class .main-navigation li a, body.arte9-class span.top_menu a{
			color: #333333;
		}
	body.arte9-class .home-box h2 {
	    background: #dbb76c;
	    color: #000;
}
	body.arte9-class .home-box p a{
		color: #000;
	}
	body.arte9-class .home-box h2 a{
	    color: #333333;
}
	body.arte9-class .footer p.info{
		background: #ac1e3e;
	}
	body.arte9-class .footer .footer_bg {
		background:url(styles/arte9/bg_bottom.png) center top no-repeat;
	}
	body.arte9-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte9-class h1{
		color: #333333;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte9-class .site-header h1{
		color: #333333;
		font-style: normal;
		font-family: "open sans", Arial, sans-serif;	
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte10
----------------------------------------------- */
body.arte10-class {
	background:url(styles/arte10/bg_top.jpg) center top no-repeat #f7f0ea;
}
	body.arte10-class a{
		color: #75d2d2;
	}
	body.arte10-class .main-navigation li {
	    border-top: 2px solid #68b2b2;
	}
	body.arte10-class span.top_menu{
		border-color: #333;
	}
	body.arte10-class .main-navigation li ul li, body.arte10-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte10-class .main-navigation {
		background: none repeat scroll 0 0 #75d2d2;
	}
		body.arte10-class .main-navigation li a, body.arte10-class span.top_menu a{
			color: #333;
		}
	body.arte10-class .home-box h2 {
	    background: #75d2d2;
	    color: #333;
}
	body.arte10-class .home-box p a{
		color: #000;
	}
	body.arte10-class .home-box h2 a{
	    color: #333;
}
	body.arte10-class .footer p.info{
		background: #ee383a;
	}
	body.arte10-class .footer .footer_bg {
		background:url(styles/arte10/bg_bottom.png) center top no-repeat;
	}
	body.arte10-class .site-header .subtitle{
		color: #333333;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte10-class h1{
		color: #333333;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte10-class .site-header h1{
		color: #333333;
		font-style: normal;
		font-family: "open sans", Arial, sans-serif;	
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte11
----------------------------------------------- */
body.arte11-class {
	background:url(styles/arte11/bg_top.jpg) center top no-repeat #f7f0ea;
}
	body.arte11-class a{
		color: #fe996e;
	}
	body.arte11-class .main-navigation li {
	    border-top: 2px solid #fead8b;
	}
	body.arte11-class .main-navigation li ul li, body.arte11-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte11-class .main-navigation {
		background: none repeat scroll 0 0 #fe996e;
	}
		body.arte11-class .main-navigation li a, body.arte11-class span.top_menu a{
			color: #fff;
		}
	body.arte11-class .home-box h2 {
	    background: #fe996e;
	    color: #fff;
}
	body.arte11-class .home-box p a{
		color: #000;
	}
	body.arte11-class .home-box h2 a{
	    color: #fff;
}
	body.arte11-class .footer p.info{
		background: #6b1617;
	}
	body.arte11-class .footer .footer_bg {
		background:url(styles/arte11/bg_bottom.png) center top no-repeat;
	}
	body.arte11-class .site-header .subtitle{
		color: #6b1617;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte11-class h1{
		color: #6b1617;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte11-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: "open sans", Arial, sans-serif;	
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte12
----------------------------------------------- */
body.arte12-class {
	background:url(styles/arte12/bg_top.jpg) center top no-repeat #f7f0ea;
}
	body.arte12-class a{
		color: #3ebcd2;
	}
	body.arte12-class .main-navigation li {
	    border-top: 2px solid #65c9db;
	}
	body.arte12-class .main-navigation li ul li, body.arte12-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte12-class .main-navigation {
		background: none repeat scroll 0 0 #3ebcd2;
	}
		body.arte12-class .main-navigation li a, body.arte12-class span.top_menu a{
			color: #fff;
		}
	body.arte12-class .home-box h2 {
	    background: #3ebcd2;
	    color: #fff;
}
	body.arte12-class .home-box p a{
		color: #000;
	}
	body.arte12-class .home-box h2 a{
	    color: #fff;
}
	body.arte12-class .footer p.info{
		background: #e6c0a2;
		color: #000;
	}
	body.arte12-class .footer .footer_bg {
		background:url(styles/arte12/bg_bottom.png) center top no-repeat;
	}
	body.arte12-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte12-class h1{
		color: #000;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte12-class .site-header h1{
		color: #000;
		font-style: normal;
		font-family: "open sans", Arial, sans-serif;	
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte13
----------------------------------------------- */
body.arte13-class {
	background:url(styles/arte13/bg_top.jpg) center top no-repeat #f7f0ea;
}
	body.arte13-class a{
		color: #6d3ba0;
	}
	body.arte13-class .main-navigation li {
	    border-top: 2px solid #8a62b3;
	}
	body.arte13-class .main-navigation li ul li, body.arte13-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte13-class .main-navigation {
		background: none repeat scroll 0 0 #6d3ba0;
	}
		body.arte13-class .main-navigation li a, body.arte13-class span.top_menu a{
			color: #fff;
		}
	body.arte13-class .home-box h2 {
	    background: #6d3ba0;
	    color: #fff;
}
	body.arte13-class .home-box p a{
		color: #000;
	}
	body.arte13-class .home-box h2 a{
	    color: #fff;
}
	body.arte13-class .footer p.info{
		background: #fdd865;
		color: #000;
	}
	body.arte13-class .footer .footer_bg {
		background:url(styles/arte13/bg_bottom.png) center top no-repeat;
	}
	body.arte13-class .site-header .subtitle{
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte13-class h1{
		color: #000;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte13-class .site-header h1{
		color: #6d3ba0;
		font-style: normal;
		font-family: "open sans", Arial, sans-serif;	
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
/* =Theme arte14
----------------------------------------------- */
body.arte14-class {
	background:url(styles/arte14/bg_top.jpg) center top no-repeat #f7f0ea;
}
	body.arte14-class a{
		color: #f75139;
	}
	body.arte14-class .main-navigation li {
	    border-top: 2px solid #f97461;
	}
	body.arte14-class .main-navigation li ul li, body.arte14-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.arte14-class .main-navigation {
		background: none repeat scroll 0 0 #f75139;
	}
		body.arte14-class .main-navigation li a, body.arte14-class span.top_menu a{
			color: #fff;
		}
	body.arte14-class .home-box h2 {
	    background: #f75139;
	    color: #fff;
}
	body.arte14-class .home-box p a{
		color: #000;
	}
	body.arte14-class .home-box h2 a{
	    color: #fff;
}
	body.arte14-class .footer p.info{
		background: #2b7b84;
	}
	body.arte14-class .footer .footer_bg {
		background:url(styles/arte14/bg_bottom.png) center top no-repeat;
	}
	body.arte14-class .site-header .subtitle{
		color: #f75139;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.arte14-class h1{
		color: #f75139;
		font-family: "open sans", Arial, sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: -1px;
	}
	body.arte14-class .site-header h1{
		font-style: normal;
		font-family: "open sans", Arial, sans-serif;	
		font-weight: 800;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
		body.arte14-class .site-header h1 a{
			color: #2b7b84 !important;
		}
/* =Theme gradinita
----------------------------------------------- */
	body.gradinita-class {
		background:url(styles/gradinita/bg-top.jpg) center top no-repeat #f7f7f7;
	}
	body.gradinita-class a{
		color: #ED5500;
	}
	body.gradinita-class .main-navigation li {
	    border-top: 2px solid #f97461;
	}
	body.gradinita-class .main-navigation li ul li, body.gradinita-class .main-navigation li.first {
	    border-top: 0 none;
	}
	body.gradinita-class .main-navigation {
		background: none repeat scroll 0 0 #ed5500;
	}
		body.gradinita-class .main-navigation li a, body.gradinita-class span.top_menu a{
			color: #fff;
		}
	body.gradinita-class .home-box h2 {
	    background: #ed5500;
	    color: #fff;
	}
	body.gradinita-class .home-box p a{
		color: #000;
	}
	body.gradinita-class .home-box h2 a{
	    color: #fff;
	}
	body.gradinita-class .footer p.info{
		background: #58C348;
	}
	body.gradinita-class .footer .footer_bg {
		background:url(styles/gradinita/bg-bottom.jpg) center top no-repeat;
	}
	body.gradinita-class .site-header .subtitle{
		color: #ed5500;
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 22px;
		font-weight: bold;
		text-transform: uppercase;
	}
	body.gradinita-class h1{
		color: #58c347;
		font-family: 'Roboto Condensed', sans-serif;	
		font-style: normal;
		font-weight: bold;
		font-size: 26px;
		letter-spacing: -1px;
	}
	body.gradinita-class .site-header h1{
		font-style: normal;
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: bold;
		font-size: 46px;
		letter-spacing: -1px;
		line-height: 100%;
	}
	body.gradinita-class .site-header h1 a{
			color: #58C347 !important;
	}
	body.gradinita-class .home-box h2 a{
		font-style: normal;
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: bold;
		font-size: 14px;
	}
	body.gradinita-class p {
     	font-style: normal;
		font-family: 'PT Sans', sans-serif;
		font-size: 12px;
	}
	body.gradinita-class .main-navigation{

		font-family: 'PT Sans', sans-serif;
		font-size: 12px;
	}
	body.gradinita-class .top_menu {
		font-family: 'Roboto Condensed', sans-serif;
		font-size: 14px;
	}

