﻿/*
* HTML5 ✰ Boilerplate
*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*
* Detailed information about this CSS: h5bp.com/css
*
* ==|== normalize ==========================================================

=============================================================================
HTML5 display definitions
==========================================================================*/
ARTICLE, ASIDE, DETAILS, FIGCAPTION, FIGURE, FOOTER, HEADER, HGROUP, NAV, SECTION
{
	display: block;
}
AUDIO, CANVAS, VIDEO
{
	display: inline-block;
	=display: inline;
	=zoom: 1;
}
[hidden]
{
	display: none;
}
/*=============================================================================
Base
==========================================================================

* 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
* 2. Force vertical scrollbar in non-IE
* 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
HTML
{
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
BODY
{
	margin: 0;
	font-size: 13px;
	line-height: 1.231;
}
BODY, BUTTON, INPUT, SELECT, TEXTAREA
{
	font-family: sans-serif;
	color: #222;
}
/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection declarations have to be separate
* Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection
{
	background: #E76204;
	color: #FFF;
	text-shadow: none;
}
::selection
{
	background: #E76204;
	color: #FFF;
	text-shadow: none;
}
/*=============================================================================
Links
==========================================================================*/
A
{
	color: #00E;
}
A:visited
{
	color: #551A8B;
}
A:hover
{
	color: #06E;
}
A:focus
{
	outline: thin dotted #000000;
}
/*Improve readability when focused and hovered in all browsers: h5bp.com/h*/
A:hover, A:active
{
	outline: 0;
}
/*=============================================================================
Typography
==========================================================================*/
ABBR[title]
{
	border-bottom: 1px dotted #000000;
}
B, STRONG
{
	font-weight: bold;
}
BLOCKQUOTE
{
	margin: 1em 40px;
}
DFN
{
	font-style: italic;
}
HR
{
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #CCC;
	margin: 1em 0;
	padding: 0;
}
INS
{
	background: #FF9;
	color: #000;
	text-decoration: none;
}
MARK
{
	background: #FF0;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
/*Redeclare monospace font family: h5bp.com/j*/
PRE, CODE, KBD, SAMP
{
	font-family: monospace, serif;
	-font-family: "courier new", monospace;
	font-size: 1em;
}
/*Improve readability of pre-formatted text in all browsers*/
PRE
{
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
Q
{
	quotes: none;
}
Q:before, Q:after
{
	content: "";
	content: none;
}
SMALL
{
	font-size: 85%;
}
/*Position subscript and superscript content without affecting line-height: h5bp.com/k*/
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: 1em 0;
	padding: 0 0 0 40px;
}
DD
{
	margin: 0 0 0 40px;
}
NAV UL, NAV OL
{
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
/*=============================================================================
Embedded content
==========================================================================

* 1. Improve image quality when scaled in IE7: h5bp.com/d
* 2. Remove the gap between images and borders on image containers: h5bp.com/e
 */
IMG
{
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}
/*=============================================================================
Figures
==========================================================================*/
FIGURE
{
	margin: 0;
}
/*=============================================================================
Forms
==========================================================================*/
FORM
{
	margin: 0;
}
FIELDSET
{
	border: 0;
	margin: 0;
	padding: 0;
}
/*Indicate that 'label' will shift focus to the associated form element*/
LABEL
{
	cursor: pointer;
}
/*
* 1. Correct color not inheriting in IE6/7/8/9
* 2. Correct alignment displayed oddly in IE6/7
 */
LEGEND
{
	border: 0;
	=margin-left: -7px;
	padding: 0;
}
/*
* 1. Correct font-size not inheriting in all browsers
* 2. Remove margins in FF3/4 S5 Chrome
* 3. Define consistent vertical alignment display in all browsers
 */
BUTTON, INPUT, SELECT, TEXTAREA
{
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	=vertical-align: middle;
}
/*
* 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
* 2. Correct inner spacing displayed oddly in IE6/7
 */
BUTTON, INPUT
{
	line-height: normal;
	=overflow: visible;
}
/*
* Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */
TABLE BUTTON, TABLE INPUT
{
	=overflow: auto;
}
/*
* 1. Display hand cursor for clickable form elements
* 2. Allow styling of clickable form elements in iOS
 */
BUTTON, INPUT[type="button"], INPUT[type="reset"], INPUT[type="submit"]
{
	cursor: pointer;
	-webkit-appearance: button;
}
/*
* Consistent box sizing and appearance
 */
INPUT[type="checkbox"], INPUT[type="radio"]
{
	box-sizing: border-box;
	padding: 0;
}
INPUT[type="search"]
{
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
INPUT[type="search"]::-webkit-search-decoration
{
	-webkit-appearance: none;
}
/*
* Remove inner padding and border in FF3/4: h5bp.com/l
 */
BUTTON::-moz-focus-inner, INPUT::-moz-focus-inner
{
	border: 0;
	padding: 0;
}
/*
* 1. Remove default vertical scrollbar in IE6/7/8/9
* 2. Allow only vertical resizing
 */
TEXTAREA
{
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}
/*Colors for form validity*/
INPUT:valid, TEXTAREA:valid
{
}
INPUT:invalid, TEXTAREA:invalid
{
	background-color: #F0DDDD;
}
/*=============================================================================
Tables
==========================================================================*/
TABLE
{
	border-collapse: collapse;
	border-spacing: 0;
}
TD
{
	vertical-align: top;
}
/*==|== primary styles =====================================================
Author: Kostas Margaritis*/
BODY
{
	background-color: #FFF;
	color: #5F5F5F;
	font-family: "Trebuchet MS";
}
#main-wrapper
{
	margin: 0 auto;
	position: relative;
	width: 960px;
	min-height:700px;
}
/*Header*/
BODY > HEADER
{
	background: transparent url(../img/header_bg.png) repeat-x top;
	height: 406px;
}
#header-inner
{
	background: url(../img/header_bg_glow.jpg) no-repeat center bottom;
	height: 401px;
	position: relative;
}
#header-top
{
	margin: 0 auto;
	/*position: relative;
	width: 960px;*/
	
	/* RESPONSIVE HEADER */
	max-width: 960px;
	width: 100%;
}
#header-logo
{
	height: 100px;
	left: 15px;
	position: absolute;
	top: 60px;
	/*width: 465px;*/
	max-width: 465px;
	width:100%;
}
/*Header (search)*/
#header-search
{
	position: absolute;
	right: 10px;
	top: 20px;
	width: 250px;
}
#searchform
{
	background: transparent url(../img/searchform.png);
	height: 30px;
	position: relative;
}
#searchform #s
{
	background-color: transparent;
	border: none;
	height: 21px;
	left: 6px;
	position: absolute;
	top: 4px;
	width: 210px;
}
#searchform #searchsubmit
{
	background: transparent;
	border: none;
	height: 24px;
	position: absolute;
	right: 3px;
	top: 3px;
	width: 24px;
}
/*Footer*/
BODY > FOOTER
{
	background: transparent url(../img/footer_bg.png) repeat-x top left;
	height: 225px;
}
#footer-wrapper
{
	height: 225px;
	margin: 0 auto;
	position: relative;
	width: 960px;
}
/*Footer (menu)*/
#footer-menu
{
	float: left;
	height: 30px;
	margin: 80px 0px 0px 340px;
}
#footer-menu UL
{
	list-style: none outside none;
	margin: 0;
	padding: 0;
}
#footer-menu LI
{
	border-left: 1px solid #FFF;
	float: left;
	line-height: 10px;
	padding: 0 22px;
}
#footer-menu LI:first-child
{
	border-left: none;
}
#footer-menu A:link, #footer-menu A:visited
{
	color: #FFF;
	font-size: 15px;
	text-decoration: none;
}
#footer-menu A:hover, #footer-menu A:focus, #footer-menu A:active, #footer-menu LI.current-menu-item A
{
	text-decoration: underline;
}
/*Footer (copy - dev)*/
#footer-copy
{
	color: #ABABAB;
	float: left;
	font-size: 12px;
	margin: 30px 0 0 5px;
	width: 344px;
}
#footer-logo
{
	height: 120px;
	background: transparent url(../img/footer_logo.png) no-repeat;
	position: absolute;
	top: 68px;
	width: 345px;
}
#footer-dev
{
	color: #ABABAB;
	float: right;
	font-size: 11px;
	height: 49px;
	margin: 52px 20px 0 0;
}
#footer-dev SPAN
{
	float: left;
	margin: 29px 0 0;
	width: 130px;
}
#footer-dev A
{
	background: transparent url(../img/footer_dcanvas.png);
	height: 49px;
	display: block;
	float: left;
	width: 141px;
}
/*Sidebar*/
#main-sidebar
{
	float: left;
	left: 10px;
	position: absolute;
	top: -190px;
	width: 260px;
}
#main-sidebar > ASIDE > SECTION
{
	margin: 0 0 40px;
}
/*Sidebar (menu)*/
#menu-left-menu
{
	list-style: none outside none;
	margin: 0;
	padding: 0;
}
#menu-left-menu LI
{
	margin: 0 0 3px;
}

#menu-left-menu li a{text-indent:-99999px;}

#menu-left-menu LI A:link, #menu-left-menu LI A:visited
{
	display: block;
	height: 77px;
	width: 260px;
}
#menu-left-menu LI.left-menu-home
{
	background: transparent url(../img/main-menu-home.png);
}
#menu-left-menu LI.left-menu-company
{
	background: transparent url(../img/main-menu-company.png);
}
#menu-left-menu LI.left-menu-services
{
	background: transparent url(../img/main-menu-services.png);
}
#menu-left-menu LI.left-menu-works
{
	background: transparent url(../img/main-menu-works.png);
}
#menu-left-menu LI.left-menu-partners
{
	background: transparent url(../img/main-menu-partners.png);
}
#menu-left-menu LI.left-menu-news
{
	background: transparent url(../img/main-menu-news.png);
}
#menu-left-menu LI.left-menu-contact
{
	background: transparent url(../img/main-menu-contact.png);
}
/*Sidebar (newsletter)*/
.newsletter-widget
{
	background-color: #22587A;
	padding: 10px 10px 15px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.newsletter-widget H2
{
	color: #FFF;
	margin: 0;
	text-shadow: 0px 1px 1px #393939;
}
.newsletter-widget P
{
	color: #FF6A00;
	font-size: 12px;
	margin: 1px 0 10px;
}
.newsletter-widget INPUT[type=text]
{
	border: none;
	float: left;
	font-size: 14px;
	height: 21px;
	line-height: 22px;
	padding: 4px 5px 0;
	width: 160px;
}
.newsletter-widget INPUT[type=submit]
{
	background-color: #E56004;
	border: 1px solid #E56004;
	border-color: #EC7C03 #EC7C03 #FB6B08;
	color: #FFFFFF;
	float: left;
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	margin: 0 0 0 6px;
	padding: 0 4px;
	background-image: -moz-linear-gradient(0% 0% 270deg,#E77603, #CD5705);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E77603), to(#CD5705));
}
/*Main (gallery)*/
#main-gallery
{
	background: transparent url(../img/gallery_shadow.jpg) no-repeat 0 360px;
	height: 350px;
	padding: 0 0 50px;
	position: absolute;
	right: 0;
	top: -190px;
	width: 662px;
}
#main-gallery-previous, #main-gallery-next
{
	height: 40px;
	position: absolute;
	top: 240px;
	width: 32px;
	z-index: 1000;
}
#main-gallery-previous
{
	background: transparent url(/img/gallery_arrow_left.png);
	left: -6px;
}
#main-gallery-next
{
	background: transparent url(/img/gallery_arrow_right.png) no-repeat;
	right: -6px;
	width: 24px;
}
/*Main content*/
#main-content
{
	margin: 215px 0 0 304px;
	min-height: 325px;
	padding: 0 0 40px;
	width: 650px;
}
#main-content H1
{
	color: #FF6A00;
	font-size: 24px;
	font-weight: normal;
}
#main-content P
{
	font-size: 18px;
	font-weight: normal;
	line-height: 24px;
	text-align: justify;
}
/*Main content (welcome)*/
#main-welcome H2
{
	color: #FF6A00;
	font-size: 24px;
	font-weight: normal;
}
#main-welcome P
{
	font-size: 18px;
	font-weight: normal;
	line-height: 24px;
	text-align: justify;
}
/*Main content (posts)*/
#main-posts
{
	list-style: none inside none;
	margin: 0;
	padding: 0;
}
#main-posts LI
{
	background-color: #393939;
	font-size: 14px;
	margin: 0 0 10px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-box-shadow: 1px 1px 6px #1D1D1D;
	-webkit-box-shadow: 1px 1px 6px #1D1D1D;
	box-shadow: 1px 1px 6px #1D1D1D;
}
#main-posts LI A:link, #main-posts LI A:visited
{
	color: #E76204;
	background: transparent url(../img/bullet.png) no-repeat 10px 13px;
	display: block;
	height: 24px;
	padding: 10px 0 0 30px;
	text-decoration: none;
}
#main-posts LI A SPAN
{
	color: #DCD4DA;
	padding: 0 0 0 20px;
}
#main-posts LI A:hover SPAN, #main-posts LI A:focus SPAN, #main-posts LI A:active SPAN
{
	text-decoration: underline;
}
/*Main content (pages)*/
.page #main-content ARTICLE UL
{
	font-size: 18px;
	margin: 30px 0 10px 30px;
	padding: 0;
	list-style: square outside none;
}
.page #main-content ARTICLE UL LI
{
	margin: 0 0 10px;
}
.page #main-content A:link, .page #main-content A:visited
{
	color: #E76204;
	font-size: 12px;
	text-decoration: none;
}
.page #main-content A:hover, .page #main-content A:active, .page #main-content A:focus
{
	text-decoration: underline;
}
.page #main-content ARTICLE UL LI EM
{
	background-color: #E76204;
	color: #FFFFFF;
	font-style: normal;
	margin: 0 5px 0 0;
	padding: 3px 4px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: inset 0px 10px 4px #FF8D3B, 0px 1px 5px #414141;
	-webkit-box-shadow: inset 0px 10px 4px #FF8D3B, 0px 1px 5px #414141;
	box-shadow: inset 0px 10px 4px #FF8D3B, 0px 1px 5px #414141;
}
.page #main-content ARTICLE #page-partners LI
{
	margin: 0 0 15px;
}
/*Main content (pages - contact)*/
.wpcf7 P
{
	margin: 0 0 7px;
}
.wpcf7 LABEL
{
	display: block;
	margin: 0;
}
.wpcf7 INPUT[type=text], .wpcf7 TEXTAREA
{
	padding: 4px;
	width: 470px;
}
.wpcf7 INPUT[type=submit]
{
	background-color: #E76204;
	border: 1px solid #FF7615;
	color: #FFFFFF;
	font-style: normal;
	margin: 20px 0 0 380px;
	padding: 4px 6px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: inset 0px 10px 4px #FF8D3B, 0px 1px 5px #414141;
	-webkit-box-shadow: inset 0px 10px 4px #FF8D3B, 0px 1px 5px #414141;
	box-shadow: inset 0px 10px 4px #FF8D3B, 0px 1px 5px #414141;
}
/*==========================================================================
==|== non-semantic helper classes ========================================
Please define your styles before this section.
==========================================================================
For image replacement*/
.ir
{
	display: block;
	border: 0;
	text-indent: -999em;
	overflow: hidden;
	background-color: transparent;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}
.ir BR
{
	display: none;
}
/*Hide from both screenreaders and browsers: h5bp.com/u*/
.hidden
{
	display: none !important;
	visibility: hidden;
}
/*Hide only visually, but have it available for screenreaders: h5bp.com/v*/
.visuallyhidden
{
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/*Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p*/
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus
{
	clip: rect(auto, auto, auto, auto);
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
/*Hide visually and from screenreaders, but maintain layout*/
.invisible
{
	visibility: hidden;
}
/*Contain floats: h5bp.com/q*/
.clearfix:before, .clearfix:after
{
	content: "";
	display: table;
}
.clearfix:after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
/*==|== print styles =======================================================
Print styles.
Inlined to avoid required HTTP connection: h5bp.com/r
==========================================================================*/
@media print
{
	*
	{
		background: transparent !important;
		color: #000000 !important;
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}
	/*Black prints faster: h5bp.com/s*/
	A, A:visited
	{
		text-decoration: underline;
	}
	A[href]:after
	{
		content: " (" attr(href) ")";
	}
	ABBR[title]:after
	{
		content: " (" attr(title) ")";
	}
	.ir A:after, A[href^="javascript:"]:after, A[href^="#"]:after
	{
		content: "";
	}
	/*Don't show links for images, or javascript/internal links*/
	PRE, BLOCKQUOTE
	{
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	THEAD
	{
		display: table-header-group;
	}
	/*h5bp.com/t*/
	TR, IMG
	{
		page-break-inside: avoid;
	}
	IMG
	{
		max-width: 100% !important;
	}
	@page
	{
		margin: 0.5cm;
	}
	P, H2, H3
	{
		orphans: 3;
		widows: 3;
	}
	H2, H3
	{
		page-break-after: avoid;
	}
}
@media only screen and (max-width: 768px) {
 
	#main-wrapper{width:100%;}
 #footer-logo{width:100%;}
    #main-content, #main-gallery {
		
        float: none;
        display: block;
        width: 100%;
		padding:0;
		position:relative;
		top:0;
		left:0;
		margin:0;
		height:auto;
    }
	
	#main-content{padding:15px;width:90%;}
	
    #main-sidebar {
        float: none;
        display: block;
		position:relative;
		left:0;
		top:0;
    }
    
	#header-inner{background-size:contain;height:100px;}
	BODY > HEADER{height:auto;}
	#slider1_container{margin:0 !important;width:100% !important;}
	
	#footer-wrapper{max-width:960px;
	width:100%;}
	
	#footer-menu LI{padding: 0 15px;}
}



.tnp-widget input.tnp-submit{margin-left:0;}
#main-content .ngg-albumoverview .ngg-album-compact .ngg-album-compactbox .ngg-album-link .Thumb{height:140px!important;}
.wpcf7 INPUT[type=submit]{margin:0 !important;}
.wpcf7-form-control-wrap input{padding:10px !important;width:85% !important;}