@charset "utf-8";/**
 * SqueezeBox - Expandable Lightbox
 *
 * Allows to open various content as modal,
 * centered and animated box.
 *
 * @version		1.3
 *
 * @license		MIT-style license
 * @author		Harald Kirschner <mail [at] digitarald.de>
 * @author		Rouven Weßling <me [at] rouvenwessling.de>
 * @copyright	Author
 */

#sbox-overlay {
	position: fixed;
	background-color: #000;
	left: 0px;
	top: 0px;
}

#sbox-window {
	position: absolute;
	background-color: #fff;
	text-align: left;
	overflow: visible;
	padding: 10px;
	/* invalid values, but looks smoother! */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#sbox-window[aria-hidden=true],
#sbox-overlay[aria-hidden=true] {
	display: none;
}

#sbox-btn-close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: -15px;
	top: -15px;
	background: url(/media/system/images/modal/closebox.png) no-repeat center;
	border: none;
}

.sbox-loading #sbox-content {
	background-image: url(/media/system/images/modal/spinner.gif);
	background-repeat: no-repeat;
	background-position: center;
}

#sbox-content {
	clear: both;
	overflow: auto;
	background-color: #fff;
	height: 100%;
	width: 100%;
}

.sbox-content-image#sbox-content {
	overflow: visible;
}

#sbox-image {
	display: block;
}

.sbox-content-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.sbox-content-iframe#sbox-content {
	overflow: visible;
}

/* Hides scrollbars */
.body-overlayed {
	overflow: hidden;
}

/* Hides flash (Firefox problem) and selects (IE) */
.body-overlayed embed, .body-overlayed object, .body-overlayed select {
	visibility: hidden;
}

#sbox-window embed, #sbox-window object, #sbox-window select {
	visibility: visible;
}

/* Shadows */
#sbox-window.shadow {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.sbox-bg {
	position: absolute;
	width: 33px;
	height: 40px;
}

.sbox-bg-n {
	left: 0;
	top: -40px;
	width: 100%;
	background: url(/media/system/images/modal/bg_n.png) repeat-x;
}
.sbox-bg-ne {
	right: -33px;
	top: -40px;
	background: url(/media/system/images/modal/bg_ne.png) no-repeat;
}
.sbox-bg-e {
	right: -33px;
	top: 0;
	height: 100%;
	background: url(/media/system/images/modal/bg_e.png) repeat-y;
}
.sbox-bg-se {
	right: -33px;
	bottom: -40px;
	background: url(/media/system/images/modal/bg_se.png) no-repeat;
}
.sbox-bg-s {
	left: 0;
	bottom: -40px;
	width: 100%;
	background: url(/media/system/images/modal/bg_s.png) repeat-x;
}
.sbox-bg-sw {
	left: -33px;
	bottom: -40px;
	background: url(/media/system/images/modal/bg_sw.png) no-repeat;
}
.sbox-bg-w {
	left: -33px;
	top: 0;
	height: 100%;
	background: url(/media/system/images/modal/bg_w.png) repeat-y;
}
.sbox-bg-nw {
	left: -33px;
	top: -40px;
	background: url(/media/system/images/modal/bg_nw.png) no-repeat;
}
@media (max-width: 979px) {
	#sbox-btn-close {
		right: -10px;
		top: -10px;
	}
}
@media (max-device-width: 979px) {
	#sbox-content {
		-webkit-overflow-scrolling: touch;
	}
	#sbox-content.sbox-content-iframe {
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}
}
/*! normalize.css 2012-01-22T23:30 UTC - http://github.com/necolas/normalize.css */

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

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

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */

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

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
    display: none;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/* 
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
    margin: 0;
}


/* =============================================================================
   Links
   ========================================================================== */

/*
 * Addresses outline displayed oddly in Chrome
 */

a:focus {
    outline: none;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

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


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
    font-size: 2em;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

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

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/

blockquote {
    margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

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

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
    font-family: monospace, serif;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
    quotes: none;
}

/* 2 */

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

ul,
ol {
    margin: 0;
    padding: 0 0 0 40px;
}

dd {
    margin: 0px;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9 
 */

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


/* =============================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
    margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
    margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 * 3. Corrects alignment displayed oddly in IE6/7
 */

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button,
input {
    line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */

button,
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
    *overflow: visible;  /* 3 */
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */

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

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

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

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}


/* =============================================================================
   Tables
   ========================================================================== */

/* 
 * Remove most spacing between table cells
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*
#------------------------------------------------------------------------
# Mo - January Joomla! template (for Joomla 2.5)
#
# Copyright (C) 2007-2013 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: support@gavick.com 
*/
 
/* Base elements and classes */
html {
	border-bottom: 1px solid transparent;
	min-height: 100%;
}
body > div > footer,
body > div > header,
body > div > section,
body > footer,
body > header,
body > section {
	/* class used in the full template-width containers */
	clear: both;
	margin: 0 auto;
}
section#gkPageTop {
	overflow: visible; /* Necessary to make menu working */
	width: 100%; /* Necessary to achieve full background width */
}
#gkTop1,
#gkTop2,
#gkBottom1,
#gkBottom2,
#gkBottom3,
#gkBottom4,
#gkBottom5,
#gkBottom6 {
	/* Positions blocks -clearing */
	clear: both;
}

#gkTop1 .box,
#gkTop2 .box,
#gkBottom1 .box,
#gkBottom2 .box,
#gkBottom3 .box,
#gkBottom4 .box,
#gkBottom5 .box,
#gkBottom6 .box {
	padding-bottom: 30px;
}

body .gkCols3.gkNoMargin,
body .gkCols4.gkNoMargin,
body .gkCols6.gkNoMargin {
	margin-left: 0!important;
	margin-right: 0!important;
}

/* clearfix */
#gkTop:after,
#gkTop1:after,
#gkTop2:after,
#gkPageContent:after,
#gkContent:after,
#gkSidebar:after,
.gkPage:after,
footer:after,
header:after,
section:after,
aside:after,
article:after,
.box:after,
.custom:after,
#k2Container:after,
#gkMainbody:after,
article header:after,
.itemSocialSharing:after,
#gkTopMenu:after,
article header ul:after,
#gkTop1 > div:after,
#gkTop2 > div:after,
#gkHeaderBottom:after,
.gkTabsWrap:after,
.gkTabsWrap ol:after,
.itemList:after {
	clear: both;
	content: "";
	display: table;
}

/* Columns */
#gkContent,
#gkComponentWrap,
#gkSidebar {
	/* Main columns */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	        box-sizing: border-box;
	float: left;
}

#gkContent.gkColumnLeft {
	float: right;
	padding: 0;
}

#gkSidebar {
	padding: 0 0 30px 90px;
}

#gkContent.gkColumnLeft + #gkSidebar {
	float: left;
	padding: 0 70px 30px 0;
}

#gkSidebar > div > .box {
	margin-top: 14px;
}

#gkSidebar > div > .box:first-child {
	margin-top: 0;
}

#gkContentWrap {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	        box-sizing: border-box;
	float: left;
	padding: 0;
}

#gkMainbodyTop .box,
#gkMainbodyBottom .box {
	padding-left: 0;
	padding-right: 0;
}

#gkMainbody .box {
	padding-left: 0!important;
	padding-right: 0!important;
	width: 100%;
}

#gkMainbodyTop + #gkMainbody {
	margin-top: 0;
	padding-top: 10px;
}

#gkMainbody + #gkMainbodyBottom {
	margin-top: 0;
	padding-top: 10px;
}

/* Module groups */
#gkTop1 .box,
#gkTop2 .box,
#gkBottom1 .box,
#gkBottom2 .box,
#gkBottom3 .box,
#gkBottom4 .box,
#gkBottom5 .box,
#gkBottom6 .box {
	/* Columns in the positions blocks */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	        box-sizing: border-box;
	float: left;
}
/* Joomla columns */
.cols-2 .column-1,
.cols-2 .column-2 {
	width: 100%;
}
.cols-3 .column-1,
.cols-3 .column-2,
.cols-3 .column-3 {
	width: 100%;
}
.column-1,
.column-2,
.column-3 {
	margin-bottom: 72px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	        box-sizing: border-box;
}

/*
Layout calculations
 */
#gkMainbody .box {
	margin-bottom: 30px;
} 

/* base spaces */
body > footer:first-child,
body > header:first-child,
body > section:first-child,
section#gkPage > section:first-child,
section#gkContent > section:first-child,
section#gkComponentWrap > section:first-child {
	margin-top: 0;
}
/* Joomla columns */
/*.cols-2 .column-1,
.cols-3 .column-1 {
	padding-right: 10px;
}
.cols-2 .column-2,
.cols-3 .column-3 {
	padding-left: 10px;
}
.cols-3 .column-2 {
	padding-left: 10px;
	padding-right: 10px;
}*/
/* top/bottom modules */

.gkCols3,
.gkCols4,
.gkCols6 {
	margin: 0 -20px!important;
}

/* 3-column layout */
.gkCols3 .box {
	float: left;
	padding: 0 20px;	
}
.gkCols3 .box.gkmod-1 {
	width: 100%;	
}
.gkCols3 .box.gkmod-2 {
	width: 50%;
}
.gkCols3 .box.gkmod-3,
.gkCols3 .box.gkmod-more {
	width: 33.3%;
}
.gkCols3 .box.gkmod-more:nth-child(3n+1) {
	clear: both;
}
.gkCols3 .box.gkmod-more.gkmod-last-1:last-child {
	width: 100%!important;
}
.gkCols3 .box.gkmod-more.gkmod-last-2:last-child,
.gkCols3 .box.gkmod-more.gkmod-last-2:nth-last-child(2) {
	width: 50%!important;
}

/* 4-column layout */
.gkCols4 .box {
	float: left;
	padding: 0 20px;	
}
.gkCols4 .box.gkmod-1 {
	width: 100%;	
}
.gkCols4 .box.gkmod-2 {
	width: 50%;
}
.gkCols4 .box.gkmod-3 {
	width: 33.3%;
}
.gkCols4 .box.gkmod-4,
.gkCols4 .box.gkmod-more {
	width: 25%;
}
.gkCols4 .box.gkmod-more:nth-child(4n+1) {
	clear: both;
}
.gkCols4 .box.gkmod-more.gkmod-last-1:last-child {
	width: 100%!important;
}
.gkCols4 .box.gkmod-more.gkmod-last-2:last-child,
.gkCols4 .box.gkmod-more.gkmod-last-2:nth-last-child(2) {
	width: 50%!important;
}
.gkCols4 .box.gkmod-more.gkmod-last-3:last-child,
.gkCols4 .box.gkmod-more.gkmod-last-3:nth-last-child(2),
.gkCols4 .box.gkmod-more.gkmod-last-3:nth-last-child(3) {
	width: 33.3%!important;
}

/* 6-column layout */
.gkCols6 .box {
	float: left;
	padding: 0 20px;	
}
.gkCols6 .box.gkmod-1 {
	width: 100%;	
}
.gkCols6 .box.gkmod-2 {
	width: 50%;
}
.gkCols6 .box.gkmod-3 {
	width: 33.3%;
}
.gkCols6 .box.gkmod-4,
.gkCols6 .box.gkmod-more {
	width: 25%;
}
.gkCols6 .box.gkmod-5,
.gkCols6 .box.gkmod-more {
	width: 20%;
}
.gkCols6 .box.gkmod-6,
.gkCols6 .box.gkmod-more {
	width: 16.66%;
}
.gkCols6 .box.gkmod-more:nth-child(6n+1) {
	clear: both;
}
.gkCols6 .box.gkmod-more.gkmod-last-1:last-child {
	width: 100%!important;
}
.gkCols6 .box.gkmod-more.gkmod-last-2:last-child,
.gkCols6 .box.gkmod-more.gkmod-last-2:nth-last-child(2) {
	width: 50%!important;
}
.gkCols6 .box.gkmod-more.gkmod-last-3:last-child,
.gkCols6 .box.gkmod-more.gkmod-last-3:nth-last-child(2),
.gkCols6 .box.gkmod-more.gkmod-last-3:nth-last-child(3) {
	width: 33.3%!important;
}
.gkCols6 .box.gkmod-more.gkmod-last-4:last-child,
.gkCols6 .box.gkmod-more.gkmod-last-4:nth-last-child(2),
.gkCols6 .box.gkmod-more.gkmod-last-4:nth-last-child(3),
.gkCols6 .box.gkmod-more.gkmod-last-4:nth-last-child(4) {
	width: 20%!important;
}
.gkCols6 .box.gkmod-more.gkmod-last-5:last-child,
.gkCols6 .box.gkmod-more.gkmod-last-5:nth-last-child(2),
.gkCols6 .box.gkmod-more.gkmod-last-5:nth-last-child(3),
.gkCols6 .box.gkmod-more.gkmod-last-5:nth-last-child(4),
.gkCols6 .box.gkmod-more.gkmod-last-5:nth-last-child(5) {
	width: 16.66%!important;
}
/*
#------------------------------------------------------------------------
# Mo - January Joomla! template (for Joomla 2.5)
#
# Copyright (C) 2007-2013 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: support@gavick.com 
*/

