.homeContent {
	position: absolute;
	width: 42.5vw;
	height: 10vh;
	-webkit-border-image: -webkit-linear-gradient(left, rgba(255,255,255,0) 1%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%) 0 0 100% 0/0 0 1px 0 stretch;
	background-color: rgba(255, 255, 255, 0.25);
	overflow: hidden;
}

.homeHeading {
	width: 100%;
	text-align: center;
}

#miniProfilePic {
	position: relative;
	top: 2vh;
	left: 1.757vw;
	width: 4vw;
	height: 10vh;
	border: 3px ridge silver;
	border-radius: 5px;
}

#miniProfileStats {
	list-style: none;
	position: relative;
	top: -10vh;
	left: 7.5vw;
	width: 25vw;
	height: 35vh;
	padding: 5px;
	line-height: 2.5vh;
	color: rgba(255, 255, 255, 0.5);
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0);
	font-weight: bold;
	font-variant: small-caps;
	text-shadow: 1px 1px 2px #333;
}

#miniProfileStats li {
	font-size: 1em;
	float: left;
}

#miniProfileStats li:nth-child(even) {
	width: 75%;
	-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,1) 1%,rgba(0,0,0,0) 95%) 0 0 100% 0/0 0 1px 0 stretch;

}

#miniProfileStats li:nth-child(odd) {
	width: 25%;
	-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,1) 1%,rgba(0,0,0,1) 95%) 0 0 100% 0/0 0 1px 0 stretch;
}

#miniProfileStats li:nth-child(7), #miniProfileStats li:last-child {
	-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 1%,rgba(0,0,0,0) 95%) 0 0 100% 0/0 0 1px 0 stretch;
}

#miniProfileStats li:last-child {
	max-height: 29vh;
	margin-top: 2.5vh;
	margin-left: -5.5vw;
	width: 85%;
	overflow-y: auto;
	overflow-x: hidden;
	line-height: 2vh;
}


#interestCloud {
	list-style: none;
	width: 100%;
	height: 32.5vh;
	overflow-y: auto;
	font-weight: bold;
	margin-top: 5px;
	padding-left: 5px;
}

#interestCloud li {
	float: left;
	padding: 5px;
	margin: 1.25px;
	text-align: center;
	cursor: pointer;
}

#interestCloud li a, #interestCloud li a:hover {
	color: rgba(255, 255, 255, 0.5);
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.66);
	text-decoration: none;
}


#homeProfile, #homeInterests {
	left: 5vw;
}

#homeProfile {
	top: 2.5vh;
	height: 40vh;
}


#homeInterests {
	top: 45vh;
	height: 40vh;
}



#homePhotos, #homeFriends, #homeMatches, #homeReviews {
	left: 52.5vw;
}

#homePhotos {
	top: 2.5vh;
	height: 18.75vh;
}

#homeFriends {
	top: 23.75vh;
	height: 18.75vh;
}

#homeMatches {
	top: 45vh;
	height: 18.75vh;
}

#homeReviews {
	top: 66.25vh;
	height: 18.75vh;
}




#photoList, #friendsList, #matchesList {
	list-style: none;
	position: absolute;
	width: 43.75vw;
	height: 12vh;
	top: 50%;
	left: 50%;
	margin-top: -5vh;
	margin-left: -21.25vw;
	overflow-y: auto;
	overflow-x: hidden;
}

#photoList li, #friendsList li, #matchesList li {
	position: relative;
	top: 12.5px;
	width: 8.5vw;
	height: 11vh;
	float: left;
	margin-top: -15px;
	margin-bottom: 62.5px;
	padding-top: 2px;
	text-align: center;
}

#photoList li img, #friendsList li img, #matchesList li img {
	width: 5vw;
	height: 10vh;
	border-radius: 5px;
	cursor: pointer;
	border: 2px ridge silver;
	border-radius: 5px;
	margin-left: 0;
}

#reviewsWrapper {
	width: 105%;
	height: 16.25vh;
	overflow-y: auto;
}

.miniReviewContainer {
	position: relative;
	font-size: 1em;
	background-color: rgba(0, 0, 0, 0.5);
	margin-bottom: 5px;
	border-radius: 3px;
	text-indent: 15px;
	width: 35vw;
	left: 0.25vw;
	border-radius: 5px;
	overflow-y: auto;
	overflow-x: hidden;
}

.miniReviewContainer h3{
	font-size: 1.5em;
	background-color: rgba(0, 0, 0, 0.33);
	text-indent: -1px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding-left: 5px;
	cursor: pointer;
}

