@charset "utf-8";

/**
 * Display: Classic
 */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	font: normal 14px 'Raleway', sans-serif;
	color: #464646;
}

html {
	background: #000000;
}

body {
	background: #EBEBEB;
}

input, textarea, select {
	font-family: 'Raleway', sans-serif;
}

p {
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

a img {
	border: 0px;
}

/**
 * Container
 */
.cWidth {
	margin: 0 auto;
	max-width: 1170px;
}

h1 {
	display: none;
}

/**
 * Category
 */
#Job,
#Hobby {
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	height: 100%;
	display: block;
	float: left;
}
/*
#Job:before,
#Hobby:before {
	content: "";
	border: solid 1px rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 20px;
	right: 20px;
	z-index: 1;
}
*/
#Job .Overlay,
#Hobby .Overlay {
	background: rgba(39, 38, 43, 0.3);
	padding: 21px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
	-o-transition:.3s;
  	-ms-transition:.3s;
 	-moz-transition:.3s;
 	-webkit-transition:.3s;
 	transition:.3s;
}
/*
#Job:hover .Overlay,
#Hobby:hover .Overlay {
	background: rgba(39, 38, 43, 0.5);
}
*/

#Job {
	background-color: #FFFFFF;
	background-image: url('../image/category-p.jpg');
	background-position: right center;
	width: 50%;
}

#Job .Menu {
	background: url('../image/menu-dark.png') center no-repeat;
	position: absolute;
	width: 32px;
	height: 32px;
	top: 40px;
	right: 40px;
	text-indent: -999px;
	overflow: hidden;
	display: block;
	cursor: pointer;
	z-index: 100;
}

#Hobby {
	background-color: #000000;
	background-image: url('../image/category-d.png');
	background-position: left center;
	width: 50%;
	text-align: right;
}

#Hobby .Menu {
	background: url('../image/menu-white.png') center no-repeat;
	position: absolute;
	width: 32px;
	height: 32px;
	top: 40px;
	left: 40px;
	text-align: left;
	text-indent: -999px;
	overflow: hidden;
	display: block;
	cursor: pointer;
	z-index: 100;
}

#Job h2,
#Hobby h2 {
	margin: 0px;
	padding: 0px;
	font-weight: 300;
	font-size: 26px;
}

#Job h2 {
	color: #000000;
}

#Hobby h2 {
	color: #FFFFFF;
}

#Job h2 b,
#Hobby h2 b {
	font-weight: 700;
}

#Contact {
	font-size: 16px;
	color: #000000;
}

#Contact .Caption {
	margin: 0px;
	padding: 0px 0px 7px 0px;
	font-weight: 700;
	font-size: 26px;
}

#Contact p {
	line-height: 24px;
}

#Contact table {
	border-collapse: collapse;
}

#Contact table td {
	padding-bottom: 5px;
	padding-right: 20px;
	vertical-align: top;
}

#Job .Content,
#Hobby .Content {
	padding: 20px;
	height: 100%;
	overflow-y: auto;
}

#Job .Skills {
	margin: 27px 0px 30px 0px;
	max-width: 585px;
}


#Job .Skills span,
#Job .Skills b {
	background: #4C4C4C;
	margin: 4px 2px;
	padding: 5px 20px;
	position: relative;
	font-size: 15px;
	color: #FFFFFF;
	display: inline-block;
	cursor: default;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#Hobby .Car {
	font-weight: 700;
	color: #FFFFFF;
	white-space: nowrap;
}

#Hobby .Car span {
	color: #FF0000;
}

#Hobby .Car i {
	font-style: normal;
	font-weight: 400;
}

#Hobby .Specyfication {
	margin: 27px 0px 10px 0px;
	color: #FFFFFF;
}

#Hobby .Specyfication .Key {
	text-align: right;
	text-transform: uppercase;
}

#Hobby .Specyfication .Val {
	padding-bottom: 15px;
	text-align: right;
}









/* Clear */
.Clear, .clear { clear: both; }