/*
Theme Name: avega
Theme URI: http://wordpress.org/themes/twentytwelve
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

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

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

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

---------- Examples

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

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

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

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

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

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

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


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

@import url(https://fonts.googleapis.com/css?family=Roboto:400,900italic,900,700italic,700,500italic,500,400italic,300italic,300,100italic,100&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,200,100,300,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700);

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

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


/* =Repeatable patterns
-------------------------------------------------------------- */

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

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

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

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

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

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

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

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

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

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

.clearfix {
	display:block;
	margin:0;
	padding:0;
	clear:both;
}

.alignleft {
	padding-right:30px;
	padding-bottom:30px;
}

.alignright {
	padding-left:30px;
	padding-bottom:30px;
}

img {
	max-width:100%;
}

/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */

body {
	font-size: 12px;
	font-family: Helvetica, Arial, sans-serif;
	color: #4f4f4f;
}

a {
	outline: none !important;
	color: #508dc1;
	text-decoration:none;
}
a:hover {
	color: #508dc1;
	text-decoration:underline;
}


#main-page {
	width:100%;
	clear:both;
	position:relative;
	background:#fff;
}

#page-wrapper {
	max-width:1184px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	clear:both;
}

#page-header {
	width:100%;
	position:relative;
	clear:both;
}

.header-top {
	width:100%;
	height:113px;
	position:relative;
	clear:both;
}

.header-image {
	display:block;
	clear:both;
}

.header-logo {
	position:absolute;
	width:213px;
	height:53px;
	top:30px;
	left:55px;
}

.header-logo b {
	display:block;
	width:213px;
	height:53px;
	background:url('images/logo.png') no-repeat;
}

#text-2 {
	position:absolute;
	width:160px;
	height:35px;
	right:50px;
	top:45px;
}

.header-icons {
	text-align:right;
}

.header-icon {
	display:inline-block;
	width:35px;
	height:35px;
	margin-left:2px;
}

.header-icon a b {
	display:block;
	width:35px;
	height:35px;
}

.header-icon-1 {
	background:url('images/e-mail.gif') no-repeat;
}

.header-icon-1:hover {
	background:url('images/e-mail-h.gif') no-repeat;
}

.header-icon-2 {
	background:url('images/linkedIn.gif') no-repeat;
}

.header-icon-2:hover {
	background:url('images/linkedIn-h.gif') no-repeat;
}


.header-icon-3 {
	background:url('images/logIn.gif') no-repeat;
}

.header-icon-3:hover {
	background:url('images/logIn-h.gif') no-repeat;
}


.menu-area {
	position:absolute;
	bottom:0px;
	width:100%;
	z-index:99999;
	height:30px;
}

#nav_menu-2 {
	float:right;
	margin-right:10px;
}

ul.menu {
	padding:0;
	margin:0;
}

ul.menu > li {
	float:left;
	margin-left:2px;
	line-height:30px;
}


ul.menu > li > a {
	display:block;
	padding-left:30px;
	padding-right:30px;
	background:#fff;
	line-height:29px;
	font-family:'Roboto';
	font-weight:600;
	text-transform:uppercase;
	text-decoration:none;
	padding-top:1px;
	color:#518dc3;
	font-size:14px;
}

.current_page_ancestor > a,
.current_page_item > a,
ul.menu > li > a:hover {
	background:#508ec1 !important;
	color:#fff !important;
}


ul.menu > li .sub-menu {
	position:absolute;
	min-width:122px;
	z-index:99999;
	display:none;
}

#menu-item-65 .sub-menu {
	min-width:142px;
}

ul.menu > li:hover .sub-menu {
	display:block;
}

ul.menu > li .sub-menu li {
	display:block;
	line-height:30px;
	width:100%;
	clear:both;
}

ul.menu > li .sub-menu li:first-child a{
	border-top:2px solid #fff;
}

