html {
	width: 100vw;
	overflow-x: hidden;
}

body {
	font-family:'Montserrat';
	margin: 0px;
}

h1,h2,h3,h4 {
	font-weight: 700;
}

h3 {
	margin-top: 0px;
}

h4 {
	margin-top: 5px;
	margin-bottom: 5px;
}

.header {
	text-align: center;
}

.footer {
	width: 100vw;
	padding-top: 0;
	text-align: center;
	bottom: 0;
	position: fixed;
}

.titleText {
	padding-left: 20%;
	width: 60%;
}

.menuBar {
	overflow: hidden;
	width: 60%;
	padding-left: 20%;
	list-style-type: none;
	margin: 0;
}

.footerBar {
	overflow: hidden;
	width: 60%;
	padding-left: 20%;
	list-style-type: none;
	margin: 0;
}

.menuObj {
	width: 33.33%;
	display: block;
	float: left;
	color: white;
	background-color: black;
	padding-top: 15px;
	padding-bottom: 15px;
	text-decoration: none;
}

.constructionHeader {
	width: 100%;
	display: block;
	float: left;
	color: white;
	background-color: black;
	padding-top: 15px;
	padding-bottom: 15px;
	text-decoration: none;
}

#footerToTop {
	width: 7%;
}
#footerToTop:hover {
	cursor: pointer;
}

.footerObj {
	width: 31%;
	display: block;
	float: left;
	color: white;
	background-color: black;
	padding-top: 15px;
	padding-bottom: 15px;
	text-decoration: none;
}

.menuObj:hover {
	background-color: #2e2e2e;
}

.footerObj:hover {
	background-color: #2e2e2e;
}

.bodyText {
	width: 60%;
	padding-left: 20%;
	line-height: 1.6em;
	min-height: 100%;
	position: relative;
	padding-bottom: 2em;
}

#slider {
	width: 60%;
	position: relative;
	margin: auto;
}

#sliderPortfolio {
	width: 50%;
	position: relative;
}

.sliderButtonL, .sliderButtonR {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	background-color: rgba(0,0,0,0.3);
	font-weight: bold;
	font-size: 18px;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.sliderButtonR {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.sliderButtonL:hover, .sliderButtonR:hover {
  background-color: rgba(0,0,0,0.8);
}

.sliderText {
  color: #ffffff;
  font-size: 15px;
  padding: 10px 0;
  position: absolute;
  bottom: 8px;
  width: 80%;
  margin-left: 10%;
  text-align: center;
  background-color: rgba(0,0,0,0.5);
}

#portfolioContainer {
	display: table-row;
	margin: 0;
}

#portfolioMenu {
	width: 30%;
	display: table-cell;
}

#portfolioContent {
	width: 70%;
	display: table-cell;
	padding-left: 15px;
	transform: translateY(-3px);
}

.sideBar {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
	cursor: pointer;
	background-color: black;
	color: white;
	text-align: center;
}

.sideBarObj {
	padding-top: 10px;
	padding-bottom: 10px;
}

.sideBarObj:hover {
	background-color: #2e2e2e;
}

.dropdownContainer {
	width: 100%;
}

.dropdown {
	color: white;
	cursor: pointer;
	background-color: rgba(0,0,0,0.6);
	padding: 7px;
	/* Making menu text unselectable. */
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.dropdown:hover {
	background-color: rgba(0,0,0,.5);
}

.dropdownContent {
	color: white;
	transition: all .2s ease;
	background-color: #999999;
	display: none;
	opacity: 0;
	padding: 7px;
}

div.dropdownContent br {
	margin-bottom: .3em;
}

.dropdownSection {
	margin-bottom: 3px;
}

@media all and (orientation:portrait) {
	.menuBar, .footerBar, .bodyText, .titleText {
		width: 90%;
		padding-left: 5%;
	}
	#slider {
		width: 90%;
	}

	#portfolioMenu {
		width: 100%;
		display: inline;
	}
	#tabInfo {
		padding-bottom: 1em;
	}

	#portfolioContent {
		display: inline;
		padding-left: 0;
	}
}