﻿/*CUSTOM NAV BAR COLOR*/
.navbar-default {
	background-color: #0099FF;
	border-color: #0099FF;
	color: white;	
}

/*STANDARD BRAND COLOR*/
.navbar-default .navbar-brand {
	color:white;
}

/*CUSTOM BRAND HOVER*/
.navbar-default .navbar-brand:focus {
	color:blue;
	background-color: transparent;
}

.navbar-default .navbar-brand:hover {
	color:blue;
	background-color: transparent;
}

/*NAVIGATION COLORS  ============================*/
.navbar-default .navbar-nav > li > a {
	color:white;
}

.navbar-default .navbar-nav > .active > a:focus {
	color: white;
	background-color:#0066CC;
}

.navbar-default .navbar-nav > .active > a:hover {
	color: white;
	background-color:#0066CC;
}

.navbar-default .navbar-nav > .active > a {
	color: white;
	background-color:#0066CC;
}

.navbar-default .navbar-nav > li > a:focus {
	color: white;
	background-color:transparent;
}

.navbar-default .navbar-nav > li > a:hover {
	color: white;
	background-color:#0066CC;
}

.navbar-default .navbar-nav > .open > a:focus {
	background-color:#0099FF;
	text-color: white;
}

.navbar-default .navbar-nav > .open > a:hover {
	background-color:#0099FF;
	text-color: white;
}

.navbar-default .navbar-nav > .open > a {
	background-color:#0099FF;
	text-color: white;
}



/*-------------------------------------------------------------*/





/* CUSTOM JUMBOTRON CONTROL 
---------------------------------------------------------------*/



/*FONT STYLE APPIS
-------------------------------------------------------------- */
p {
	font-family: 'Play', sans-serif;
	font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
	
	font-family: 'Lobster', cursive;
}



/* THUMBNAIL EFFECTS
-------------------------------------------------------------- */

.thumbnail img:hover {
	transform: scale(1.1);
}

/*--Property, Duration, Timing Function, Delay--*/
.thumbnail img {
	transition: all 0.3s ease 0s;
	width: 100%;
}

.thumbnail {
	overflow: hidden
}