ul.menu > li .sub-menu li a {
	border-top:1px solid #e3e3e3;
	background:#f4f4f4;
	color:#518dc3;
	width:100%;
	display:block;
	padding-left:30px;
	text-decoration:none; 
	text-transform:uppercase;
	font-family:'Roboto';
	font-weight:600;
	width:100%;
}

.sub-menu .current_page_item a,
.sub-menu  > li > a:hover {
	display:block;
	background:#f4f4f4 !important;
	color:#3e719c !important;
	padding-left:30px;
	width:100%;
}

.page-content-indent {
	position:relative;
	margin-top:46px;
	margin-left:60px;
	clear:both;
}

h1 {
	font-size:42px;
	text-transform:uppercase;
	padding-bottom:25px;
	font-family:'Raleway';
	font-weight:100;
}

h1  span,
h1  strong,
h1  b {
	font-family:'Roboto';
	font-weight:400;
}

.entry-content {
	font-family:'Droid Sans';
}

.entry-content p {
	font-size:14px;
	line-height:24px;
	padding-bottom:10px;
	color:#646363;
	max-width:750px;
}

#page-footer {
	position:relative;
	margin-top:40px;
	border-top:1px solid #4974a1;
	min-height:70px;
	font-family:'Roboto';
	font-size:12px;
	padding-top:8px;
	clear:both;
}

.entry-content table {
	width:100%;
	margin-top:15px;
	max-width:980px;
}

.entry-content table td{
	vertical-align:top;	
	font-size:14px;
	line-height:24px;
}

.entry-content table td img {
	padding-right:30px;
	padding-bottom:35px;
}

h2 {
	font-family:'Raleway';
	font-weight:500;
	color:#508dc1;
	font-size:18px;
	text-transform:uppercase;
	letter-spacing:1px;
}

h3 {
	color:#000;
	font-weight:normal;
}

td h3  {
	padding-top:0px;
	margin-top:0px;
	padding-bottom:10px;
	line-height:14px;
}

h4 {
	font-weight:normal;
}

td h4  {
	padding-bottom:10px;
}

.wpcf7-text,
.wpcf7-textarea{
	width:100%;
	max-width:410px;
	border:2px solid #ebebeb;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.wpcf7-textarea {
	height:100px;
}

.wpcf7-captchar {
	width:100%;
	max-width:110px;
}

img.wpcf7-captchac {
	margin-bottom:-8px;
}
.captcha-row {
	text-align:right;
	margin-right:-15px;
}

.wpcf7-submit,
.wpcf7-submit:hover {
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
	background:#508dc1 !important;
	border:1px solid #508dc1 !important;
	color:#fff !important;
	padding-left:10px;
	padding-right:10px;
	float:right;
	margin-right:-17px;
	clear:both;
}

#wpcf7-f68-p62-o1 {
	max-width:410px;
}


.page-id-70 h2{
	text-transform:none;
	font-size:16px;
	padding-top:10px;
}

.entry-content ul {
	padding-top:10px;
}

.entry-content li{
	display:block;
	padding-left:30px;
	background:url('images/arr.png') 5px 3px no-repeat;
	font-size:14px;
	padding-bottom:10px;
	line-height:20px;
	color:#646363;
	clear:both;
}

.iframe-class {
	border:15px solid #d7d2c6 !important;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position:absolute;
	top:70px;
	right:0;
}

#icl_lang_sel_widget-2 {
	float:right;
	margin-right:43px;
}

#icl_lang_sel_widget-2 li {
	margin-right:2px !important;
	padding:0;
}
 
#icl_lang_sel_widget-2 li a {
	line-height:30px;
	color:#356082;
	font-family:'Roboto';
	font-weight:800;
	width:45px;
	text-align:center;
	display:block;
	padding:0;
	margin:0;
	padding-bottom:27px;
	margin-bottom:27px;
	background:url('images/langshadow2.png') bottom left no-repeat #4d8ec6 !important;;
}

.header-image img{
	margin:0 !important;
	padding:0 !important;
	display:block !important;
}