select,
textarea,
input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	
	border: 1px solid #ddd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 300;
	color: #777;
	height: 40px;
	max-width: 100%!important;
	padding: 2px 10px;
}
textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	height: auto;
	max-width: 100%!important;
	padding: 24px
}
legend {
	color: #222;
	font-weight: 600;
	text-transform: uppercase
}
select {
	height: inherit;
	padding: 6px
}
html.-moz-select {
	padding: 3px 5px
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
textarea:focus {
	background: #fffef4;
}
button,
.button,
.readon,
.button.inverse:active,
.button.inverse:focus,
.button.inverse:hover,
input.button,
span.button,
button.button,
div.button,
.readmore a,
input[type="submit"],
input[type="button"] {
	background: #84CBC5;
	border: none;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	color: #fff!important;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 16px;
	font-weight: 300!important;
	height: 40px;
	line-height: 41px;
	margin: 0 5px 2px 2px;
	padding: 0 40px;
	text-align: center;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out
}
button:hover,
.button:hover,
.readon:hover,
.readmore a:hover,
.button.inverse,
input.button:hover,
span.button:hover,
button.button:hover,
div.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	background: #292b31;
	color: #fff!important;
}
.readon {
	padding: 0px 30px;
}
.button.color1,
.readon.color1 {
	background: #76acfc;
}
.button.color1:active,
.readon.color1:active, 
.button.color1:focus,
.readon.color1:focus, 
.button.color1:hover,
.readon.color1:hover {
	background: #292b31;
} 

/* Other form elements */

input[type=checkbox],
.checkbox,
input[type=radio],
.radio {
	background: transparent!important;
	border: none!important;
	height: auto!important;
	margin-top: 7px!important
}
select[size] {
	font-size: 12px;
	height: auto
}
select[size="1"] {
	height: 29px!important;
	line-height: 24px
}
.invalid {
	background: #fffef4;
	border: 1px solid #e25527!important;
	color: #000
}
label {
	color: #222;
	font-size: 14px;
	font-weight: 400;
	padding: 0 6px 0 0;
}
label.invalid {
	background: #fff;
	border: none!important;
	color: #e25527!important
}
fieldset.filters > div > * {
	float: left;
	margin-right: 10px
}
fieldset.filters > div > label {
	margin-top: 6px;
}
fieldset.filters > div > select {
	margin-top: 4px
}
section article {
	margin-top: 20px
}
section > header {
	margin: 0 0 32px;
	padding: 0
}
section > header div p {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	text-transform: none
}
section img {
	height: auto;
	max-width: 100%!important
}
section.category .children,
section.blog .children {
	clear: both;
	margin-top: 32px
}
section.categories-list ul ul {
	margin-left: 20px;
}
section.categories-list ul ul li {
	border: none;
	border-top: 1px solid #eee;
	padding-left: 6px
}
section.categories-list li,
section.category .children li,
section.blog .children li {
	border-top: 1px solid #eee;
	clear: both;
	font-size: 16px;
	line-height: 1.4;
	overflow: hidden;
	padding: 12px 0
}
section.categories-list li > div p,
section.category .children li > div p,
section.blog .children li > div p {
	font-size: 14px;
	margin: .5em 0
}
section.categories-list li > dl,
section.category .children li > dl,
section.blog .children li > dl {
	font-size: 11px;
	margin: 0
}
section.categories-list li > dl > dt,
section.category .children li > dl > dt,
section.blog .children li > dl > dt {
	float: left
}
section.categories-list li > dl > dd,
section.category .children li > dl > dd,
section.blog .children li > dl > dd {
	float: left;
	font-weight: 700;
	margin-left: 5px
}
section.category .children h3,
section.blog .children h3 {
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
	margin: 20px 0
}
.filters .display-limit select {
	display: inline!important;
	float: none
}
table {
	margin-bottom: 20px;
	width: 100%
}
th {    
         background: #f3f8ff;
	font-weight: 500;
	padding: 12px;
	text-align: left;
}
th a {
	color: #222!important;
}
th a:active,
th a:focus,
th a:hover {
	color: #76acfc!important;
}
tbody tr td {
	border-bottom: 1px solid #eee;
	padding: 8px
}
tbody tr td p {
	margin: .5em 0
}
section.blog .items-row {
	clear: both;
	margin-bottom: 40px;
	overflow: hidden
}
section.blog-featured .items-row {
	margin-top: 40px;
	margin-bottom: 0;
}
section.blog-featured .items-row:first-child {
	margin-top: 0;
}
section.blog .items-row header h2,
section.blog-featured .items-row header h2 {
	font-size: 28px;
}
section.blog .items-more h3 {
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 20px
}
.items-leading > div {
	clear: both!important;
	margin-top: 50px;
}
.items-leading > div:first-child {
	margin-top: 0;
}
/* Article */
article,
article > section {
	position: relative
}
article header {
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 16px;
	
}
article header:after {
    border-bottom: 1px solid #E5E5E5;
    display: block;
    margin-bottom: 32px;
    padding: 26px 0 0;
    width: 26%; 
}
article.cols3 header:after {
	display: none;
}
.itemImage,
.itemImageBlock > img {
	display: block;
	line-height: 0;
	margin: 0 0 46px;
	overflow: hidden;
}
.itemImageBlock img {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	height: auto;
	max-width: 100%;
	padding: 0;
	-webkit-transition: all .18s linear;
	-moz-transition: all .18s linear;
	-ms-transition: all .18s linear;
	-o-transition: all .18s linear;
	transition: all .18s linear;
	width: 100%!important;
}
.itemImageCaption {
	display: block;
	color: #999;
	padding: 8px 0 0;
	font-size: 11px;
}
.itemImageBlock > a {
	display: block;
	width: 100%;
}
.itemAsideInfo + .itemBody {
	float: right;
	width: 78%;
}
.single-item .itemBody {
	margin-bottom: 30px;
	width: 100%;
}
.itemAsideInfo {
	color: #aaa;
	float: left;
	font-size: 13px;
	width: 15%;
}
.itemAsideInfo li { line-height: 1.6}
.itemAsideInfo a { color: #666;}
.itemAsideInfo a:hover { color: #F47264;}
.itemAsideInfo .itemRatingBlock { margin-bottom: 0}
.itemDate {
	background: #292b31;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #eee;
	display: block;
	font-size: 32px;
	line-height: 1 !important;
	margin: 0 0 20px 0;
	padding: 20px;
	position: relative;
	text-align: center;
	width: 80px;
}

.itemDate span {
	clear: both;
	display: block;
	font-size: 24px;
	text-transform: uppercase;
}

.single-item .itemDate {
	float: left;
	left: 0;
	margin: 0 0 20px 0;
	position: absolute;
	top: 0;
}
.single-item .itemBody {
	position: relative;
}
.single-item .itemDate + header {
	margin: 0 0 56px 180px;
}
.single-item header .itemRatingBlock { margin: 0 0 -36px}
.itemImageBlock {
	overflow: hidden;
	position: relative;
}
li.print-icon,
li.email-icon {
}
li.print-icon a,
li.email-icon a {
	position: relative;
	top: 3px;
}
article header a { color: #666}
article header a:hover { color: #F47264}
.blog article header ul {
	margin: 0 0 24px;
}
article header h1,
article header h2 {
	font-size: 36px;
	margin: 0 0 12px;	
	
}
article header li {
	color: #aaa;
	float: left;
	font-size: 14px !important;
	font-weight: 300;
	line-height: 1; 
	margin: 0!important;
}
article header li:first-child {
	margin-left: 0;
}
article header li:after {
	content: "";
	padding: 0 12px;
}

article.item-page ul.content-links li {
	background: none
}

.img-intro-none {
	float: none
}
.img-intro-none img {
	float: none!important;
	margin: 0 auto
}
.img-fulltext-none,
.img-fulltext-left,
.img-fulltext-right {
	float: none;
	margin: 0 0 46px;
	overflow: hidden;
	position: relative
}
.img-fulltext-none > div,
.img-fulltext-left > div,
.img-fulltext-right > div {
	float: none!important;
	width: 100%!important
}
.img-fulltext-none img,
.img-fulltext-left img,
.img-fulltext-right img {
	display: block;
	height: auto!important;
	max-width: 100%!important;
	margin: 0;
	width: 100%!important
}
p.img_caption {
	display: block;
	color: #999;
	padding: 8px 0 0;
	font-size: 11px;
}
section.blog div.img_caption img.caption {
	display: block;
	float: none!important
}
.item-page ul {
	list-style-type: none
}
.edit fieldset > div {
	clear: both;
	padding: 5px 0
}
.edit fieldset > div label {
	display: block;
	float: left;
	min-width: 120px
}
section.login .login-fields {
	padding-bottom: 16px
}
section.login .login-fields label {
	display: block;
	float: left;
	line-height: 34px;
	min-width: 100px
}
section.login ul {
	font-size: 11px;
	margin-top: 40px
}
.profile dl {
	margin: 32px 0;
}
.profile dt {
	clear: both;
	color: #222;
	float: left;
	font-size: 14px;
	font-weight: 400;
	min-width: 200px;
}
.contact-image { padding: 52px 0 24px; }
.contact-form dl {
	float: left;
	width: 50%;
}
.contact-form legend {
	color: #999;
	font-size: 12px;
	margin: 0 0 24px;
}
.contact-form .button.validate {
	clear: both;
	margin: 20px 0 0 0;
}
.contact-form input {
	margin: 6px 0 0;
	width: 80%
}
.contact-form textarea {
	height: 202px;
	width: 100%;
}
dt.inline,
dd.inline {
	display: inline-block!important;
	float: left!important;
	margin: 12px 0 0;
	width: auto!important
}
.contact h3 {

	clear: both;
	font-size: 24px;
	font-weight: 300;
	margin: 0 0 16px;
	padding: 52px 0 0;
}
.jicons-text {
	color: #000;
	font-size: 12px;
	font-weight: 600;
	display: block;

}
.contact-address,
.contact-contactinfo {
	float: left;
	margin: 0 92px 32px 0
}
.contact-contactinfo div {
	float: left;
	margin: 0 52px 0 0
}
.contact-miscinfo {
	border-top: 1px solid #E5E5E5;
	font-size: 14px;
	margin: 72px 0 0;
	padding: 24px 0 0;
}
#jform_contact_email_copy { margin-left: 10px }
section.newsfeed > ol {
	list-style: none
}
section.newsfeed > ol > li {
	border-top: 1px solid #eee;
	padding: 24px 0 0
}
section.newsfeed > ol > li > a {
	font-size: 42px
}
section.contentpane iframe {
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #eee;
	box-sizing: border-box
}
.tip {
	background: #fff;
	border: 1px solid #ccc;
	max-width: 350px;
	min-width: 160px;
	padding: 8px
}
.tip-title {
	background: #76acfc;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	padding: 5px 15px
}
.tip-text {
	color: #555;
	font-size: 12px;
	padding: 5px 0
}
#system-message {
	margin: 0;
}
#system-message dd ul {
	list-style: none!important
}
#system-message dd {
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: #76acfc;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	min-height: 30px;
	padding: 12px 0;
	text-align: center;
}
#system-message .error {
	background: #f47264;
	color: #fff;
}
#system-message .notice {
	background: #fad260;
	color: #fff;
}
.item-page > div.pagination {
	display: none!important
}
.pagination {
	clear: both;
	margin: 60px 0 20px;
}
.pagination ul li {
	background-image: none!important;
	color: #909090;
	cursor: default;
	display: inline-block;
	margin: 0
}
.pagination ul li a,
.pagination ul li span {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #eee;
	display: block;
	font-size: 13px;
	font-weight: 400;
	height: 34px;
	line-height: 36px;
	margin: 0 7px 0 0;
	min-width: 34px;
	padding: 2px 6px;
	text-align: center
}
.pagination ul li a:hover,
.pagination ul li span:hover {
	color: #222
}
.pagination ul li.counter {
	float: right;
	font-size: 11px;
	line-height: 38px;
	margin-right: 12px
}
ul.pagenav {
	margin: 0;
	overflow: hidden;
	padding: 0
}
#member-registration dt,
#member-registration dd {
	display: inline-block;
	padding-bottom: 10px
}
#member-registration dt {
	min-width: 170px
}
#member-registration dd {
	min-width: 200px
}
#member-registration dd:after {
	content: '\A';
	white-space: pre
}
#gkMainbody .registration {
	width: 500px
}
.bannergroup:first-line,
.bannergroup_text:first-line {
	font-size: 18px;
	line-height: 3;
	font-weight: 500;
}
div.banneritem {
	border-top: 1px solid #eee;
	color: #666;
	font-size: 14px;
	padding: 8px 0
}
div.banneritem a {
	font-size: 14px;
	margin-bottom: 3px;
}
div.bannerfooter {
	border-top: 1px solid #e1e1e1;
	color: #bbb;
	font-size: 12px;
	padding: 5px 5px 0 0;
	text-align: right
}
#gkSocialAPI {
	border-top: 1px solid #e1e1e1;
	clear: both;
	margin: 20px 0;
	padding: 20px 0 0 0;
}
#gkSocialAPI > iframe,
#gkSocialAPI > #___plusone_0 {
	position: relative;
	top: -5px
}
#gkSocialAPI #___plus_0 {
	margin-right: 10px!important;
	position: relative;
	top: -5px;
	vertical-align: top
}
#gkSocialAPI > a {
	top: -5px;
}
.fb_iframe_widget iframe {
	max-width: 1000px!important; overflow: visible
}
#dynamic_recaptcha_1,
#recaptcha_area {
	max-width: 480px;
	min-height: 140px
}
#gkMainbody #dynamic_recaptcha_1,
#gkMainbody #recaptcha_area {
	margin-bottom: 10px
}
.pane-sliders .panel h3 {
	border-bottom: 1px solid #eee;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	line-height: 32px;
	margin: 0;
	padding: 6px 0;
	text-transform: uppercase;
}
.pagenavcounter {
	color: #292b31;
	font-size: 13px;
	font-weight: 400;
}
#article-index {
	border-left: 1px solid #e1e1e1;
	float: right;
	margin: 0 0 30px 30px;
	padding: 12px 0 18px 24px;
	width: auto
}
#article-index h3 {
	color: #333;
	font-size: 16px;
	font-weight: 600;
	line-height: 32px;
	text-transform: uppercase;
}
#article-index li {
	font-size: 14px;
	font-weight: 400;
	padding: 2px 0
}
#article-index li a.active {
	color: #292b31;
}
#article-index li:first-child {
	border-top: none;
	margin-top: 10px
}
dl#tabs,
dl.tabs {
	border: 1px solid #e1e1e1;
	margin: 0 0 16px;
	min-height: 30px;
	overflow: hidden;
	padding: 12px 24px
}
dl#tabs dt.tabs,
dl.tabs dt.tabs {
	border-right: 1px solid #e1e1e1;
	float: left;
	margin-right: 24px;
	padding-right: 12px
}
dl#tabs dt.tabs span h3,
dl.tabs dt.tabs span h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 0;
	text-transform: uppercase
}
dl#tabs dt.tabs span h3 a,
dl.tabs dt.tabs span h3 a {
	float: left;
	height: 30px;
	line-height: 29px;
	margin: 0 8px 0 0;
	padding: 0 8px 0 0
}
dl#tabs dt.tabs h3:hover a,
dl.tabs dt.tabs h3:hover a {
	cursor: pointer
}
dl#tabs dt.tabs.open a,
dl.tabs dt.tabs.open a {
	color: #292b31
}
#searchForm fieldset input[type="radio"],
#searchForm fieldset input[type="checkbox"] {
	margin-top: 11px!important
}
#search-form fieldset.word label,
#search-form fieldset.word input,
#search-form fieldset.word button {
	float: left;
	margin-right: 5px
}
#searchForm label,
#searchForm input,
#finder-search input {
	float: left;
	font-weight: normal;
	margin: 0 12px 0 0;
	text-transform: none
}
fieldset.phrases,
fieldset.only {
	line-height: 36px;
	font-size: 14px
}
#searchForm fieldset.word {
	border: none;
	padding: 0 0 42px
}
#searchForm fieldset legend {
	float: left;
	padding: 0 24px 0 0
}
.searchintro strong {
	color: #292b31;
	font-size: 16px;
	font-weight: 400
}
.form-limit {
	float: right;
	margin: 24px 0 0
}
.result-category,
.result-created {
	color: #AFAFAF;
	font-size: 13px;
	padding: 0 0 8px
}
.result-created {
	margin: 0 0 0 24px
}
.result-title {
	clear: both;
	border-bottom: 1px solid #eee;
	
	padding: 8px 28px;
	position: relative
}
.result-title :before {
	color: #222;
	content: "\f111";
	font-family: FontAwesome;
	font-size: 7px;
	position: absolute;
	top: 18px;
	left: 4px;
}
#advanced-search-toggle {
	display: block;
	font-size: 11px;
	padding: 10px 0;
	text-align: center
}
.advanced-search-tip {
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	font-size: 12px;
	margin: 0 0 24px;
	padding: 12px 0
}
.advanced-search-tip p {
	margin: 0
}
#finder-filter-select-list label {
	clear: both;
	float: left;
	font-size: 12px;
	line-height: 36px;
	min-width: 140px
}
#finder-filter-select-list li {
	overflow: hidden;
	padding: 0
}
#search-query-explained {
	border-bottom: 1px solid #e1e1e1;
	font-size: 11px;
	padding: 10px 0
}
#search-result-empty h2 {
	font-size: 18px
}
.autocompleter-queried {
	color: #76acfc!important
}
div.search-pages-counter {
	font-size: 12px;
	font-style: italic;
	text-align: center
}
.search-results .highlight {
	background-color: #ffc;
	font-weight: 400;
	padding: 1px 4px
}
.archive article {
	padding: 32px 0 0
}
.img-intro-left,
.img-intro-right,
.img-intro-center {
	margin-bottom: 16px;
	max-width: 100%!important
}
/* Menu suffix */


