/* css for menu */



#menu {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFF;
    display: none;
	z-index: 600;
	overflow-y: scroll;
	position: fixed;

	.body {
		overflow-y: hidden;
	}
}

#menuButton {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	color: #1100FF;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-left: 5%;
	position: fixed;
	top: 12%;
	z-index: 590;
}

#menu-area-internal {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	color: #1100FF;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-left: 0%;
	position: fixed;
	top: 12%;
	z-index: 590;
}

#closeMenu {
	top: 8.8%;
	left: 9.5%; 
	position: fixed; 
	z-index: 950;
	width: 300px;
	height: 40px;
	border: 1;
}

button#openMenu {
	background: url(../images/bt-menu.png) no-repeat;
	width: 26px;
	height: 14px;
	border: 0;
	cursor: pointer;
	transition: 0.4s;
}

button#openMenu:hover {
	background: url(../images/bt-menu-hover.png) no-repeat;
	width: 26px;
	height: 14px;
	border: 0;
	cursor: pointer;
}

button#closeMenu {
	background: url(../images/bt-close.png) no-repeat;
	width: 22px;
	height: 22px;
	border: 0;
	cursor: pointer;
	transition: 0.4s;
	z-index: 950;
}

button#closeMenu:hover {
	background: url(../images/bt-close-hover.png) no-repeat;
	width: 22px;
	height: 22px;
	border: 0;
	cursor: pointer;
}


/* new menu / all stories page */

#menu-container {
	width: 95%;
	height: 100%;
	z-index: 10;
	margin: auto;
}

.section-title-singleline {
	width: 80%;
	text-align: center;
	display: inline-block;
	font-size: 100%;
	font-weight: 700;
	text-transform: uppercase;
	margin-left: 9.6%;
	margin-right: 10%;
	margin-top: 88px;
	position: relative;
	letter-spacing: 2.5px;
	padding-bottom: 60px;
	z-index: 200;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="section-title-singleline"] {
        margin-top: 52px;
		padding-bottom: 10px;
    }
}

.link-title {
	color: #000;
	text-decoration: none;
	transition-duration: 0.4s;
}

.link-title:hover {
	text-decoration: underline;
}

#stories-container {
	width: 80%;
	margin-left: 16%;
	margin-right: auto;
}

#stories-title-description {
	text-transform: uppercase;
	font-size: 85%;
	font-weight: 400;
	padding-bottom: 50px;
	padding-top: 100px;
	color: #9B9B9B;
	letter-spacing: 2px;
}

#rodrigo-stories {
	width: 100%;
	text-align: left;
	display: inline-block;
}

#story-blue {
	width: 24.5%;
	min-width: 250px;
	font-size: 140%;
	color: #0507FF;
	text-transform: uppercase;
	display: inline-block;
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: 2.5px;
	line-height: 23px;
}

.story-blue {
	color: #0507FF;
	font-weight: 700;
	text-decoration: underline;
}

.story-blue:visited {
	color: #0507FF;
}

.story-blue:hover, .story-blue:active {
	color: #0507FF;
	font-weight: 700;
	text-decoration: none;
}

#guest-stories {
	width: 100%;
	text-align: left;
	display: inline-block;
}

#story-purple {
	width: 24.5%;
	min-width: 250px;
	display: inline-block;
	margin-bottom: 40px;
}

.story-purple {
	color: #6000FF;
	font-weight: 700;
	text-decoration: underline;
}

.story-purple:visited {
	color: #6000FF;
}

.story-purple:hover, .story-purple:active {
	color: #6000FF;
	font-weight: 700;
	text-decoration: none;
}

#story-guest-title {
	font-size: 140%;
	color: #6000FF;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2.5px;
	padding-bottom: 10px;
	line-height: 23px;
}

#story-guest-name {
	font-size: 75%;
	color: #9B9B9B;
	text-transform: uppercase;
	display: inline-block;
	font-weight: 300;
	line-height: 15px;
	letter-spacing: 1px;
	
}

/* footer */

#footer20 {
	margin-top: 100px;
	text-align: center;
	display: inline-block;
	width: 100%;
	height: 50px;
}

#footer-links {
	width: 120px;
	display: inline-block;
	padding: 2%;
}

.footer-links {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 90%;
	color: #4A4A4A;
	font-weight: 700;
	text-decoration: none;
	transition-duration: 0.4s;
}

.footer-links:hover {
	color: #0507FF;
	font-weight: 700;
}

.noScroll {
    overflow: hidden;
}

.Scroll {
	overflow: scroll;
}