#icl_lang_sel_widget-2 li a.lang_sel_sel {
	color:#fff !important;
	background:url('images/langshadow.png') bottom left no-repeat #4d8ec6 !important;;
}

.resp-menu-button {
	display:none;
}

#text-3 .textwidget{
	padding-left:60px;
}

.header-icon-3 {
	display:none;
}

.link-nl,
.link-en {
	display:none;
}

html[lang="nl-NL"] .link-nl {
	display:block;
}

html[lang="en-US"] .link-en {
	display:block;
}


.footer-links {
	position:absolute;
	right:60px;
	top:7px;
}

.footer-links a {
	color:rgb(79, 79, 79);
	position:rel
}

@media (max-width: 1070px) {

	#page-wrapper {
		width:700px;
		max-width:700px;
		overflow:hidden;
	}
	
	.page-content-indent {
		position:relative;
		margin-top:46px;
		margin-left:30px;
		clear:both;
	}
	
	.entry-content table td:first-child {
		max-width:200px;
	}
	
	.entry-content table td img {
		max-width:170px;
		padding-right: 30px;
		padding-bottom: 35px;
	}
	
	#wpcf7-f68-p62-o1,
	.wpcf7-text,
	.wpcf7-textarea{
		max-width:280px;
	}
	
	h1 {
		font-size:28px;
		text-transform:uppercase;
		padding-bottom:25px;
		font-family:'Raleway';
	}
	
	.entry-content p {
		clear:both;
		display:block;
		float:none !important;
	}

	.iframe-class {
		position:relative;
		top:0;
		margin-bottom:20px;
		float:none !important;
		width:90%;
		clear:both;
	
	}

	
	ul.menu > li > a {
		padding-left:15px;
		padding-right:15px;
		font-size:11px;
	}
	
}


@media (max-width: 720px) {
	ul.menu > li > a {
		font-size:14px;
	}
	#page-wrapper {
		width:520px;
		max-width:520px;
		padding-left:10px;
		padding-right:10px;
		overflow:hidden;
	}
	
	.page-content-indent {
		position:relative;
		margin-top:46px;
		margin-left:0px;
		clear:both;
	}
	
	.resp-menu-button {
		position:absolute;
		display:block;
		width:25px;
		height:17px;
		background:url('images/respbutton.jpg') no-repeat;
		top:55px;
		right:5px;
		cursor:pointer;
	}
	
	.menu-area {
		display:none;
		clear: both;
		left:0;
		top:0;
		position:fixed;
		width:280px;
		height:100%;
		z-index:9999;
		background:#fff;
		border-right:0px;
		z-index:999999;
		overflow:auto;
		border-right:1px solid #4d8ec6;
	}
	
	.menu-area  .menu {
		padding-top:40px;
	}
	
	.menu-area  .menu li,
	.menu-area  .menu ul{
		display:block !important;
		position:relative !important;
		background:none;
		clear:both;
	}
	
	.sub-menu {
		max-width:200px !important;
	}
	.menu-area  .menu li a {
		background:none !important;
		border:none !important;
		width:190px !important;
		color:#4d8ec6 !important;
		padding-left:15px !important;
	}
	.menu-area  .menu li ul li {
		padding-left:10px;
	} 
	
	.menu-area  .menu li a:hover {
		background:none !important;
		text-decoration:underline !important;
		color:#4d8ec6 !important;
	}
	
	#nav_menu-2 {
		float: none;
		margin-right: 10px;
	}
	
	#text-2 {
		display:none;
	}
	
	td {
		clear:both;
		display:block;
		max-width:300px !important;
	}
	
	td img {
		max-width:300px !important;
		padding-bottom:0px !important;
		padding-top:20px;
	}
	
}

@media (max-width: 541px) {

	#page-wrapper {
		width:320px;
		max-width:320px;
		overflow:visible;
	}
}

@media (max-width: 320px) {

	#page-wrapper {
		width:310px;
		max-width:310px;
		overflow:visible;
		margin-left:auto;
		margin-right:auto;
	}	
}

