/* ============================================================
  RESET - http://meyerweb.com/eric/tools/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, 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%;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

/* ============================================================
  BOX SIZING & CLEARFIX
============================================================ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================
  HTML & BODY
============================================================ */
body {
	font-family: 'Roboto Condensed', sans-serif;
	color: #e5e5e5;
	font-size: 12px;
	background:#FFF;

	
}


/* ============================================================
  PRIMARY STRUCTURE
============================================================ */
.wrapper {
  width: 100%;
  margin: 0 auto;
}

main {
  display: block;
  background-color: #fff;
}



.container2 {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;

}


/* ============================================================
  FOOTER
============================================================ */
footer {
  padding: 20px 0;
}

.footer_inner{
	width:800px;
	  margin:0 auto;
	  text-align:center;
	  color:#CCC;
	  margin-top:30px

}
@media all and (min-width: 600px) {
  footer aside {
    margin-bottom: 0;
    float: left;
    width: 33.3333%;
  }
  footer nav ul {
    text-align: left;
  }
  footer nav li {
    display: block;
  }
  footer nav a {
    display: inline-block;
    margin: 0;
  }
  footer .logo {
    text-align: right;
  }
}

/* ============================================================
  TEXT LEVEL SEMANTICS
============================================================ */
.grayscale {
    -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: url(grayscale.svg); /* Firefox 4+ */
  filter: gray; /* IE 6-9 */
}

.inner ul li {
  font-size: 14px;
  font-weight:400;
  display: inline-block;
  margin-right: -4px;
  position: relative;
  padding: 7px 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.inner ul li:hover {
	color:#CCC;
}
.inner ul li ul {
	position: absolute;
	top: 50px;
	left: 0;
	width: 166px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	display: none;
	opacity: 0;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-transition: opacity 0.2s;
	margin-left: 10px;
	text-transform: uppercase;
}
.inner ul li ul li { 
  background: #c02924; 
  display: block; 
	color:#FFF;
		padding: 10px;

}

.inner ul li ul li a{
	color: #FFF;
	text-decoration: none;
} 

.inner ul li ul li a:hover{
	color:#CCC;
	text-decoration: none;
} 

.inner ul li ul li:hover { color:#c02924;
 }
.inner ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
  background: #FFF;
  	color:#c02924;

}