 
/**
 * 1.0 - Css Reset
 * ----------------------------------------------------------------------------
 */

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,font,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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: top;
	background: transparent;
}

body {
	margin: 0;
}

img {
	max-width: 100%;
	border: none;
}

ol,ul {
	list-style: none;
}

a {
	text-decoration: none;
	outline: 0;
}

a:hover {
	text-decoration: none;
}


/**
 * 2.0 - Typography
 * ----------------------------------------------------------------------------
 */

html {
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-family: 'Source Sans Pro', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0px;
	padding: 0;
	line-height: 1;
	margin-bottom: 15px;
	font-family: 'Source Sans Pro', sans-serif;
}

h1 {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -0.05em;
}

h2 {
	font-size: 24px;
	font-weight: 200;
	letter-spacing: -0.05em;
}

h3 {
	font-size: 18px;
	font-weight: 700;
}

h4 {
	font-size: 14px;
	font-weight: 700;
}

h5 {
	font-size: 12px;
}

h6 {
	font-size: 10px;
}

/**
 * 3.0 - Basic Grid
 * ----------------------------------------------------------------------------
 */
.eut-container {
	max-width: 1170px;
	margin: 0px auto;
	position: relative;
}

/**
 * 4.0 - Header
 * ----------------------------------------------------------------------------
 */
#eut-header {
	display: inline-block;
	width: 100%;
	position: relative;
	margin: 180px 0px 10px 0px;
}

#eut-header .eut-container  {
	border-bottom: 1px solid #24d1c4;
	padding-bottom: 30px;
}

#eut-header .eut-logo {
	display: inline-block;
	width: 50%;
}

#eut-header .eut-logo h1 {
	display: inline-block;
	vertical-align: bottom;
	margin-right: 5px;
	margin-bottom: 0px;
}

#eut-header .eut-logo h2 {
	display: inline-block;
	line-height: 1.3;
	vertical-align: bottom;
	margin-bottom: 0px;
	color: #C9C9C9;
}

#eut-header .eut-icons {
	display: inline-block;
	text-align: right;
	width: 49%;
}

#eut-header .eut-icons ul {
	display: block;
	text-align: right;
}

#eut-header .eut-icons li {
	width: 50px;
	height: 50px;
	position: relative;
	display: inline-block;
	margin-left: 6px;
}

#eut-header .eut-icons li:hover .eut-tooltip {
	opacity: 1;
}

#eut-header .eut-icons .eut-tooltip {
	position: absolute;
	top: -5px; 
	left: 50%;
	z-index: 99;
	-webkit-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	white-space: nowrap;
	font-weight: normal;
	font-size: 11px;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out, left 0s ease-in-out 0.2s, top 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out, left 0s ease-in-out 0.2s, top 0.2s ease-in-out;
}


/**
 * 5.0 - Main Content
 * ----------------------------------------------------------------------------
 */
.eut-release {
	margin-top: 40px;
	margin-bottom: 50px;
	padding-bottom: 50px;
	display: block;
	border-bottom: 1px solid #ebebeb;
}

.eut-version .eut-date {
	font-weight: 200;
}

.eut-version .eut-date:before {
	content: '-';
	margin: 0px 10px;
}

.eut-release ul {
	display: block;
	margin-left: 30px;
}

.eut-release li {
	margin-bottom: 5px;
}

.eut-release li h4 {
	margin: 30px 0px 5px 0px;
	color: #24d1c4;
	text-transform: uppercase;
}

.eut-description {
	color: #C9C9C9;
}

.eut-description:before {
	content: '|';
	margin: 0px 5px;
}


@media screen and (max-width: 1024px) {

	.eut-container {
		max-width: 80%;
	}
}