.box.menu ul ul {
	margin-left: 0
}
.box.menu li,
.box .k2ArchivesBlock li {
	margin: 0 0 6px;
	padding: 0;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* Languages */
div.mod-languages > div,
div.mod-languages > form {
	display: inline-block;
	margin: 0 3px
}
div.mod-languages {
	text-align: center
}
div.mod-languages p {
	margin-bottom: .5em
}
.mod-languages ul.lang-inline,
.mod-languages ul.lang-block {
	display: inline-block;
	float: left
}
div.mod-languages > ul.lang-block > li,
div.mod-languages > ul.lang-inline > li {
	line-height: 32px;
	margin: 0 5px
}
.mod-languages ul li.lang-active {
	font-weight: 700
}
.mod-languages ul li a img {
	-moz-transform: scale(1);
	-moz-transform-style: preserve-3d;
	-moz-transition: 0 .1s ease-out;
	-ms-transform: scale(1);
	-ms-transform-style: preserve-3d;
	-o-transform: scale(1);
	-o-transition: 0 .1s ease-out;
	-webkit-transform: scale(1);
	-webkit-transform-style: preserve-3d;
	-webkit-transition: 0 .1s ease-out;
	transform: scale(1);
	transform-style: preserve-3d;
	transition: transform .1s ease-out
}
.mod-languages ul li a:hover img {
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-webkit-transition: 0 .6s ease-out;
	transform: scale(1.2);
	transition: transform .6s ease-out
}
.mod-languages ul li.lang-active a img {
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}
legend.hidelabeltxt,
.filters .hidelabeltxt,
.contact .jicons-icons,
#system-message dt {
	display: none
}
fieldset.filters,
.blog .leading,
.content-links,
.pane-sliders {
	margin-bottom: 50px;
}
section article:first-child,
section.blog .items-more ol {
	margin-top: 0
}
section.categories-list ul ul li:first-child,
section.blog .items-row article header li {
	border: none
}
.filters .display-limit,
ul.pagenav .pagenav-next {
	float: right
}
.img-intro-left,
.img-intro-right,
.img-intro-left > img,
.img-intro-right > img,
section.blog div.img_caption {
	float: none!important
}
#member-registration fieldset + div,
#member-profile > div {
	line-height: 35px
}
/* page links */
div.articleContent div.content-links ul li {
	background: none !important;
	padding-left: 0 !important;
}
/*
 * Joomla! and K2 common parts
 */
 
.itemBody.containsItemInfo,
.itemOtherElements.containsItemInfo,
.itemListView .itemBlock.containsItemInfo {
	margin-left: 160px
}
.itemAsideInfo img {
	max-width: 86px!important;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
/* edit page */

.item-page.edit fieldset {
	border-bottom: 1px solid #eee;
	margin: 0 0 52px;
	padding: 0 0 52px;
}
.item-page.edit legend {
	font-size: 100% !important;
	font-style: normal !important;
	padding: 0 0 24px;
}
/* Calendar fix */
.calendar .button {
	display: table-cell;
	float: none;
}
/* Fix for the editor */
.item-page.edit .formelm {
	clear: both;
	float: left;
}
.item-page.edit .formelm .button2-left {
	margin-top: 6px;
}
.item-page.edit .formelm-area label {
	display: block;
	width: 100%;
}
.item-page.edit .formelm-buttons {
	margin-top: 5px;
	overflow: hidden;
}
.item-page.edit .fltlft {
	float: left;
}
.item-page.edit legend {
	font-size: 140%;
	font-style: italic;
}
.item-page.edit .toggle-editor {
	margin-top: -5px;
}

/* Buttons */
#editor-xtd-buttons {
	padding: 5px;
}
.button2-left,
.button2-right,
.button2-left div,
.button2-right div {
	float: left;
}

.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	display: block;
	height: 22px;
	float: left;
	line-height: 22px;
	font-size: 11px;
	color: #666;
	cursor: pointer;
}
.button2-left span,
.button2-right span {
	cursor: default;
	color: #999;
}
.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span {
	padding: 0 6px;
}
.button2-left a:hover,
.button2-right a:hover {
	text-decoration: none;
	color: #0B55C4;
}

.button2-left a,
.button2-left span {
	padding: 0 30px 0 10px;
	font-size: 12px;
	line-height: 23px;
}

.button2-right a,
.button2-right span {
	padding: 0 6px 0 24px;
}
.button2-left {
	background: url(/templates/gk_mo/images/joomla/j_button2_left.png) no-repeat;
	float: left;
	margin-left: 5px;
}
.button2-right {
	background: url(/templates/gk_mo/images/joomla/j_button2_right.png) 100% 0 no-repeat;
	float: left;
	margin-left: 5px;
}
.button2-left .image {
	background: url(/templates/gk_mo/images/joomla/j_button2_image.png) 100% 0 no-repeat;
}
.button2-left .readmore,
.button2-left .article {
	background: url(/templates/gk_mo/images/joomla/j_button2_readmore.png) 100% 0 no-repeat;
}
.button2-left .pagebreak {
	background: url(/templates/gk_mo/images/joomla/j_button2_pagebreak.png) 100% 0 no-repeat;
}
.button2-left .blank {
	background: url(/templates/gk_mo/images/joomla/j_button2_blank.png) 100% 0 no-repeat;
}
/* Calendar */
a img.calendar {
	width: 16px;
	height: 16px;
	margin-left: 3px;
	background: url(/templates/gk_mo/images/joomla/calendar.png) no-repeat;
	cursor: pointer;
	vertical-align: middle;
}
/*
#------------------------------------------------------------------------
# Mo - January Joomla! template (for Joomla 2.5)
#
# Copyright (C) 2007-2013 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: support@gavick.com 
*/

/* Basic elements */

html {
	-webkit-font-smoothing: subpixel-antialiased;
	min-height: 100%;
}
body {
	background: #f3f3f3;
	color: #8e9798;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
	min-height: 100%;
	min-width: 320px;
    overflow-x: hidden;
	padding: 0;
	word-wrap: break-word;
}
body.pattern1 { background-image: url(/templates/gk_mo/images/patterns/pattern1.png); }
body.pattern2 { background-image: url(/templates/gk_mo/images/patterns/pattern2.png); }
body.pattern3 { background-image: url(/templates/gk_mo/images/patterns/pattern3.png); }
body.pattern4 { background-image: url(/templates/gk_mo/images/patterns/pattern4.png); }
body.pattern5 { background-image: url(/templates/gk_mo/images/patterns/pattern5.png); }
body.pattern6 { background-image: url(/templates/gk_mo/images/patterns/pattern6.png); }
body.pattern7 { background-image: url(/templates/gk_mo/images/patterns/pattern7.png); }
body.pattern8 { background-image: url(/templates/gk_mo/images/patterns/pattern8.png); }
body.pattern9 { background-image: url(/templates/gk_mo/images/patterns/pattern9.png); }
body.pattern10 { background-image: url(/templates/gk_mo/images/patterns/pattern10.png); }
body.pattern11 { background-image: url(/templates/gk_mo/images/patterns/pattern11.png); }
body.pattern12 { background-image: url(/templates/gk_mo/images/patterns/pattern12.png); }

