/* BEGIN myfoo - standard CSS classes I use all the time */ 
html {
	overflow-y: scroll;
} /* Forces a scrollbar when the viewport is larger than the websites content - CSS3 */
p {
	text-align: justify;
}
a {
	outline: 0 none;
	color: #06C;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.centered {
	text-align: center;
}
.justified {
	text-align: justify;
}
.mymargin {
	margin: 5px;
}
.sidemargin {
	margin: 0 15px;
}
.virticalmargin {
	margin: 15px auto;
}
.nomargin {
	margin: 0;
}
.bottommargin {
	margin-bottom: 15px;
}
.nopad {
	padding: 0;
}
.mypad {
	padding: 15px;
}
.verticalpad {
	padding-top: 15px;
	padding-bottom: 15px;
}
.horizintalpad {
	padding-top: 15px;
	padding-bottom: 15px;
}
.smpad {
	padding: 4px;
}
.myline {
	height: 1px;
	width: 98%;
	background-color: #E6C059;
	clear: both;
	margin: 20px auto 20px auto;
}
.shortline {
	height: 2px;
	width: 50%;
	background-color: #900;
	margin: 20px auto 20px auto;
}
.rounded5 {
	border-radius: 5px;
}
.rounded7 {
	border-radius: 7px;
}
.rounded10 {
	border-radius: 10px;
}
.rounded15 {
	border-radius: 15px;
}
.rightrounded10 {
	border-radius: 0 10px 10px 0;
}
.leftrounded10 {
	border-radius: 10px 0 0 10px;
}
.myshadow {
	box-shadow: 0 0 6px black;
	-webkit-box-shadow: 0 0 6px black;
}
img {
	width: 100%
}
.imgholder, .imgl, .imgr {
	border: #9CC2D7 1px solid;
	border-radius: 4px;
	padding: 4px;
}
.imgl {
	float: left;
}
.imgr {
	float: right
}
.glass {
	background-image: url(https://resortrepairs.com/img/trans-wht-60.png);
}
.smokeglass {
	background-image: url(../img/trans-ltblue-40.png);
	padding:15px;
	border-radius:10px;
}
.boxshadow {
	-webkit-box-shadow: 0 0 8px #222;
	box-shadow: 0 0 8px #222;
}
/* ============ END myfoo ===================== */
/* ===== BEGIN Mobile Nav Hide switch CSS ====== */

.navbar {
	border-radius: 15px;
}
@media (min-width: 768px) {
.hideover768 {
	display: none;
}
}
@media (max-width: 768px) {
.hideunder768 {
	display: none;
}
.navbar {
	border-radius: 0px;
}
}
/* ===== END Mobile Nav Hide switch CSS ====== */
/*======== nav flux - makes dropdowns on-mouse-over and semi-transparent =========== */
@media (min-width: 980px) {
.dropdown-menu .sub-menu {
	left: 100%;
	position: absolute;
	top: 0;
	visibility: hidden;
	margin-top: -1px;
}
.dropdown-menu li:hover .sub-menu {
	visibility: visible;
}
.dropdown:hover .dropdown-menu {
	display: block;
}
.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {
	margin-top: 0;
}
.navbar .sub-menu:before {
	border-bottom: 7px solid transparent;
	border-left: none;
	border-right: 7px solid rgba(0, 0, 0, 0.2);
	border-top: 7px solid transparent;
	left: -7px;
	top: 10px;
}
.navbar .sub-menu:after {
	border-top: 6px solid transparent;
	border-left: none;
	border-right: 6px solid #fff;
	border-bottom: 6px solid transparent;
	left: 10px;
	top: 11px;
	left: -6px;
}
}
.navbar-nav > li > .dropdown-menu {
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
	/* Netscape */
	-moz-opacity: 0.85;
	/* Safari 1.x */
	-khtml-opacity: 0.85;
	/* Good browsers */
	opacity: 0.85;
	font-size: 18px
}
/*====== end nav flux =========== */
/*====== Begin CSS3 Overides & adds =========== */
body {
	font-size: 170%;
	-webkit-font-smoothing: antialiased;
	background-color: hsl(41, 85%, 46%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8dfaa", endColorstr="#d99911");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#f8dfaa), to(#d99911));
	background-image: -moz-linear-gradient(top, #f8dfaa, #d99911);
	background-image: -ms-linear-gradient(top, #f8dfaa, #d99911);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8dfaa), color-stop(100%, #d99911));
	background-image: -webkit-linear-gradient(top, #f8dfaa, #d99911);
	background-image: -o-linear-gradient(top, #f8dfaa, #d99911);
	background-image: linear-gradient(#f8dfaa, #d99911);
	border-color: #d99911 #d99911 hsl(41, 85%, 37%);
	color: #333 !important;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.59);
	-webkit-font-smoothing: antialiased;
}
.row {
	margin: 5px auto;
}
.page-header {
	margin-top: 30px;
	border-bottom: 0;
}
.logo {
	max-width: 400px;
}
.container {
	width: 98%;
	max-width:1800px; 
	background-color: #FFF;
	border: #CCC 1px solid;
	padding: 20px;
	border-radius: 0 0 30px 30px;
	-webkit-box-shadow: 0 0 12px #333;
	box-shadow: 0 0 12px #333;
}
@media (max-width: 768px) {
.container {
	width: 100%;
	border-radius: 0;
}
}
h1 {
	font-size: 26px;
	color: #06C;
}
h2 {
	font-size: 22px;
	color: #06C;
}
h3 {
	font-size: 18px;
	color: #06C;
}
.navbar-default {
	background-color: hsl(41, 85%, 46%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8dfaa", endColorstr="#d99911");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#f8dfaa), to(#d99911));
	background-image: -moz-linear-gradient(top, #f8dfaa, #d99911);
	background-image: -ms-linear-gradient(top, #f8dfaa, #d99911);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8dfaa), color-stop(100%, #d99911));
	background-image: -webkit-linear-gradient(top, #f8dfaa, #d99911);
	background-image: -o-linear-gradient(top, #f8dfaa, #d99911);
	background-image: linear-gradient(#f8dfaa, #d99911);
	border-color: #d99911 #d99911 hsl(41, 85%, 37%);
	color: #333 !important;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.59);
	-webkit-font-smoothing: antialiased;
}
.copyright {
	font-size: 11px;
	letter-spacing: 1px;
	text-align: center;
	margin: 20px auto;
}
.anderson {
	max-width: 250px;
}
@media (min-width: 768px) {
.anderson {
	text-align: center;
}
}
.picrestrict {
	max-width:90%;
	margin:auto;
}
table td {
	border:1px solid #ccc;
	padding:3px;
}
.table2 td {
	border:0px solid #ccc;
	padding:3px;
}