.miniReviewContainer p {
	padding-left: 5px;
	padding-right: 5px;
}




/*//////////////////////////////////////////////////////////////////////////MEDIA QUERIES*/
/*///////////////////////////////////////////////////////////////////////////////////////*/


/*PORTRAIT SCREENS*/
@media only screen and (orientation: portrait) {
	#photoList li img, #friendsList li img, #matchesList li img {
		width: 7.5vw;
		height: 9vh;
		margin-top: 10px;
	}
}/*end 1024px*/




/*MEDIUM SCREENS*/
@media only screen and (max-width: 1024px) {

}/*end 1024px*/





/*small screens*/
@media only screen and (max-width:768px) {

	#miniProfilePic {
		height: 7.5vh;
	}

	.miniReviewContainer {
		font-size: 0.75em;
		text-indent: 15px;
	}

	.miniReviewContainer h3{
		font-size: 1.25em;
	}

	#miniProfileStats li {
		font-size: 0.75em;
	}
}/*end 768px*/





/*Iphone 6*/
@media only screen and (max-width:667px) {
	#miniProfileStats {
		top: -10vh;
		left: 14vw;
		width: 25vw;
		height: 30vh;
		padding: 5px;
		text-align: center;
		font-size: 0.75em;
	}

	#miniProfileStats li {
		width: 100%;
	}

	#miniProfilePic {
		position: relative;
		top: 0vh;
		left: 1vw;
		width: 10vw;
		height: 15vh;
	}

	#miniProfileStats li:nth-child(even) {
		width: 75%;
		-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%) 0 0 100% 0/0 0 1px 0 stretch;

	}

	#miniProfileStats li:nth-child(odd) {
		width: 75%;
		-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 1%,rgba(0,0,0,0) 95%) 0 0 100% 0/0 0 1px 0 stretch;
	}

	#miniProfileStats li:nth-child(7) {
		margin-left: -12.5vw;
		width: 150%;
	}

	#miniProfileStats li:last-child {
		max-height: 17vh;
		margin-top: 0;
		margin-left: -11.75vw;
		width: 150%;
		overflow-y: auto;
		overflow-x: hidden;
		line-height: 2vh;
	}

	#interestCloud {
		left: 10vw;
	}

	#interestCloud li {
		float: left;
		padding: 2.5px;
		margin: 1.25px;
		text-align: center;
		cursor: pointer;
		width: 85%;
		font-size: 0.75em;
	}
}/*end 667px*/


@media only screen and (max-width : 480px) {

	.miniReviewContainer {
		font-size: 0.66em;
		text-indent: 15px;
	}

	.miniReviewContainer h3{
		font-size: 1em;
	}
}/*end 480px*/









/*Smartphone*/
@media only screen and (max-width:568px) and (orientation: landscape) {
	#photoList li img, #friendsList li img, #matchesList li img {
		margin-top: 10px;
	}

	#miniProfileStats {
		width: 25vw;
		padding: 5px;
		text-align: left;
		font-size: 0.7em;
	}
}/*end 568px landscape*/


@media only screen and (max-width:675px) and (max-height: 500px) {
	#photoList li img, #friendsList li img, #matchesList li img {
		margin-top: 12.5px;
	}

	#miniProfileStats {
		top: -12.5vh;
		left: 14vw;
		width: 25vw;
		height: 30vh;
		padding: 5px;
		text-align: center;
		font-size: 0.66em;
	}

	#miniProfileStats li {
		width: 100%;
		line-height: 0.75em;
		padding: 1px;
	}

	#miniProfilePic {
		position: relative;
		top: 2vh;
		left: 1vw;
		width: 10vw;
		height: 15vh;
	}

	#miniProfileStats li:nth-child(even) {
		width: 75%;
		-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%) 0 0 100% 0/0 0 1px 0 stretch;

	}

	#miniProfileStats li:nth-child(odd) {
		width: 75%;
		-webkit-border-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 1%,rgba(0,0,0,0) 95%) 0 0 100% 0/0 0 1px 0 stretch;
	}

	#miniProfileStats li:nth-child(7) {
		margin-left: -12.5vw;
		width: 150%;
	}

	#miniProfileStats li:last-child {
		max-height: 20vh;
		margin-top: 0;
		margin-left: -11.75vw;
		width: 150%;
		overflow-y: auto;
		overflow-x: hidden;
		line-height: 2vh;
	}
}/*end 350px landscape*/