a,
#gkMainMenu div.childcontent a:active,
#gkMainMenu div.childcontent a:focus,
#gkMainMenu div.childcontent a:hover,
article header h1 a:hover,
article header h2 a:hover,
.pane-sliders .panel h3 a:hover {
	color: #f47264;
	-webkit-transition: color 0.2s linear, background-color 0.2s linear;
	-moz-transition: color 0.2s linear, background-color 0.2s linear;
	-o-transition: color 0.2s linear, background-color 0.2s linear;
	transition: color 0.2s linear, background-color 0.2s linear;
	text-decoration: none;
}
a:active,
a:focus,
a:hover {
	color: #292b31;
}
#gkMainMenu div.childcontent a,
article header h1 a,
article header h2 a,
.pane-sliders .panel h3 a {
	color: #292b31;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #363636;
	font-weight: 300;
	line-height: 1.2;
	margin: 0 0 12px 0;
	padding: 0;
}
h1 {
	font-size: 42px;
	font-weight: 300;
	margin: 0 0 12px;
}
h2,
.componentheading {
	font-size: 38px;
	font-weight: 300;
	margin: 0 0 12px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 17px;
}
h6 {
	font-size: 13px;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul li {
	line-height: 2.0;
}
p {
	margin: 0.5em 0 2.5em;
}
iframe {
	max-width: 100%!important;
}
img {
	max-width: 100%;
}

/* Containers */
#gkBg {
	min-height: 100%;
	padding: 0 0 100px 0;
	width: 100%;
}
#gkContent {
	padding: 0 0 30px 0;
}
.frontpage #gkContent {
	padding: 5px 0 0 0;
}
.frontpage #gkMainbody {
	padding: 100px 0;
}
#gkSidebar {
	font-size: 14px;
}
.gkPage {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto!important;
	padding: 0;
}
#gkHeader {
	background: #84cbc5;
	background-size: cover;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 170px;
	position: relative;
}
#gkPageWrap {
	margin: 0 auto;
}
#gkContent,
#gkPageContent {
	width: 100%;
}
#gkPageContent {
	background: #fff;
	padding: 90px 120px;
}
.frontpage #gkPageContent {
	padding: 0 120px;
}
.frontpage-header1 #gkPageContent {
	padding-top: 30px;
}

/* Logo  */
.gkLogo {
	float: left;
	left: 80px;
	position: relative;
	top: 49px;
}
.has-header .gkLogo {
	top: 120px;
	left: 80px;
}
#gkLogo {
	padding: 0;
	text-indent: -999em;
	text-shadow: none;
	width: 139px;
	display: block;
	float: left;
	margin: 0;
	-webkit-transition: background-color .3s linear;
	-moz-transition: background-color .3s linear;
	-ms-transition: background-color .3s linear;
	-o-transition: background-color .3s linear;
	transition: background-color .3s linear;
}
#gkLogo img {
	display: block;
	margin: 0;
}
#gkLogo.cssLogo {
	/* You can specify there logo size and background */
	height: 122px;
	width: 138px;
	background-size: contain;
}
#gkLogo.cssLogo{
	background: transparent url(/templates/gk_mo/images/logo.png) no-repeat 0 0;
}
.svg #gkLogo.cssLogo{
	background-image: url(/templates/gk_mo/images/logo.svg);
}
#gkLogo.text {
	color: #fff;
	display: block;
	height: auto;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
	text-indent: 0;
	width: auto;
}
#gkLogo.text > span {
	display: block;
	font-size: 56px;
	font-weight: bold;
	line-height: 45px;
	padding: 0;
}
#gkLogo.text .gkLogoSlogan {
	color: #eee;
	display: block;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	text-align: center;
}
/* Top */
#gkTop {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 75px;
	padding: 0 40px;
	position: absolute;
	top: 0;
	width: 100%;
}
.frontpage #gkTop1,
.frontpage #gkTop2 {
	padding: 80px 0;
}

/* Stylearea */
#gkStyleArea {
	display: block;
	line-height: 10px;
	margin: 48px auto 0;
	padding: 0!important;
	text-align: center;
}
#gkStyleArea a {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 7px 0 0 1px;
	text-indent: -9999px;
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
	-ms-transform: scale(1.0);
	-o-transform: scale(1.0);
	transform: scale(1.0);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	-moz-transition: -moz-transform 0.2s ease-out;
	-o-transition: -o-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
	width: 8px;
}
#gkStyleArea a:first-child {
	margin-left: 0;
}
#gkStyleArea a:hover {
	-webkit-transform: scale(1.5);
	moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
}
#gkColor1 {
	background: #84cbc5;
}
#gkColor2 {
	background: #fb8561;
}
#gkColor3 {
	background: #5c565e;
}
#gkColor4 {
	background: #536682;
}
/* Group modules */
#gkBottom1,
#gkBottom2,
#gkBottom3,
#gkBottom4,
#gkBottom5,
#gkBottom6,
#gkBottom7,
#gkBottom8 {
	background: #fff;
	overflow: hidden;
	padding: 0 120px;
	width: auto;
}

#gkBottom1.gkSingleModule > div,
#gkBottom2.gkSingleModule > div,
#gkBottom3.gkSingleModule > div,
#gkBottom4.gkSingleModule > div,
#gkBottom5.gkSingleModule > div,
#gkBottom6.gkSingleModule > div,
#gkBottom7.gkSingleModule > div,
#gkBottom8.gkSingleModule > div {
	margin: 0 -120px!important;
	width: auto!important;
}

#gkBottom1 .box,
#gkBottom2 .box,
#gkBottom3 .box,
#gkBottom4 .box,
#gkBottom5 .box,
#gkBottom6 .box,
#gkBottom7 .box,
#gkBottom8 .box {
	padding-bottom: 60px;
	padding-top: 60px;
}

#gkBottom1.gkSingleModule .box,
#gkBottom2.gkSingleModule .box,
#gkBottom3.gkSingleModule .box,
#gkBottom4.gkSingleModule .box,
#gkBottom5.gkSingleModule .box,
#gkBottom6.gkSingleModule .box,
#gkBottom7.gkSingleModule .box,
#gkBottom8.gkSingleModule .box {
	float: none;
	min-width: 100%;
	margin: 0;
	padding: 100px 120px;
	width: auto!important;
}

/* standard breadcrumb */
#gkBreadcrumb {
	background: #84cbc5;
	overflow: hidden;
	padding: 40px 120px;
}
#gkBreadcrumb .breadcrumbs {
	float: left;
}

.breadcrumbs li.separator {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	padding: 1px 10px!important;
}
.breadcrumbs > ul > li {
	color: #fff;
	float: left;
	font-size: 18px;
	font-weight: 300;
}
.breadcrumbs > ul > li a {
	color: #fff
}
.breadcrumbs > ul > li a:hover {
	color: #fff;
	color: rgba(255, 255, 255, .65);
}
#gkTools {
	float: right;
	margin: 4px 0 0 10px;
}

/* footer */
#gkFooter {
	background: #292b31;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	color: #bfbfbf;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	padding: 90px 120px;
}
#gkFooter .gkPage {
	display: table;
}
#gkFooterNav {
	padding: 0 0 0 3%;
	vertical-align: bottom!important;
	width: 50%;
}
#gkFooterNav ul {
	float: right;
}
#gkFooterNav li {
	border: none;
	float: left;
	line-height: 47px;
	margin: 0 22px 0 0!important;
	padding: 0;
	position: relative;
}
#gkFooterNav li:before {
	background: #747474;
	border-radius: 50%;
	content: "";
	display: block;
	height: 4px;
	left: -13px;
	position: absolute;
	top: 21px;
	width: 4px;
}
#gkFooterNav li:first-child:before {
	display: none;
}
#gkFooter li a {
	color: #bfbfbf;
}
#gkFooter li a:active,
#gkFooter li a:focus,
#gkFooter li a:hover {
	color: #f47264;
}
.gk-logo-small {
	background: transparent url(/templates/gk_mo/images/logo.png) no-repeat 0 0;
	background-size: contain;
	height: 66px;
	margin: 0 0 30px 0;
	text-indent: -9999px;
	width: 74px;
}
.svg .gk-logo-small {
	background: transparent url(/templates/gk_mo/images/logo.svg) no-repeat 0 0;
	background-size: contain;
}
.gkFooterInner {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	float: left;
	position: relative;
	width: 100%;
}
.gkFooterColumn.leftColumn {
    float: left;
    position: relative;
    width: 50%;
}
.gkFooterColumn.rightColumn {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    float: left;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    width: 50%;
}
#gkCopyrights {
	margin: 0;
	padding: 0 3% 0 0;
	width: 100%;
}
#gkCopyrights p {
	margin: 14px 0;
}
#gkCopyrights a {
	color: #ddd;
}
#gkCopyrights a:active,
#gkCopyrights a:focus,
#gkCopyrights a:hover {
	color: #fff;
}

/* Other footer elements */
#gkFrameworkLogo {
	clear: both;
	display: block;
	width: 90px;
	height: 36px;
	background: url(/templates/gk_mo/images/gavern-logo.png) no-repeat 0 0;
	text-indent: -9999em;
	margin: 12px auto 0 auto;
	padding: 40px 0 50px 0;
	opacity: 0.4;
}

/* Suffixes */
.box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 32px 0;
	padding: 0;
	width: 100%;
}
.box:last-child {
	margin-bottom: 0!important;
}
div.content {
	clear: both;
}
.box li {
	padding: 5px 0 0 12px;
	position: relative;
}
.box .custom li:before {
	content: "\f111";
	font-family: FontAwesome;
    font-size: 6px;
    left: 0;
    padding: 0;
    position: absolute;
    top: 15px;
}
#gkSidebar .box .custom li:before {
	top: 13px!important;
}
.box li a {
	line-height: 2.0;
	text-decoration: none;
}
.box a {
	text-decoration: none;
}
.box ul {
	margin: 0;
	padding: 0;
}
.box ul ul {
	margin-left: 20px;
}
.box h3 {
	color: #363636;
	font-size: 28px;
	font-weight: normal;
	margin-bottom: 20px;
}
/* default suffix */
.box .header {
	color: #222;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}

#gkSidebar .box .header {
	font-size: 22px;
	font-weight: 400;
}

#gkSidebar .box li a {
	color: #888;
	display: block;
}

#gkSidebar .box li a:hover {
	color: #76acfc;
}

#gkContent.gkColumnLeft + #gkSidebar .box {
	border-left: none;
	border-right: 1px solid #e5e5e5; 
	padding-left: 0;
	padding-right: 36px;
}

#gkContent.gkColumnLeft + #gkSidebar .box.dark,
#gkContent.gkColumnLeft + #gkSidebar .box.color,
#gkContent.gkColumnLeft + #gkSidebar .box.light,
#gkContent.gkColumnLeft + #gkSidebar .box.clear {
	border-right: none;
	padding-right: 20px;
}

/* clear suffix */
.box.clear {
	margin: 0!important;
	padding: 0!important;
}
.clear div.content {
	clear: both;
}

/* nomargin suffix */
.box.nomargin {
	margin-left: 0!important;
	margin-right: 0!important;
}

/* advertisement suffix */
.box.advertisement .header {
	background: transparent;
	border-bottom: 1px solid #e5e5e5;
	color: #bbb;
	font-family: Arial, Verdana, sans-serif!important;
	font-size: 11px!important;
	font-weight: 300;
	line-height: 16px;
	margin: 0 0 12px 0;
	min-height: 21px;
	padding: 0;
	text-align: right;
	text-transform: uppercase;
}
.box.advertisement .header span {
	background: transparent;
	float: right;
	line-height: 16px;
	padding: 0;
}

/* suffix light */
.box.light {
	background: #f8f8f8;
	padding: 20px!important;
}

/* suffix _text */
.box_text > div {
	background: #fff;
}

/* suffix dark */
.box.dark {
	background: #292b31!important;
	color: #aaa;
	padding: 20px!important;
}
.box.dark .header {
	background: transparent!important;
	line-height: 1.2;
}
.box.dark h1,
.box.dark h2,
.box.dark h3,
.box.dark h4,
.box.dark h5,
.box.dark h6 {
	color: #ddd;
}
.box.dark a {
	color: #ddd!important;
}
.box.dark a:active,
.box.dark a:focus,
.box.dark a:hover {
	color: #76acfc!important;
}

/* suffix color */
.box.color {
	background: #76acfc!important;
	color: #fff;
	padding: 20px!important;
}
.box.color .header {
	background: transparent!important;
	line-height: 1.2;
}
.box.color .header small {
	color: #fff;
}
.box.color h1,
.box.color h2,
.box.color h3 {
	color: #fff;
}
.box.color a {
	color: #fff!important;
	font-weight: 400;
}
.box.color a:active,
.box.color a:focus,
.box.color a:hover {
	color: rgba(255, 255, 255, .65)!important;
}

