

html { height: 100%; }

*, 
*:after, 
*:before {
	-webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box; 
	 box-sizing: border-box; 
	 padding: 0px;
	margin: 0;
	 }


@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon/fonts/icomoon.eot');
	src:url('../fonts/icomoon/fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon/fonts/icomoon.woff') format('woff'),
		url('../fonts/icomoon/fonts/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon/fonts/icomoon.svg#icomoon') format('svg');
	
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'entypo';
	src:url('../fonts/entypo/fonts/entypo.eot');
	src:url('../fonts/entypo/fonts/entypo.eot?#iefix') format('embedded-opentype'),
		url('../fonts/entypo/fonts/entypo.woff') format('woff'),
		url('../fonts/entypo/fonts/entypo.ttf') format('truetype'),
		url('../fonts/entypo/fonts/entypo.svg#entypo') format('svg');
	
	font-weight: normal;
	font-style: normal;
}
    
    

/* GRIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIID */

/* General grid styles */
.cbp-ig-grid {	
	list-style: none;
	padding: 0 0 0px 0;
	margin: 0;
}

/* Clear floats */
.cbp-ig-grid:before, 
.cbp-ig-grid:after { 
	content: " "; 
	display: table;
}

.cbp-ig-grid:after { 
	clear: both;
}

/* grid item */
.cbp-ig-grid li {
	width: 25%;
	float: left;
	height: 200px;
	text-align: center;
	border-top: none;
	margin-left: auto;
    margin-right: auto ;
}

/* we are using a combination of borders and box shadows to control the grid lines */
.cbp-ig-grid li:nth-child(-n+3){
	border-top: none;
}

.cbp-ig-grid li:nth-child(3n-1),
.cbp-ig-grid li:nth-child(3n-2) {
	box-shadow: 0px 0 0 #c4c4c4;
}

.li-icon {
	margin: 0px 0 0 0;
    padding:35px; /* top, right, bottom, left */
	display: inline-block;
	-webkit-transition: -webkit-transform 0.2s;
	transition: -moz-transform 0.2s;
	transition: transform 0.2s;
    
}

