@charset "UTF-8";
/* CSS Document */
/****************************************
		General Setting 
*****************************************/

html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption, 
tbody, tfoot, thead, table, label, tr, th, td{
	margin: 0; !important;
	padding: 0; !important;
	border: 0;
	outline: 0;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	list-style:none;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;		
}
	
html{
    overflow:0;
}
BODY {
	overflow-y: scroll;
	font-family: 'Open Sans', sans-serif;
	height: 100%;
	color : #f9fbe2;
	background-color: #000;
	font-size: 14px;
	line-height: 1.5em;
}
.FloatLeft {
	float: left;
}
.FloatRight {
	float: right;
}
.clear {
 	clear: both;
}
.Space5px {
     height:5px;
}
.Space10px {
     height:10px;
}
.Space15px {
     height:15px;
}
.Space20px {
     height:20px;
}
.Space25px {
     height:25px;
}
.Space30px {
     height:30px;
}
.w50 {
	width:50%;
}


/****************************************
		Color
*****************************************/
.ColorGray {
	color: #979484;
}
.ColorBlack {
	color: #000000;
}

/****************************************
		Text
*****************************************/
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: normal;
	line-height: 1em;
	margin-bottom: 0.5em;
}
h1 {
	font-size: 37px;
	font-weight: 100;
}
h2 {
	font-size: 21px;
}
h3 {
	font-size: 17px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 13px;
}
h6 {
	font-size: 11px;
}
P {
	font-size: 14px;
}
em { 
  font-style: italic; 
}
strong { 
  font-weight: bold; 
}
small { 
  font-size: 80%; 
 }
blockquote, q {
		quotes: none; 
}
blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; 
}
/****************************************
		Links
*****************************************/
a{
	text-decoration: none;
	color: #f9fbe2;
}
a:active,
a:hover {
	outline: 0;
	color: #C9CBB6;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:visited {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.MenuActive {
	font-weight: 700;
	color: #DC2606;
}
.MainBox a {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #F9FBE2;
}
/****************************************
		Forms
*****************************************/
input {
	border: 1px solid #666;
	font-size: 12px;
	padding-top: 6px;
	padding-right: 4px;
	padding-bottom: 6px;
	padding-left: 4px;
	letter-spacing: 1px;
}
input:focus {
  outline: none;
}
textarea {
  overflow: auto;
  vertical-align: top; 
}
textarea:focus {
  outline: none;
}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
	border: 1px solid #333;
	padding-left: 6px;
	outline: none;
	margin: 0;
	max-width: 100%;
	display: block;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	}
	
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
	border: 1px solid #E9240C;
	color: #DF2700;
}
	
select {
		padding: 0; 
	}
   .button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
	border: 1px solid #f9fbe2;
	color: #f9fbe2;
	display: inline-block;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	line-height: normal;
	text-transform: uppercase;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color: #000000;
	margin-top: 15px;
	}
.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
	border: 1px solid #DD2B08;
	color: #DD2B08;
}

.InputFull input{
	width: 100%;
}
.InputFull textarea{
	width: 100%;
	height: 75px;
}
.InputTitle {
	font-size: 11px;
	padding-top: 10px;
	display: block;
}
.FormAlert {
	color: #E02901;
	margin: 0px;
}

/****************************************
		Table
*****************************************/
table {
  border-collapse: collapse;
  border-spacing: 0; }


/****************************************
		List
*****************************************/
ul, ol {
}
ul { 
   list-style: none outside; 
}
ol { 
   list-style: decimal; 
}
ol, ul.square, ul.circle, ul.disc {
}

/****************************************
		Main Layout
*****************************************/
header {
	margin-bottom: 45px;
}
header div {
	height: 165px;
	background-image: url(../img/mk-01.jpg);
	background-repeat: repeat-x;
	white-space: nowrap;
}
.HeaderLeft {
	float: left;
	padding-left: 30px;
}
.HeaderRight {
	float: right;
}
header nav {
	height: 35px;
	text-align: center;
	font-size: 12px;
}
header nav a{
	height: 35px;
	text-align: center;
	font-size: 13px;
	padding-right: 15px;
	padding-left: 15px;
}

footer {
	font-size: 11px;
	color: #878787;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 25px;
}
.MainBox {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
p img{
	border: 1px solid #333;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 15px;
}
.SocialMedia {
	margin-bottom: 20px;
}

/****************************************
		Contact
*****************************************/
.ContactRight {
	margin-top: 53px;
}
.ContactRight p{
	font-size: 12px;
	margin-top: 12px;
	line-height: 1.2em;
}

/****************************************
		Press
*****************************************/
.PressBox img {
	width: 100%;
	border: 1px solid #333;
}
.PressBoxLeft {
	width: 50%;
}
.PressBoxRight {
	width: 48%;
}
.PressBox p {
	font-size: 13px;
	margin-bottom: 10px;
}
.PressBox h2 {
	color: #E52711;
	font-size: 27px;
	font-weight: 300;
	text-transform: uppercase;
}
.PressBox h5 {
	font-style: italic;
	margin-bottom: 18px;
	display: block;
}
.PressBox a {
	color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
}
.PressBox hr {
	margin-top: 25px;
	margin-bottom: 25px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #FFF;
	border-bottom-width: 0px;
	border-bottom-style: none;
	border-bottom-color: #FFF;
}
/****************************************
		Video
*****************************************/


.Videos h2 {
	color: #E52711;
	font-size: 27px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1em;
}
.Videos h3 {
	font-style: italic;
	margin-bottom: 18px;
	display: block;
	font-weight: 300;
}
.VideosRow {
	margin-bottom: 20px;
}
.VideosRow iframe {
	width: 100%;
	height: auto;
}
.VideoLeft {
	width: 50%;
}
.VideoRight {
	width: 48%;
}

/****************************************
		Gallery
*****************************************/
.GalleryRow {
}
.GalleryImgBox {
	float: left;
	width: 33%;
}
.GalleryRow img {
	width: 97%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}

/****************************************
		Home
*****************************************/

.HomeLeft  {
	float: left;
	width: 50%;
	text-align: center;
}
.HomeLeft img {
	height: auto;
	width: 100%;
}
.HomeLeft h1 {
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 0.2em;
}
.HomeLeft h2 {
	font-size: 13px;
	line-height: 0.9em;
}
.HomeRight  {
	width: 49%;
	float: right;
	padding-top:35px;
}
.HomeImgThumb {
	float: right;
	width: 32%;
	text-align: center;
	vertical-align: middle;
	height: 150px;
}
.HomeImgThumb img {
	width: 90%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
  	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
}


/****************************************
		Resume
*****************************************/
.Resume section {
	margin-bottom: 35px;
	font-size: 13px;
}
.Resume h2 {
	text-transform: uppercase;
}
.Resume h3 {
	font-weight: bold;
	text-decoration: underline;
}
.Resume h4 {
	margin-top: 15px;
	font-weight: bold;
}
.Resume ul {
	margin-left: 35px;
}
.Resume li {
	list-style-type: circle;
}
.ResumeLeft {
	float: left;
	width: 14%;
}
.ResumeRight {
	float: left;
	width: 75%;
	margin-bottom: 45px;
}
.ResumeRight ul {
	margin-left: 17px;
}