.box.color i[class^="icon-"] {
	color: #fff;
}

/* suffix color-title */
.box.color-title .header {
	color: #84CBC5;
}

/* Suffix imagebg */
.box.imagebg {
	margin: -100px -120px!important;
	padding: 0!important;
	position: relative;
	width: auto!important;
}
.box.imagebg img {
	display: block;
	height: auto;
	width: 100%;
}
.box.imagebg h3 {
	background: #ffc228;
	bottom: 42px;
	color: #fff;
	font-size: 50px;
	left: 140px;
	line-height: 1;
	padding: 28px 56px;
	position: absolute;
	text-transform: uppercase;
}
#gkTop1 .box.imagebg,
#gkTop2 .box.imagebg {
	margin: -80px -120px!important;
}
#gkTop1.gkNoMargin .box,
#gkTop2.gkNoMargin .box {
	float: none;
	padding: 0;
}

/* Suffix bigtitle */
.box.big-title h3,
.box.big-title > .header {
	font-size: 36px!important;
	font-weight: 300!important;
	line-height: 1.6;
	margin: 0 0 10px 0!important;
	text-transform: none;
}

/* Suffix centered */
.box.centered p,
.box.centered h3,
.box.centered .header {
	text-align: center;
}

.box.centered p > .button {
	display: inline-block;
	float: none;
	margin: 40px 0;
}

.box.centered .header {
	font-size: 28px;
	font-weight: normal;
	margin-bottom: 20px;
}
.box.centered p + p > img {
	margin: 60px 0 40px 0;
}

/* Suffix light-color-bg */
.box.light-color-bg {
	background: #f3f8ff;
}

/* Suffix color-bg */
.box.color-bg {
	background: #76acfc;
	color: #292c30;
}
.box.color-bg sup {
	color: #FAD260;
    font-size: 30px !important;
    font-weight: 600;
}
.box.color-bg small sup {
	font-size: 12px!important;
}
.box.color-bg h1,
.box.color-bg h2,
.box.color-bg h3,
.box.color-bg h4,
.box.color-bg h5,
.box.color-bg h6 {
	color: #fff;
	font-size: 32px;
	font-weight: 200;
	line-height: 1.2;
	margin-bottom: 50px;
}
.box.color-bg h1 > strong,
.box.color-bg h2 > strong,
.box.color-bg h3 > strong,
.box.color-bg h4 > strong,
.box.color-bg h5 > strong,
.box.color-bg h6 > strong {
	font-weight: 600;
	text-transform: uppercase;
}
.color-bg > div > small {
	bottom: 50px;
	color: #fff;
	font-size: 12px;
	position: absolute;

}

/* Suffix image-right */
.box.image-right .image-right > div {
	float: left;
	width: 50%;
}
.box.image-right .image-right > img {
	float: right;
	height: auto;
	margin-top: 30px;
	max-width: 45%;
}
.box.image-right .gkCols {
	margin-top: 70px;
}
/* Suffix image-left */
.box.image-left .image-left > div {
	float: right;
	width: 45%;
	margin-top: 100px;
}
.box.image-left .image-left > img {
	float: left;
	height: auto;
	margin-top: 30px;
	max-width: 50%;
}

/* Suffix image-right and image-left common styles */
.box.image-left,
.box.image-right {
	position: relative;
}
img.to-bottom {
	bottom: 0;
	position: absolute;
}

/* tablet/mobile suffixes */
.onlytablet {
	display: none;
}
.onlymobile {
	display: none;
}

/* Login form */
#gkFBLogin {
	float: left;
	width: 45%;
}
#gkFBLogin p {
	line-height: 18px;
	margin: 14px 0 20px;
}
#gkFBLogin + #login-form,
#gkFBLogin + #com-login-form {
	float: left;
	width: 45%;
	margin-left: 4%;
	padding-left: 30px;
	border-left: 1px solid #e7e7e7;
}
#form-login-remember {
	margin: 10px 0 30px !important;
}
#form-login-remember label {
	font-size: 13px;
	font-weight: 400;
	text-transform: inherit;
}
#login-form fieldset p {
	margin: 0.5em 0;
}
#login-form input[type="text"],
#login-form input[type="password"] {
	margin: 6px 0 0;
	width: 99%;
}
label#jform_spacer-lbl {
	font-size: 11px;
	font-weight: normal;
	color: #666;
}
#form-login-buttons {
	float: left;
}
#form-login-buttons .button {
	height: 44px;
	line-height: 44px;
	padding: 0 22px
}

/* Login with Facebook button */
span#fb-auth {
	background-color: #2F4989;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	color: #fff;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 13px;
	height: 43px;
	line-height: 43px;
	margin: 0 0 0 6px;
	padding: 0 20px 0 44px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
	width: 172px;
}
span#fb-auth:before {
	color: #fff;
	content: "\f09a";
	font-family: FontAwesome;
	font-size: 18px;
	position: absolute;
	top: 2px;
	left: 18px;
	width: 24px;
}
#form-login-remind {
	border-top: 1px solid #e1e1e1;
	font-size: 14px;
	margin: 42px 0 0;
	padding: 16px 0 0
}
#form-login-remind a {
	margin: 0 4px
}

/* mobile menu fix */
body[data-mobile="true"] #gkMobileMenu select {
    font-size: 50px;
}

.popover {
	display: none !important;
}
/*
#------------------------------------------------------------------------
# Mo - January Joomla! template (for Joomla 2.5)
#
# Copyright (C) 2007-2013 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: support@gavick.com 
*/
 
/* Base for all menus */
#gkMainMenu {
	float: right;
	margin-top: 0;
	padding: 0;
	width: auto;
}
#gkMainMenu .gkMenu {
	display: block;
	margin: 34px 0 0 0;
	position: relative;
}
#gkMainMenu .gkMenu > ul > li {
	clear: none!important;
	float: left;	
	font-weight: 400;
	height: 74px;
	line-height: 75px;
	
	width: auto;
}
#gkMainMenu .gkMenu > ul > li > a {
	color: #e3fffd;
	display: block;
	height: 74px;
	line-height: 75px;
	padding: 0 16px;
}
#gkMainMenu .gkMenu > ul > li > a.active,
#gkMainMenu .gkMenu > ul > li > a:active
#gkMainMenu .gkMenu > ul > li > a:focus,
#gkMainMenu .gkMenu > ul > li > a:hover {
	color: #fff;
}
#gkMainMenu .gkMenu > ul > li a small {
	display: block;
	font-size: 11px;
	line-height: 12px;
}
#gkMainMenu .gkMenu > ul > li > .childcontent,
#gkMainMenu .gkMenu > ul > li > .childcontent .childcontent {
	border: 1px solid #ededed;
	position: absolute;
	left: -999em;
	z-index: 999;
}
#gkMainMenu .gkMenu > ul > li > .childcontent {
	border-top: none;
}
#gkMainMenu .gkMenu > ul > li > .childcontent .gkcol {
	float: left;
}
#gkMainMenu .gkMenu > ul > li:hover > .childcontent,
#gkMainMenu .gkMenu > ul > li:hover > .childcontent li:hover > .childcontent {
	left: inherit;
}
#gkMainMenu .gkMenu > ul > li .childcontent {
	margin-left: 0;
	margin-top: 0;
}
#gkMainMenu .gkMenu > ul > li .childcontent .childcontent {
	margin-left: 160px;
	margin-top: -35px!important;
}

/* main menu CSS */
#gkMainMenu .gkMenu > ul {
	margin: 0;
	padding: 0;
}
#gkMainMenu .gkMenu a:hover,
#gkMainMenu .gkMenu a:active,
#gkMainMenu .gkMenu a:focus,
#gkMainMenu .gkMenu li.active > a {
	color: #76acfc;
}
#gkMainMenu .gkMenu > ul li div.childcontent {
	background: #fff;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
	box-shadow: 0 0 2px rgba(0, 0, 0, .2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: -10px;
	overflow: visible!important;
	text-transform: none;
}
#gkMainMenu .gkMenu > ul li div.childcontent-inner {
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#gkMainMenu .gkMenu > ul li > .childcontent .gkcol {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-bottom: 0;
}
#gkMainMenu .gkMenu > ul li div.childcontent li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	line-height: 1;
	margin: 0;
	padding: 0;

}
#gkMainMenu .gkMenu > ul li div.childcontent ul { 
	padding: 20px 0;
}

#gkMainMenu .gkMenu > ul li div.childcontent a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	font-size: 14px;
	padding: 6px 25px
}
#gkMainMenu .gkMenu > ul li li div.childcontent small {
	color: #aaa;
	font-weight: normal;
	padding-bottom: 5px;
}
#gkMainMenu .gkMenu > ul li div.childcontent li.group {
	padding: 0;
	margin: 0;
	height: auto;
	border: none !important;
	background: none;
}
#gkMainMenu .gkMenu > ul li div.childcontent header {
	padding: 10px 16px 6px 16px;
	display: block;
	color: #fff;
	margin: 0;
	font-weight: 400!important;
}
#gkMainMenu .gkMenu > ul li div.childcontent header a {
	font-size: 16px;
	line-height: 24px;
	padding: 8px 0 4px;
	text-transform: uppercase;
	border-bottom: 2px solid #e5e5e5;
}
#gkMainMenu .gkMenu > ul li div.childcontent header small {
	display: block;
	text-transform: none;
}
#gkMainMenu .gkMenu .childcontent.active,
#gkMainMenu .gkMenu > ul > li:hover > .childcontent {
    pointer-events: auto;
}
#gkMainMenu .gkMenu .childcontent {
    pointer-events: none;
}
#gkMainMenu .gkMenu li .module p {
	font-size: 12px;
	line-height: 18px;
}

/* hide mobile menu */
#gkMobileMenu {
	display: none;
}

/* Aside menu */
#gkBg {
	-webkit-transition: margin-left .3s ease-out;
	-moz-transition: margin-left .3s ease-out;
	-ms-transition: margin-left .3s ease-out;
	-o-transition: margin-left .3s ease-out;
	transition: margin-left .3s ease-out;
}

#gkBg.menu-open {
	margin-left: -280px;
}

#aside-menu-toggler,
#mobile-menu-toggler,
#static-aside-menu-toggler {
	color: #fff;
	cursor: pointer;
	display: block!important;
	font-size: 44px;
	height: 44px;
	line-height: 44px;
	margin: 40px 0 0 0px!important;
	overflow: hidden;
	position: relative;
	width: 44px;
}
#aside-menu-toggler {
	float: right;
}
#static-aside-menu-toggler {
	color: #333;
	filter: alpha(opacity=0);
	margin: 0!important;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 14px;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

#static-aside-menu-toggler.active {
	filter: alpha(opacity=100);
	opacity: 1;
	margin-right: 25px!important;
}

#mobile-menu-toggler {
	margin: 0px -15px 0 0px!important;
}

#aside-menu {
	background: #292b31;
	float: right;
	height: 100%;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: width .3s ease-out;
	-moz-transition: width .3s ease-out;
	-ms-transition: width .3s ease-out;
	-o-transition: width .3s ease-out;
	transition: width .3s ease-out;
	width: 0;
}

#aside-menu.menu-open {
	width: 280px;
}

#aside-menu > div {
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	padding-right: 32px;
	min-width: 280px;
	max-width: 100%;
}

#close-menu {
	color: #f47264;
	cursor: pointer;
	font-size: 14px;
	opacity: 0; filter: alpha(opacity=0);
	position: fixed;
	right: 0px;
	top: 25px;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	z-index: 1;
}

#close-menu.menu-open {
	opacity: 1.0; filter: alpha(opacity=100);
	right: 10px;
}

#gkAsideMenu > ul {
	padding: 20px 0 20px 32px;
} 

#aside-menu li {
	font-size: 15px;
	font-weight: 600;
	padding: 24px 0 0;	
	text-transform: uppercase;
}

#aside-menu li li {
	font-size: 14px;
	font-weight: 400;
	padding: 0;
	text-transform: none;
}

#aside-menu li li li {
	font-weight: 300;
	padding-left: 15px;
}

#aside-menu li a {
	color: #eee;
}
#aside-menu li li a {
	color: #999;
}
#aside-menu li a.active,
#aside-menu li a:active,
#aside-menu li a:focus,
#aside-menu li a:hover {
	color: #f47264;
}

/* Android fix */
.android-stock-browser #aside-menu {
	height: auto;
	min-height: 100%;
	position: absolute;
}