.li-icon:before {
	font-family: 'icomoon';
	font-size: 80px;
   color: #d9d9d9;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}


.li-icon-draw:before {
	content: "\e606";
     
}


.li-icon-draw2:before {
	content: "\e606";
    color: #333;
     
}



/* anchor style */
.cbp-ig-grid li > a {
	display: block;
	height: 100%;
	color: #fff;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
}



/* title element */
.cbp-ig-grid .cbp-ig-title {
font-family: 'dekar', Calibri, Arial, sans-serif;
	margin: 0px 0 10px 0;
	padding: 10px 0 0 0;
	font-size: 16px;
    letter-spacing: 2px;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}


.cbp-ig-grid:nth-child(odd) .cbp-ig-title {
color: #111;
}

.cbp-ig-grid .cbp-ig-title:before {
	
    content: '';
	position: absolute;
	background: #e3e3e3;
	width: 160px;
	height: 2px;
	top: 0px;
	
	left: 50%;
	margin: -10px 0 0 -80px;
	-webkit-transition: margin-top 0.2s; /* top or translate does not seem to work in Firefox */
	-moz-transition: margin-top 0.2s;
	transition: margin-top 0.2s;
}


.cbp-ig-grid:nth-child(odd) .cbp-ig-title:before {
	
	background: #444;
	
}


.cbp-ig-grid .cbp-ig-category {
	text-transform: uppercase;
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	color: #fff;
	-webkit-transform: translateY(10px);
	-moz-transform: -moz-translateY(10px);
	-ms-transform: -ms-translateY(10px);
	transform: translateY(10px);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	-webkit-transition: transform 0.3s, opacity 0.2s;
}

.cbp-ig-grid li:hover .cbp-ig-category,
.touch .cbp-ig-grid li .cbp-ig-category {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hover styles */

.cbp-ig-grid li > a:hover {
	background: #888;
}



.cbp-ig-grid li > a:hover .cbp-ig-icon {
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
}

.cbp-ig-grid li > a:hover .cbp-ig-icon:before,



.cbp-ig-grid li > a:hover .cbp-ig-title {
	-webkit-transform: translateY(-25px);
	-moz-transform: translateY(-25px);
	-ms-transform: translateY(-25px);
	transform: translateY(-25px);
}

.cbp-ig-grid:nth-child(odd) li > a:hover .cbp-ig-title {
color: #222;
}

.cbp-ig-grid li > a:hover .cbp-ig-title:before {
	background: #e3e3e3;
   
	margin-top: 45px;
}

.cbp-ig-grid:nth-child(odd) li > a:hover .cbp-ig-title:before {
	background: #444;
 
	
}

@media screen and (max-width: 62.75em) {
	.cbp-ig-grid li {
		width: 50%;
	}

	/* reset the grid lines */
	.cbp-ig-grid li:nth-child(-n+3){
		border-top: 0px solid #ddd;
	}

	.cbp-ig-grid li:nth-child(3n-1),
	.cbp-ig-grid li:nth-child(3n-2) {
		box-shadow: none;
	}

	.cbp-ig-grid li:nth-child(-n+2){
		border-top: none;
	}

	.cbp-ig-grid li:nth-child(2n-1) {
		box-shadow: 0px 0 0 #ddd;
	}
}

@media screen and (max-width: 41.6em) { 
	.cbp-ig-grid li {
		width: 100%;
	}

	.cbp-ig-grid li:nth-child(-n+2){
		border-top: 0px solid #ddd;
	}

	.cbp-ig-grid li:nth-child(2n-1) {
		box-shadow: none
	}

	.cbp-ig-grid li:first-child {
		border-top: none;
	}
}

@media screen and (max-width: 25em) { 
	.cbp-ig-grid {
		font-size: 80%;
	}

	.cbp-ig-grid .cbp-ig-category {
		margin-top: 20px;
	}
}

/* EEEEEEEEEEEEEENNNNNNNNNNNNNDDDDDDDDDDDDDD GRRRRRRRRRRRRRRRRRRRRRRIIIIIIIIIIIIIDDDDDDDDDDD anchor style */







.cbp_tmtimeline {
	margin: 30px 0 0 0;/* top, right, bottom, left */
	padding: 0;
	list-style: none;
	position: relative;
	
} 




.cbp_tmtimeline {
	margin: 30px 0 0 -30px;/* top, right, bottom, left */
	padding: 0;
	list-style: none;
	position: relative;
	
} 

.cbp_tmtimeline > li{
position: relative;
margin-bottom: 20px;

}

/* The line */
.cbp_tmtimeline:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 10px;
	background: #c4c4c4;
	left: 20%;
	margin-left: -10px;
}

/* The date/time */
.cbp_tmtimeline > li .cbp_tmtime {
	display: block;
    letter-spacing: 3px;
	width: 25%;
	padding-right: 100px;
	position: absolute;
    font-family: 'diavlo', Calibri, Arial, sans-serif;
}

.cbp_tmtimeline > li .cbp_tmtime span {
	display: block;
	text-align: right;
	
}

.cbp_tmtimeline > li .cbp_tmtime span:first-child {
	font-size: 1.3em;
	color: #919191;
	line-height: 1.4;
	margin-top: -20px;
	margin-bottom: 10px;
}

.cbp_tmtimeline > li .cbp_tmtime span:last-child {
	font-size: 1.9em;
	color: #888;
	
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
	color: #888;
}

/* Right content */
.cbp_tmtimeline > li .cbp_tmlabel {
	margin: 0 0 60px 25%;/* top, right, bottom, left */
	
	color: #383838;
	padding: 2em;
	font-size: 14.5px;
    font-weight:bold;
	font-style:normal;
	
	line-height: 1.4;
	position: relative;
	border-radius: 4px;
    
background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #BfBfBf),
	color-stop(1, #9d9d9d)
);
background-image: -o-linear-gradient(bottom, #BfBfBf 0%, #9d9d9d 100%);
background-image: -moz-linear-gradient(bottom, #BfBfBf 0%, #9d9d9d 100%);
background-image: -webkit-linear-gradient(bottom, #BfBfBf 0%, #9d9d9d 100%);
background-image: -ms-linear-gradient(bottom, #BfBfBf 0%, #9d9d9d 100%);
background-image: linear-gradient(to bottom, #BfBfBf 0%, #9d9d9d 100%);

}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
color: #e1e1e1;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {

background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, #424242),
	color-stop(1, #636363)
);
background-image: -o-linear-gradient(top, #424242 0%, #636363 100%);
background-image: -moz-linear-gradient(top, #424242 0%, #636363 100%);
background-image: -webkit-linear-gradient(top, #424242 0%, #636363 100%);
background-image: -ms-linear-gradient(top, #424242 0%, #636363 100%);
background-image: linear-gradient(to top, #424242 0%, #636363 100%);

	
}



.cbp_tmtimeline > li .cbp_tmlabel2 {
	position: relative;
     letter-spacing: 2px;
}



.cbp_tmtimeline > li .cbp_tmlabel h2 { 
	font-family: 'dekar', Calibri, Arial, sans-serif;
    margin-top: 0px;
	color: #0f0f0f;
	font-size: 23px;
	
	letter-spacing: 2px;
	padding: 0 0 8px 0;
	border-bottom: 1px solid rgba(0,0,0,0.4);
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel h2 {
color: #f0f0f0;
border-bottom: 1px solid rgba(255,255,255,0.4);
}


.cbp_tmtimeline > li .cbp_tmlabel h5 { 
	font-size: 13px;
    letter-spacing: 2px;
    
    color: #000;
    font-weight:700;
    
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel h5 {
color: #fff;
}

.rec {
	text-decoration: none; 
	color: #e3e3e3;
}

.rec:nth-child(odd) {
	
	color: #343434;
	
}

.rec:hover {
	text-decoration: none; 
	color: #595959; 
	
}

.rec:nth-child(even):hover {
	color: #c0c0c0;
	
}


.cv {
	text-decoration: none; 
	color: #888;
}

.cv:hover {
	text-decoration: none; 
	color: #555; 
	
}


.cv-icon {
	font-family: 'icomoon','entypo';
	speak: none;
	font-style: normal;
	font-variant: normal;
    font-weight:100;
	text-transform: none;
	text-align: center;
	font-size: 13px;
     letter-spacing: 0px;
	-webkit-font-smoothing: antialiased;
}

span .cv-icon {	
	color: #e3e3e3;	
}


span .cv-icon:nth-child(odd)  {
	color: #333;	
}


.cv-icon-trophy:after {
	content: "\e69a";
}

.cv-icon-pen:after {
	content: "\e608";
}

.cv-icon-qoute:after {
	content: "\e676";
}

.cv-icon-ribbon:after {
	content: "\e6ca";
}

.cv-icon-ribbon2:after {
	content: "\e6c9";
}

.cv-icon-task:after {
	content: "\e6b5";
}

.cv-icon-taskes:after {
	content: "\e8a9";
    font-size:18px;
}

.cv-icon-tasks:after {
	content: "\e6b8";
}


.cv-icon-task2:after {
	content: "\e6f8";
}

.cv-icon-task3:after {
	content: "\e6b5";
}


.cv-icon-check:after {
	content: "\e6fe";
}


.cv-icon-skill:after {
	content: "\e697";
}

.cv-icon-skill2:after {
	content: "\e696";
}

.cv-icon-skill3:after {
	content: "\e698";
}

.cv-icon-skill4:after {
	content: "\e884";
}

.cv-icon-skill5:before {
	content: "\e885";
}    

.cv-icon-skill6:before {
	content: "\e882";
}


.cv-icon-dotf:before {
	content: "\e8c0"; 
   
}

.cv-icon-dotf1:before {
	content: "\e6fb"; 
     color:#333;      
}

.cv-icon-dotf2:before {
	content: "\e73b";
   
}

.cv-icon-dot:before {
	content: "\e8f3";
    
    
}

.cv-icon-dot1:before {
	content: "\e73c"; 
     color:#333;   
      font-size:10px;

}

.cv-icon-dot2:before {
	content: "\e856";
     color:#333;   
      font-size:10px;
}

.cv-icon-lang:before {
	content: "\e6c4";
    font-size:13.5px;
      
  
}


.cv-icon-check1:after {
	content: "\e6fb";
}

.cv-icon-check3:after {
	content: "\e6b3";
}

.cv-icon-stacks:after {
	content: "\e62d";
}

.cv-icon-clip:after {
	content: "\e6c5";
}

.cv-icon-link:after {
	content: "\e731";
}

.cv-icon-vimeo:after {
	content: "\e775";
}


/* The TRIAAAAAAAAAAANGLLLLLLLLLLEEEEEEEEEEE */
.cbp_tmtimeline > li .cbp_tmlabel:after {
	right: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-right-color: #BfBfBf;
	border-width: 10px;
	top: 10px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
	border-right-color: #636363;
}

/* The icons */

.cbp_tmtimeline > li .cbp_tmicon {
	width: 40px;
	height: 40px;
	font-family: 'icomoon', 'entypo';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 1.4em;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
    
    letter-spacing: 0px;
	
	border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
        -khtml-border-radius: 50%;
    
	box-shadow: 0 0 0 6px #c4c4c4;
	text-align: center;
	left: 20%;
	top: 0;
	margin: 0 0 0 -25px;
    
    color: #e3e3e3;
	background: #666;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmicon {

	background: #666;
    color: #e3e3e3;
	}
    
.cbp_tmicon-skill:before {
	content: "\e697";
}

.cbp_tmicon-skill2:before {
	content: "\e696";
}

.cbp_tmicon-skill3:before {
	content: "\e698";
}

.cbp_tmicon-skill4:before {
	content: "\e884";
}    
    
.cbp_tmicon-skill5:before {
	content: "\e885";
}    

.cbp_tmicon-skill6:before {
	content: "\e882";
} 

.cbp_tmicon-work:before {
	content: "\e865";
}

.cbp_tmicon-work1:before {
	content: "\e857";
}
.cbp_tmicon-work2:before {
	content: "\e6a9";
}
.cbp_tmicon-vol:before {
	content: "\e822";
}

.cbp_tmicon-brava:before {
	content: "\e671";
}
.cbp_tmicon-vol2:before {
	content: "\e670";
}

.cbp_tmicon-study:before {
	content: "\e849";
    font-size: 1.2em;
}

.cbp_tmicon-study2:before {
	content: "\e621";
}

.cbp_tmicon-trophy:before {
	content: "\e69a";
}


.cbp_tmicon-earth:before {
	content: "\e6c2";
}


.cbp_tmicon-globe:before {
	content: "\e6c1";
}


.cbp_tmicon-vimeo:before {
	content: "\e776";
}


.cbp_tmicon-vimeo2:before {
	content: "\e777";
}

.cbp_tmicon-mail:before {
	content: "\e75f";
}

.cbp_tmicon-link:before {
	content: "\e79f";
}

.cbp_tmicon-draw:before {
	content: "\e606";
}






.cbp_tmtimeline > li .cbp_tmiconw {
	width: 40px;
	height: 40px;
	font-family: 'wfont';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 1.4em;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
   
   letter-spacing: 0px;
   
	position: absolute;
	color: #e3e3e3;
	background: #555;
	border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
        -khtml-border-radius: 50%;
    
	box-shadow: 0 0 0 6px #c4c4c4;
	text-align: center;
	left: 20%;
	top: 0;
	margin: 0 0 0 -25px;
}


.cbp_tmtimeline > li:nth-child(odd) .cbp_tmiconw {

	background: #777;
	
}
.cbp_tmiconw-study:before {
	content: "\f288";
}


/* Example Media Queries */
@media screen and (max-width: 65.375em) {
	
	.cbp_tmtimeline {
	margin: 30px 0 0 0;
	
	
} 
.cbp_tmtimeline > li .cbp_tmlabel {
	margin: 0 0 20px 25%;/* top, right, bottom, left */
    }
    
	.cbp_tmtimeline > li .cbp_tmtime span:last-child {
		font-size: 1.5em;
		
	}
	
	      
img.about {

    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}
	
	
    
    
    
    
}




@media screen and (max-width: 47.2em) {
	.cbp_tmtimeline:before {
		display: none;
		
	}

    
        
img.about {

    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
} 
    
    
   
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
	font-size: 1.3em;
	color: #919191;
	line-height: 1.4;
	margin-top: -20px;
	margin: 5px 0px 0px 0px; /* top, right, bottom, left */
}
    
    
    
	.cbp_tmtimeline > li .cbp_tmtime {
		width: 100%;
		position: relative;
		padding: 0 0 20px 0;
		
		
	}

	.cbp_tmtimeline > li .cbp_tmtime span {
		text-align: left;
		
	}

	.cbp_tmtimeline > li .cbp_tmlabel {
		margin: 0 0 30px 0;/* top, right, bottom, left */
		padding: 1.8em;
		font-weight: 400;
		font-size: 95%;
        
	}
    
 
    
    
    
/* The TRIAAAAAAAAAAANGLLLLLLLLLLEEEEEEEEEEE */
	.cbp_tmtimeline > li .cbp_tmlabel:after {
		right: auto;
		left: 20px;
		border-right-color: transparent;
		border-bottom-color: #BfBfBf;
		top: -19px;
        
	}

	.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
		border-right-color: transparent;
		border-bottom-color: #636363;
        
	}

	.cbp_tmtimeline > li .cbp_tmicon {
		position: relative;
		float: right;
		left: auto;
		margin: -55px 5px 0 0px;
        letter-spacing: 0px;
        
	}
	
	.cbp_tmtimeline > li .cbp_tmiconw {
		position: relative;
		float: right;
		left: auto;
		margin: -55px 5px 0 0px;
        
        letter-spacing: 0px;
	}
    
		
}