.android-stock-browser #aside-menu > div {
	height: auto;
	min-height: 100%;
}
#gkMainMenu .gkMenu > ul > li > a, #gkMainMenu .gkMenu > ul > li > a:active #gkMainMenu .gkMenu > ul > li > a:focus, #gkMainMenu .gkMenu > ul > li > a: #gkMainMenu .gkMenu > ul > li a small {
	display: block;
	font-size: 11px;
	line-height: 12px;
}
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/templates/gk_mo/fonts/font-awesome/fontawesome-webfont.eot?v=4.4.0);
  src: url(/templates/gk_mo/fonts/font-awesome/fontawesome-webfont.eot#iefix&v=4.4.0) format('embedded-opentype'), url(/templates/gk_mo/fonts/font-awesome/fontawesome-webfont.woff2?v=4.4.0) format('woff2'), url(/templates/gk_mo/fonts/font-awesome/fontawesome-webfont.woff?v=4.4.0) format('woff'), url(/templates/gk_mo/fonts/font-awesome/fontawesome-webfont.ttf?v=4.4.0) format('truetype'), url(/templates/gk_mo/fonts/font-awesome/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
/*
#------------------------------------------------------------------------
# Mo - January Joomla! template (for Joomla 2.5)
#
# Copyright (C) 2007-2013 Gavick.com. All Rights Reserved.
# License:  Copyrighted Commercial Software
# Website:  http://www.gavick.com
# Support:  support@gavick.com
 */
 
/* Icons */ 

@font-face {
	font-family: "mo-pixellove";
	src: url(/templates/gk_mo/fonts/mo-pixellove/mo-pixellove.eot);
	src: url(/templates/gk_mo/fonts/mo-pixellove/mo-pixellove.eot#iefix) format("embedded-opentype"), url(/templates/gk_mo/fonts/mo-pixellove/mo-pixellove.ttf) format("truetype"), url(/templates/gk_mo/fonts/mo-pixellove/mo-pixellove.svg#mo-pixellove) format("svg"), url(/templates/gk_mo/fonts/mo-pixellove/mo-pixellove.woff) format("woff");
	font-weight: normal;
	font-style: normal;
}
[data-icon]:before {
	font-family: "mo-pixellove" !important;
	content: attr(data-icon);
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
	font-family: "mo-pixellove";
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-rss:before { content: "a"; }
.icon-book:before { content: "c"; }
.icon-box:before { content: "e"; }
.icon-calendar:before { content: "f"; }
.icon-camera:before { content: "g"; }
.icon-certificate:before { content: "h"; }
.icon-chart:before { content: "i"; }
.icon-chat:before { content: "j"; }
.icon-devices:before { content: "k"; }
.icon-email:before { content: "l"; }
.icon-folder:before { content: "m"; }
.icon-headset:before { content: "n"; }
.icon-hits:before { content: "o"; }
.icon-loop:before { content: "p"; }
.icon-marker:before { content: "q"; }
.icon-pin:before { content: "r"; }
.icon-rating:before { content: "s"; }
.icon-rocket:before { content: "t"; }
.icon-tag:before { content: "u"; }
.icon-timer:before { content: "v"; }
.icon-user:before { content: "w"; }
.icon-video:before { content: "x"; }
.icon-zoom:before { content: "y"; }
/* GK Icons */
@font-face {
	font-family: "mo-gk-icons";
	src: url(/templates/gk_mo/fonts/mo-gk-icons/mo-gk-icons.eot);
	src: url(/templates/gk_mo/fonts/mo-gk-icons/mo-gk-icons.eot#iefix) format("embedded-opentype"), url(/templates/gk_mo/fonts/mo-gk-icons/mo-gk-icons.ttf) format("truetype"), url(/templates/gk_mo/fonts/mo-gk-icons/mo-gk-icons.svg#mo-gk-icons) format("svg"), url(/templates/gk_mo/fonts/mo-gk-icons/mo-gk-icons.woff) format("woff");
	font-weight: normal;
	font-style: normal;
}
[data-icon]:before {
	font-family: "mo-gk-icons" !important;
	content: attr(data-icon);
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
[class^="gk-icon-"]:before,
[class*=" gk-icon-"]:before {
	font-family: "mo-gk-icons" !important;
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.gk-icon-gplay:before { content: "a"; }
.gk-icon-appstore:before { content: "b"; }
.gk-icon-menu:before { content: "d"; }
/*
 * News Show Pro GK5
 */

.nspMain { position: relative; }
/* Pagination */
.nspBotInterface,
.nspTopInterface {
	clear: both;
	float: right;
	margin: 5px 0;
}
.nspTopInterface {
	position: absolute;
	right: 0;
	top: -40px;
}
.nspBotInterface .nspPagination { margin-top: 0; }
/* 
	Interface - for different looking Top and Bottom interface use the following classes:  
	.nspTopInterface
	.nspBotInterface (e.g.: .nspTopInterface .nspPagination li ...)
*/
.nspPagination {
	float: left;
	list-style-type: none!important;
	margin: 3px 0 0 0!important;
	padding: 0!important;
}
.nspPagination li {
	background: #ddd;
	border: none!important;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	float: left;
	height: 8px;
	margin: 4px 4px 0 0!important;
	padding: 0;
	text-indent: -999em;
	width: 8px;
}
.nspPagination li:hover,
.nspPagination li.active { background-color: #84CBC5; }
.nspNext,
.nspPrev {
	cursor: pointer;
	float: left;
	height: 16px;
	margin: 0 2px;
	text-indent: -9999px;
	width: 10px;
}
.nspNext:after,
.nspPrev:after {
	color: #000;
	display: block;
	float: left;
	font-family: FontAwesome;
	font-size: 22px;
	line-height: 22px;
	text-indent: 0;
}
.nspNext:after {
	color: #ccc;
	content: '\f105';
}
.nspPrev:after {
	color: #ccc;
	content: '\f104';
}
.nspNext:hover:after,
.nspPrev:hover:after { color: #84CBC5; }
/* Articles layout */
.nspArts {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	padding: 0;
}
.nspArtPage { float: left; }
.nspArt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
.nspArt div { overflow: hidden; }
.nspArt h4.nspHeader {
	color: #222;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	padding: 10px 0;
}
.nspArt h4.nspHeader a:hover { color: #222; }
.nspArt img.nspImage {
	border: none;
	display: block;
}
.nspArt .nspImageWrapper {
	display: block;
	overflow: hidden;
}
.nspArt .nspImageWrapper img {
	-webkit-transition: all .18s linear;
	-moz-transition: all .18s linear;
	-ms-transition: all .18s linear;
	-o-transition: all .18s linear;
	transition: all .18s linear;
}
.nspArt .nspImageWrapper:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.nspArt p.nspText {
	display: block!important;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	padding: 0!important;
}
.nspArt p.nspInfo {
	color: #aaa;
	display: block!important;
	font-size: 13px;
	padding: 5px 0;
}
.nspArt p.nspInfo > * { padding-left: 10px; }
.nspArt p.nspInfo > *:first-child { padding-left: 0; }
.nspArt p.nspInfo img { vertical-align: middle; }
.nspArt .tleft { text-align: left; }
.nspArt .tright { text-align: right; }
.nspArt .tcenter { text-align: center; }
.nspArt .tjustify { text-align: justify; }
.nspArt .fleft { float: left; }
.nspArt .fright { float: right; }
.nspArt .fnone {
	clear: both;
	float: none;
	width: 100%;
}
.readon.left,
.readon.right,
.readon.center { clear: both; }
.readon.left { float: left; }
.readon.right { float: right; }
.readon.center {
	display: inline;
	float: none;
}
.nspAvatar { }
/* Links layout */
.nspLinks {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 3px;
}
.nspList { float: left; }
.nspLinks ul {
	list-style-type: none!important;
	padding: 0!important;
}
.nspLinks .nspLinkScroll1 ul li {
	margin: 0!important;
	padding: 10px 0;
}
.nspLinks ul li h4 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 4px;
}
.nspLinks ul li h4 a { text-decoration: none; }
.nspLinks ul li p {
	font-size: 14px;
	margin: 0;
}
/* positioning */
.nspArts.left { float: right; }
.nspLinksWrap.left { float: left; }
.nspArts.right { float: left; }
.nspLinksWrap.right { float: right; }
/* make element unvisible */
.nspMain .unvisible {
	left: -9999px;
	position: absolute;
	top: auto;
}
/* Responsive layout */
.gkResponsive img.nspImage,
img.nspImage.gkResponsive {
	height: auto;
	width: 100%!important;
}
.nspArt img.nspImage { max-width: 100%; }
.nspArtScroll1,
.nspLinkScroll1 {
	overflow: hidden;
	width: 100%;
}
.nspPages1 { width: 100%; }
.nspPages2 { width: 200%; }
.nspPages3 { width: 300%; }
.nspPages4 { width: 400%; }
.nspPages5 { width: 500%; }
.nspPages6 { width: 600%; }
.nspPages7 { width: 700%; }
.nspPages8 { width: 800%; }
.nspPages9 { width: 900%; }
.nspPages10 { width: 1000%; }
.nspCol1 { width: 100%; }
.nspCol2 { width: 50%; }
.nspCol3 { width: 33.3%; }
.nspCol4 { width: 25%; }
.nspCol5 { width: 20%; }
.nspCol6 { width: 16.66%; }
.nspCol7 { width: 14.285%; }
.nspCol8 { width: 12.5%; }
.nspCol9 { width: 11.1%; }
.nspCol10 { width: 10%; }
.nspCol11 { width: 9.09%; }
.nspCol12 { width: 8.33%; }
.nspCol13 { width: 7.69%; }
.nspCol14 { width: 7.14%; }
.nspCol15 { width: 6.66%; }
.nspCol16 { width: 6.25%; }
.nspCol17 { width: 5.88%; }
.nspCol18 { width: 5.55%; }
.nspCol19 { width: 5.26%; }
.nspCol20 { width: 5%; }
/* Animation */
.nspList,
.nspArtPage {
	opacity: 0;
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}
.nspList.active,
.nspArtPage.active { opacity: 1; }
/* Suffix dark */
.box.dark a.readon { color: #fff!important; }
.box.dark a.readon:hover {
	background: #fff;
	color: #76acfc!important;
}
/* Suffix color */
.box.color .nspArt p.nspInfo { color: #fff; }
.box.color .nspArt .readon {
	background: #fff;
	color: #76acfc!important;
}
.box.color .nspArt .readon:hover {
	background: #292b31;
	color: #fff!important;
}
.box.color a.readon { color: #fff!important; }
.box.color .nspPagination li { background: #fff; }
.box.color .nspPagination li:hover,
.box.color .nspPagination li.active { background-color: #ccc; }
.box.color .nspNext:after,
.box.color .nspPrev:after { color: #ccc; }
.box.color .nspNext:hover:after,
.box.color .nspPrev:hover:after { color: #fff; }
/*
 * Tabs GK5 Module
 */
.gkTabsGK5 {
	position: relative;
	overflow: hidden;
}
.gkTabsWrap ol li {
	background: #84CBC5;
	border-radius: 20px;
	color: #fff;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 13px;
	font-weight: 400;
	height: 30px;
	line-height: 31px;
	list-style-type: none;
	margin-right: 5px;
	padding: 0 15px!important;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.gkTabsWrap ol li.active,
.gkTabsWrap ol li.active:hover,
.gkTabsWrap ol li:hover { background: #292b31; }
.gkTabsContainer {
	clear: both;
	overflow: hidden;
	position: relative;
}
.gkTabsItem {
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	left: -9999px;
	padding: 0 0 10px 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
.gkTabsItem.active {
	left: 0;
	position: relative;
	z-index: 2;
}
.gkTabsNav {
	background: transparent;
	margin: 0 0 20px;
}
.gkTabsNav:after {
	clear: both;
	content: "";
	display: table;
}
.gkTabsButtonNext,
.gkTabsButtonPrev { display: none; }
/* Frontpage elements */

/* Header I */
.custom.gk-header1 { padding: 300px 120px 0 120px; }
.custom.gk-header1 > div:first-child {
	float: left;
	width: 42%;
}
.gk-header1 h1 {
	color: #fff;
	font-size: 48px;
	font-weight: 300;
	line-height: 1;
}
.gk-header1 p {
	color: #fff;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	margin: 30px 0 0 0;
}
.gk-header1 a {
	background: #f47264;
	border-radius: 20px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	height: 38px;
	margin: 50px 0 0 0;
	line-height: 39px;
	padding: 0 38px;
}
.gk-header1 a:active,
.gk-header1 a:focus,
.gk-header1 a:hover { background: #222; }
.custom.gk-header1 .gk-tablet {
	background: url(/templates/gk_mo/images/header_1_img.png) no-repeat center center;
	background-size: 100% 100%!important;
	float: right;
	margin: -112px 0 -80px 0;
	height: 620px;
	position: relative;
	width: 430px;
}
.svg .custom.gk-header1 .gk-tablet {
	background: url(/templates/gk_mo/images/header_1_img.svg) no-repeat center center;
}
.gk-header1 .gk-tablet > div {
	display: block;
	overflow: hidden;
	position: absolute;
	max-width: 85%;
	left: 8%;
	top: 9%;
}
.gk-header1 .gk-tablet img {
	display: block;
	float: left;
}
.gk-header1 .gk-tablet[data-slides="1"] img { width: 100%; }
.gk-header1 .gk-tablet[data-slides="2"] img { width: 50%; }
.gk-header1 .gk-tablet[data-slides="3"] img { width: 33.333333%; }
.gk-header1 .gk-tablet[data-slides="4"] img { width: 25%; }
.gk-header1 .gk-tablet[data-slides="5"] img { width: 20%; }
.gk-header1 .gk-tablet[data-slides="6"] img { width: 16.666666%; }
.gk-header1 .gk-tablet[data-slides="1"] > div > div { width: 100%; }
.gk-header1 .gk-tablet[data-slides="2"] > div > div { width: 200%; }
.gk-header1 .gk-tablet[data-slides="3"] > div > div { width: 300%; }
.gk-header1 .gk-tablet[data-slides="4"] > div > div { width: 400%; }
.gk-header1 .gk-tablet[data-slides="5"] > div > div { width: 500%; }
.gk-header1 .gk-tablet[data-slides="6"] > div > div { width: 600%; }
/* Header II */
.custom.gk-header2 {
	background: url(/templates/gk_mo/images/header2_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 300px 120px;
	text-align: center;
}
.gk-header2 small {
	color: #fff;
	display: block;
	font-size: 17px;
	font-style: italic;
}
.gk-header2 h1 {
	color: #fff;
	font-size: 48px;
	font-weight: 400;
}
.gk-header2 a {
	background: #84cbc5;
	border-radius: 20px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	height: 38px;
	margin: 50px 0 0 0;
	line-height: 39px;
	padding: 0 38px;
}
.gk-header2 a:active,
.gk-header2 a:focus,
.gk-header2 a:hover { background: #f47264; }
/* Header III */
.custom.gk-header3 {
	background: url(/templates/gk_mo/images/header3_bg.jpg) no-repeat center center;
	background-size: cover;
	padding: 240px 120px 140px 120px;
	text-align: center;
}
.gk-header3 small {
	color: #fff;
	font-size: 17px;
	font-style: italic;
}
.gk-header3 h1 {
	color: #fff;
	font-size: 48px;
	font-weight: 400;
	margin: 0;
}
.gk-header3 .gk-avatar {
	margin: 0 auto 40px auto;
	position: relative;
	width: 530px;
}
.gk-header3 .gk-avatar img {
	border: 3px solid #fff;
	border-radius: 50%;
}
.gk-header3 .gk-avatar a {
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 32px;
	height: 72px;
	line-height: 73px;
	margin: -36px 0 0 0;
	position: absolute;
	text-align: center;
	text-indent: 5px;
	top: 50%;
	width: 72px;
}
.gk-header3 .gk-avatar i { color: #fff; }
.gk-header3 .gk-avatar .gk-fb { left: 0; }
.gk-header3 .gk-avatar .gk-twitter { right: 0; }
.gk-header3 small {
	display: block;
}
/* Frontpage blocks */
.box.newsletter {
	background: #f3f8ff;
	padding: 32px 120px!important;
}
.box.newsletter p {
	color: #363636;
	float: left;
	line-height: 38px;
	margin: 0;
}
.box.newsletter form { float: right; }
.box.newsletter input[type="email"] {
	border-radius: 3px 0 0 3px;
	float: left;
	font-size: 16px;
	height: 38px;
	padding: 0 20px;
	width: 260px;
}
.box.newsletter input[type="submit"] {
	border-radius: 0 3px 3px 0!important;
	float: left;
	height: 38px;
	line-height: 39px;
	margin: 0 0 0 -1px;
	padding: 0 18px;
}
/* Columns in the content */
.gkCols {
	margin: 0 -45px;
	width: auto;
}
.gkCols.testimonials { margin: 0 -12px; }
.gkCols:after {
	clear: both;
	content: "";
	display: table;
}
.gkCols.margin-top,
.gkCols.testimonials { margin-top: 100px!important; }
.gkCols > div,
.gkCols > blockquote {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	padding: 0 45px;
}
.gkCols[data-cols="4"],
.gkCols[data-cols="5"] { margin: 0 -15px; }
.gkCols[data-cols="2"] > div,
.gkCols[data-cols="2"] > blockquote { width: 50%; }
.gkCols[data-cols="3"] > div,
.gkCols[data-cols="3"] > blockquote { width: 33.333333%; }
.gkCols[data-cols="4"] > div,
.gkCols[data-cols="4"] > blockquote {
	padding: 0 15px;
	width: 25%;
}
.gkCols[data-cols="5"] > div,
.gkCols[data-cols="5"] > blockquote {
	padding: 0 15px;
	width: 20%;
}
.gkCols h4 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 24px;
}
.gkCols p { font-size: 14px; }
.gkCols + .button {
	background: #76acfc;
	margin-top: 50px;
}
.gkCols + .button:hover { background: #333; }
/* Testimonials */
.testimonials > blockquote {
	margin: 0;
	padding: 0 12px;
}
.testimonials > blockquote:before { display: none; }
.testimonials > blockquote > p {
	border: 2px solid #f3f3f3;
	color: #8e9798;
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 14px 0;
	min-height: 70px;
	padding: 40px;
	position: relative;
	text-align: left!important;
}
.testimonials > blockquote > p:after,
.testimonials > blockquote > p:before {
	border: 11px solid #fff;
	border-color: #fff transparent transparent transparent;
	bottom: -22px;
	content: "";
	height: 0px;
	left: 28px;
	position: absolute;
	width: 0px
}
.testimonials > blockquote > p:before {
	border: 14px solid #f3f3f3;
	border-color: #f3f3f3 transparent transparent transparent;
	bottom: -28px;
	left: 25px;
}
.testimonials > blockquote > img {
	border-radius: 50%;
	float: left;
	height: 38px;
	margin: 20px;
	width: 38px;
}
.testimonials > blockquote > strong {
	display: block;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin: 34px 0 0 0;
}
.testimonials > blockquote > a {
	font-size: 13px;
	line-height: 1;
	display: block;
}
/* Points */
.gk-point h4 {
	color: #363636;
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 24px 0;
}
.gk-point h4:before {
	background: #f47264;
	background-clip: content-box!important;
	border: 1px solid #dfdfdf;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	content: "";
	display: block;
	float: left;
	height: 5px;
	margin: -3px 16px 0 0;
	padding: 10px;
	width: 5px;
}
.gk-point p {
	font-size: 14px;
	text-align: left!important;
}
/* Big buttons */
.gk-big-btn {
	background: #84cbc5;
	border-radius: 2px;
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 300!important;
	height: 60px;
	line-height: 61px;
	margin: 0 auto 15px auto;
	max-width: 250px;
	padding: 0 25px;
}
.gk-big-btn > i {
	display: block;
	float: left;
	font-size: 48px;
	margin-top: 7px;
	text-align: left;
}
.gk-big-btn > i.gk-icon-appstore { margin-left: -12px; }
.gk-big-btn:hover {
	background: #f47264;
	color: #fff;
}
/* Big icons */
.gk-big-icon {
	color: #f47264;
	display: block;
	font-size: 72px;
	line-height: 1;
	margin-top: 40px;
}
/* Features */
.gkFeature {
	margin-top: 20px;
	text-align: center;
}
.gkFeature > i {
	display: block;
	font-size: 100px;
	margin: 0 0 -20px 0;
}
.gkFeature h3 { font-size: 18px; }
.icon-color1 { color: #fa7960; }
.icon-color2 { color: #fad260; }
.icon-color3 { color: #84cbc5; }
/* List */
.gk-list { 
	list-style-type: none; 
	overflow: hidden;
	width: 380px;
}
.box .gk-list li:before {
	border: 2px solid #d9dce1;
	border-radius: 50%;
	color: #d9dce1;
	content: counter(gk-list)!important;
	display: block;
	float: left;
	font-family: Arial, sans-serif;
	font-size: 18px;
	height: 42px;
	left: -90px;
	line-height: 43px;
	text-align: center;
	top: 15px;
	width: 42px;
}
.gk-list li {
	border-top: 1px solid #eee;
	clear: both;
	color: #363636;
	counter-increment: gk-list;
	font-size: 18px;
	line-height: 68px;
	margin: 0 0 0 90px;
	position: relative;
}
.gk-list li:first-child {
	border-top: none;
}
.gk-list li:after {
	clear: both;
	content: "";
	display: table;
}
.gk-list li strong {
	color: #8e9798;
	float: right;
}
img.bigger-margin-top {
	margin-top: 100px!important;
}
.box .gk-list li.color-red:before {
	border-color: #fa7960;
	color: #fa7960;
}
.box .gk-list li.color-yellow:before {
	border-color: #fad260;
	color: #fad260;
}
.box .gk-list li.color-green:before {
	border-color: #84cbc5;
	color: #84cbc5;
}
.box .gk-list li.color-blue:before {
	border-color: #76acfc;
	color: #76acfc;
}
/* 
 * Price table 
 */

.gkPriceTable { padding: 60px 0 48px 0; }
.gkPriceTable::after {
	clear: both;
	content: "";
	display: table;
}
.gkPriceTable.col1 dl { width: 100%; }
.gkPriceTable.col2 dl {
	float: left;
	width: 50%;
}
.gkPriceTable.col3 dl {
	float: left;
	width: 33.3%;
}
.gkPriceTable.col4 dl {
	float: left;
	width: 25%;
}
.gkPriceTable.col5 dl {
	float: left;
	width: 20%;
}
.gkPriceTable dl {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: -1px;
	padding: 20px 32px;
}
.gkPriceTable dl.gkPremium {
	border: 2px solid #84cbc5;
	margin: 0;
	padding: 32px
}
.gkPriceTable.gkWhite dl { background: #f8f8f8; }
.gkPriceTable dt {
	border-bottom: 1px solid #ddd;
	color: #000;
	font-size: 22px;
	font-weight: 400;
	line-height: 65px;
	margin-top: -20px;
	text-align: center;
}
.gkPriceTable dd {
	font-size: 16px;
	font-weight: 36px;
	padding: 6px 0;
	text-align: center;
}
.gkPriceTable dd a {
	background: #84cbc5;
	border-radius: 20px;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	height: 38px;
	line-height: 39px;
	padding: 0 38px;
	margin: 23px 0 15px;
}
.gkPriceTable dd a:hover { background: #292b31}
.gkPriceTable dd.gkPrice {
	color: #555;
	font-size: 60px;
	font-weight: 600;
}
.gkPriceTable dd.gkPrice small {
	color: #999;
	font-size: 16px;
	font-weight: 300;
}
.gkPriceTable { padding: 60px 0 90px; }
/*
#------------------------------------------------------------------------
# Mo - January Joomla! template (for Joomla 2.5)
#
# Copyright (C) 2007-2013 Gavick.com. All Rights Reserved.
# License: Copyrighted Commercial Software
# Website: http://www.gavick.com
# Support: support@gavick.com 
*/
 
/* Style 1 */

/* template.css */
body { color: #8E9798;}
a,
#gkMainMenu div.childcontent a:active,
#gkMainMenu div.childcontent a:focus,
#gkMainMenu div.childcontent a:hover,
article header h1 a:hover,
article header h2 a:hover,
.pane-sliders .panel h3 a:hover {
	color: #4F6DEB;
}
#gkHeader {
	background: #84cbc5;
}
#gkBreadcrumb {
	background: #84cbc5;
}
#gkFooter li a:active,
#gkFooter li a:focus,
#gkFooter li a:hover {
	color: #4F6DEB;
}
#gkSidebar .box li a:hover {
	color: #76acfc;
}
.box.dark a:active,
.box.dark a:focus,
.box.dark a:hover {
	color: #76acfc!important;
}
.box.color {
	background: #76acfc!important;
}
.box.color-title .header {
	color: #84CBC5;
}
.box.imagebg h3 {
	background: #ffc228;
}
.box.light-color-bg {
	background: #f3f8ff;
}
.box.color-bg {
	background: #76acfc;
	color: #292c30;
}
.box.color-bg sup {
	color: #FAD260;
}

/* joomla.css */
button,
.button,
.readon,
.button.inverse:active,
.button.inverse:focus,
.button.inverse:hover,
input.button,
span.button,
button.button,
div.button,
.readmore a,
input[type="submit"],
input[type="button"] {
	background: #84CBC5;
}
button:hover,
.button:hover,
.readon:hover,
.readmore a:hover,
.button.inverse,
input.button:hover,
span.button:hover,
button.button:hover,
div.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	background: #292b31;
}
.button.color1,
.readon.color1 {
	background: #76acfc;
}
th {    
    background: #f3f8ff;
}
th a:active,
th a:focus,
th a:hover {
	color: #76acfc!important;
}
.itemAsideInfo a:hover { color: #4F6DEB;}
article header a:hover { color: #4F6DEB}
.tip-title {
	background: #76acfc;
}
#system-message .error {
	background: #4F6DEB;
}
#system-message .notice {
	background: #fad260;
}
.autocompleter-queried {
	color: #76acfc!important
}

/* gk_stuff.css */
 .nspPagination li:hover,
.nspPagination li.active { background-color: #84CBC5; }
.nspNext:hover:after,
.nspPrev:hover:after { color: #84CBC5; }
.box.dark a.readon:hover {
	color: #76acfc!important;
}
.box.color .nspArt .readon {
	color: #76acfc!important;
}
.gkTabsWrap ol li {
	background: #84CBC5;
}
.gk-header1 a {
	background: #4F6DEB;
}
.gk-header1 a:active, 
.gk-header1 a:focus, 
.gk-header1 a:hover {
        background: #222
}
.gk-header2 a {
	background: #84cbc5;
}
.gk-header2 a:active,
.gk-header2 a:focus,
.gk-header2 a:hover { background: #4F6DEB; }
.box.newsletter {
	background: #f3f8ff;
}
.gkCols + .button {
	background: #76acfc;
}
.testimonials > blockquote > p {
	color: #8e9798;
}
.gk-point h4:before {
	background: #4F6DEB;
}
.gk-big-btn {
	background: #84cbc5;
}
.gk-big-btn:hover {
	background: #4F6DEB;
}
.gk-big-icon {
	color: #4F6DEB;
}
.icon-color1 { color: #fa7960; }
.icon-color2 { color: #fad260; }
.icon-color3 { color: #84cbc5; }
.box .gk-list li:before {
	border: 2px solid #d9dce1;
	color: #d9dce1;
}
.box .gk-list li.color-red:before {
	border-color: #fa7960;
	color: #fa7960;
}
.box .gk-list li.color-yellow:before {
	border-color: #fad260;
	color: #fad260;
}
.box .gk-list li.color-green:before {
	border-color: #84cbc5;
	color: #84cbc5;
}
.box .gk-list li.color-blue:before {
	border-color: #76acfc;
	color: #76acfc;
}
.gkPriceTable dl.gkPremium {
	border: 2px solid #84cbc5;
}
.gkPriceTable dd a {
	background: #84cbc5;
}

/* menu.css */
#gkMainMenu .gkMenu > ul > li > a {
	color: #e3fffd;
}
#gkMainMenu .gkMenu a:hover,
#gkMainMenu .gkMenu a:active,
#gkMainMenu .gkMenu a:focus,
#gkMainMenu .gkMenu li.active > a {
	color: #76acfc;
}
#close-menu {
	color: #4F6DEB;
}
#aside-menu li a.active,
#aside-menu li a:active,
#aside-menu li a:focus,
#aside-menu li a:hover {
	color: #4F6DEB;
}

/* k2.css */
.k2FeedIcon:before {
	color: #fad260;
}
.activeCategory a { color: #76acfc }
h1 > sup,
h2 > sup {
	background: #76acfc;
}
span#formLog {
	color: #FAD260;
}
.itemAuthorURL a:hover {
	color: #4F6DEB!important;
}
.itemAuthorData {
	background: #f3f8ff;
}
.itemRelatedContent { background: #f3f8ff; }
.itemCommentsForm #submitCommentButton {
	background: #84cbc5;
}
.itemCommentsForm #submitCommentButton:hover {
	background: #4F6DEB;
}
.itemComments .itemCommentsList li span:first-child {
	color: #4F6DEB;
}
a.commentLink { color: #84cbc5; }
a.commentLink:hover { color: #4F6DEB; }
.k2CalendarBlock table.calendar tr td.calendarDateLinked a:hover {
	background: #76acfc;
}
.k2CalendarBlock table.calendar tr td.calendarToday {
	background: #76acfc;
}
.k2CalendarBlock table.calendar tr td.calendarTodayLinked {
	background: #f5f5f5;
}
table.calendar tr td.calendarTodayLinked a {
	color: #76acfc;
}
.k2CalendarBlock table.calendar tr td.calendarTodayLinked a:hover {
	background: #76acfc;
}
.calendarNavLink { color: #76acfc; }
.k2TagCloudBlock a:hover { color: #76acfc }
body {
    color: #555555;
    font-weight: normal;
    font-size: 15px;
}

#gkBg {
    padding: 0;
}

#gkTop {
    padding: 0;
	position: relative;
}

.frontpage #gkTop {
	position: absolute;
}

p {
    margin: 0.5em 0 1.5em;
}

button, .button, .readon, .button.inverse:active, .button.inverse:focus, .button.inverse:hover, input.button, span.button, button.button, div.button, .readmore a, input[type="submit"], input[type="button"] {
    background: none repeat scroll 0 0 #4F6DEB;
    border-radius: 0;
}

#gkPageContent {
    padding: 80px;
}

#gkBottom2,
#gkBottom3 {
    border-top: 1px solid #e1e1e1;
}

#gkBottom1.gkSingleModule .box,
#gkBottom2.gkSingleModule .box,
#gkBottom3.gkSingleModule .box,
#gkBottom4.gkSingleModule .box,
#gkBottom5.gkSingleModule .box,
#gkBottom6.gkSingleModule .box,
#gkBottom7.gkSingleModule .box,
#gkBottom8.gkSingleModule .box {
    padding: 60px 120px;
}

/* ---------- LOGO ----------*/
.has-header .gkLogo,
.gkLogo {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
    left: 0;
    padding: 40px;
    position: relative;
    top: 0;
    width: auto;
}

#gkLogo {
    width: 210px;
}

/* ---------- HEADER ----------*/
#gkHeader {
    background: none repeat scroll 0 0 #4F6DEB;
}

.custom.gk-header2 {
    padding: 350px 40px;
}

/* ---------- LANGUAGES ----------*/
#gkLang {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
	float: left;
	margin: 26px 0 0 !important;
    padding: 0 50px;
    width: auto;
}

.lang-inline li a {
	color: #fff;
}

.lang-inline li a:hover {
	color: #292B31;
}

.lang-inline li.lang-active a:hover {
	color: #fff;
	cursor: default;
}

div.mod-languages > ul.lang-block > li, div.mod-languages > ul.lang-inline > li {
    margin: 0;
}

.lang-inline li:after {
    color: #FFFFFF;
    content: "/";
    font-weight: bold;
    padding: 0 5px;
}

.lang-inline li:last-child:after {
    color: #FFFFFF;
    content: "";
    font-weight: bold;
    padding: 0 5px;
}

/* ---------- MENU ----------*/
#gkMainMenu .gkMenu {
    margin: 40px 0 0;
}

#gkMainMenu .gkMenu > ul {
    background: none repeat scroll 0 0 rgba(220, 220, 220, 0.35);
    float: right;
	padding: 0 70px 0 0;
}

#gkMainMenu .gkMenu > ul > li {
    font-weight: 300;
    height: auto;
    line-height: 32px;
}

#gkMainMenu .gkMenu > ul > li > a {
    color: #292B31;
    height: auto;
    line-height: 32px;
    padding: 4px 12px;
}

/* ---------- HOME PAGE ----------*/
.frontpage #gkMainbody {
    padding: 0;
}

.frontpage #gkPageContent {
    border-bottom: 1px solid #EAEAEA;
}

.frontpage #gkBottom1 {
    border-top: 1px solid #E1E1E1;
}

.frontpage .big-title h3 {
    font-size: 32px !important;
}

.frontpage h3.boldText {
    font-size: 40px !important;
    font-weight: 600 !important;
}

.frontpage .box .header {
    color: #222222;
    font-size: 38px;
    font-weight: 300;
    line-height: 46px;
}

.frontpage .gkNspPM-Portfolio {
    padding: 0;
}

.frontpage .gkNspPM-Portfolio .gkImagesWrapper > a > .gkImgOverlay > span {
    background-color: #4F6DEB;
}

.frontpage .gkNspPM-Portfolio .gkImagesWrapper > a > .gkImgOverlay > span:before {
    font-size: 18px;
    height: 44px;
    left: 50%;
    line-height: 44px;
	margin: -22px 0 0 -22px;
    width: 44px;
}

.frontpage .gkNspPM-Portfolio .gkImagesWrapper > a > .gkImgOverlay.active span:before {
    opacity: 1;
    top: 50%;
}

.frontpage a.gkLoadMore {
    background: none repeat scroll 0 0 #4F6DEB;
    border: medium none;
    border-radius: 0;
    color: #FFFFFF !important;
    cursor: pointer;
    float: none;
    font-size: 16px;
    font-weight: 300 !important;
    height: 40px;
    line-height: 41px;
    margin: 0 auto 2px;
    padding: 11px 30px;
    text-align: center;
    transition: all 0.3s ease-out 0s;
    width: auto;
}

.frontpage a.gkLoadMore:hover {
	background: none repeat scroll 0 0 #292B31;
}

/* ---------- RIGHT COLUMN ----------*/
#gkSidebar .box {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
    margin-top: 0;
    padding-bottom: 15px;
}

#gkSidebar .box:last-child {
    border: medium none;
}

div.banneritem {
    border-top: medium none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

div.banneritem img {
    border: none;
}

#gkSidebar .awPaypalDonate {
    display: -webkit-flex;
    display: flex;
    float: left;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
}


/* ---------- K2 ----------*/
.itemList .itemIntroText {
    font-weight: 600;
}

.itemImage, .itemImageBlock > img {
    display: block;
    line-height: 0;
    margin: 0 0 15px;
}

article header:after {
    margin-bottom: 0;
    padding: 0;
}

/* ---------- SIMPLE IMAGE GALLERY ----------*/
ul.sigProClassic li.sigProThumb:before {
    content: none !important;
}

ul.sigProClassic li.sigProThumb span.sigProLinkOuterWrapper {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    display: block;
    float: left;
    margin: 0;
    padding: 0;
}

ul.sigProClassic li.sigProThumb span.sigProLinkWrapper {
    border: medium none;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
}

/* ---------- CONTACT ----------*/
.contact > h3 {
    border-bottom: 1px solid #EEEEEE;
	font-size: 38px;
    margin: 0 0 48px;
    padding: 0 0 24px;
}

.contact-address, .contact-contactinfo {
    float: left;
    margin: 0 0 15px;
    width: 100%;
}

.contact-miscinfo {
    border-top: medium none;
    float: left;
    font-size: 14px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.contact-form {
    float: left;
}

.contact-form dt,
.contact-form dd {
    float: left;
    width: 100%;
}

.contact-form label {
    float: left;
    margin: 10px 0 0;
    padding: 6px 0 0;
    text-transform: uppercase;
    width: 100%;
}

.contact-form input {
    float: left;
    margin: 2px 0 0;
    width: 80%;
}

.contact-form textarea {
    float: left;
    height: 121px;
    margin: 3px 0 0;
    padding: 6px;
    resize: none;
    width: 100%;
}

.contact-form #easycalccheckplus {
    margin: 0 !important;
    padding: 0 !important;
}

.tip-wrap {
	display: none!Important;
}

/* ---------- FOOTER ----------*/
.svg .gk-logo-small {
    background: url(/templates/gk_mo/images/logo.png) no-repeat scroll 0 0 / contain rgba(0, 0, 0, 0);
}
.gk-logo-small {
    height: 96px;
    margin: 0 0 30px;
    text-indent: -9999px;
    width: 210px;
}

#gkFooterMenu {
    vertical-align: bottom !important;
}

#gkFooterMenu ul {
	float: right;
    margin: 0 0 8px;
}

#gkFooterMenu li {
	border: none;
	float: left;
	margin: 0 22px 0 0!important;
	padding: 0;
	position: relative;
}
#gkFooterMenu li:last-child {
    margin: 0 !important;
}

#gkFooterMenu li:before {
	background: #747474;
	border-radius: 50%;
	content: "";
	display: block;
	height: 4px;
	left: -13px;
	position: absolute;
	top: 14px;
	width: 4px;
}

#gkFooterMenu li:first-child:before {
	display: none;
}

#gkFooterNav {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
    float: right;
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

#gkFooterNav img {
    height: auto;
    width: 140px;
}

.pagination ul li {
    background-image: none !important;
    color: #909090;
    cursor: default;
    display: none;
    margin: 0;
}

.pagination ul li.pagination-start,
.pagination ul li.pagination-prev,
.pagination ul li.pagination-next,
.pagination ul li.pagination-end,
.pagination ul li.counter {
    display: inline-block;
}
