﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,500i,600,600i,700,700i,800,800i'); 

html
{
	top:0;
	left:0;
	width:100%;
	height:100%;
}
 
body
{
	color:Navy;
	font-family: Montserrat,Arial,Helvetica,sans-serif;
	font-weight:500;
	font-size: 12px;
	min-height: 100%;
	margin-left:auto;
	margin-right:auto;
	background-color:white;
}
h1 
{
	color: #5f9ea0;
	font-size: 36px;
	font-weight: 700;
	text-align:center;
	line-height:38px;
	margin-top:0;
	margin-bottom:20px;
	font-variant:small-caps;
}
h2 {
	color: #5f9ea0;
	font-size: 32px;
	font-weight: 700;
	line-height:36px;
	margin-top:0;
	margin-bottom:16px;
}
h3 {
	color: #5f9ea0;
	font-size: 28px;
	font-weight: 600;
	line-height:32px;
	margin-top:0;
	margin-bottom:12px;
}
h4 {
	color: #5f9ea0;
	font-size: 22px;
	font-weight: 600;
	line-height:26px;
	margin-top:0;
	margin-bottom:4px;
}
h5 {
	color: #5f9ea0;
	font-size: 16px;
	font-weight: 600;
	line-height:20px;
	margin-top:0;
	margin-bottom:0;
}
hr
{
    border-top: 1px solid Gray;
    margin:2px auto 2px auto;
}
.address
{
	text-transform:capitalize;
}

.photo 
{
	width: 90%;
	border-radius: 8px;
    -webkit-box-shadow: 2px 2px 2px -1px rgba(0,0,0,8);
	-moz-box-shadow: 2px 2px 2px -1px rgba(0,0,0,8);
	box-shadow: 2px 2px 2px -1px rgba(0,20,80,0.8);
}

.menuTab
{
    cursor: pointer;
}

/**************** Tables **************/
table {
	color: navy;
	padding:0px;
    border-collapse: collapse;
    border-spacing: 0px;
    border-color: LightGray;
    border-style:none;
}
tr 
{
}

td
{
	border-style:none;
	padding-top:10px;
	padding-bottom:10px;
}

.tableHeader {
	background: Black;
	color:White;
	font-size:18px;
	font-weight: 800;
	text-align:center;
}

.tableGrid {
	width: 100%;
	padding:5px;
	border:solid 1px navy;
    border-radius: 10px;
    border-collapse: collapse;
    border-spacing: 0px;
}
.tableGrid tr {
	height:36px;
    border-collapse: separate;
    border:solid 1px navy;
}
.tableGrid td 
{
	text-align:center;
    border:solid 1px navy;
}

.tableNoGrid {
	width: 100%;
	padding:5px;
	border: solid 1px navy;
    border-radius: 10px;
    border-collapse: collapse;
    border-spacing: 0px;
}
.tableNoGrid tr {
	height:36px;
	border-style:none;
}
.tableNoGrid td 
{
	border-style:none;
	text-align:center;
}

	
.drag { position: relative; }      
  

.contentPanel
{
	margin: 0px auto 10px auto;	
	width: 100%;
	background-color: white;
	border: 1px solid Black;
    padding: 20px 10px 20px 10px;
    border-radius: 0px 0px 20px 20px; 
}
.inputPanel
{
	text-align: left;
	width: 90%;
	max-width:700px;
	margin: 10px auto 10px auto;
}
.matchPanel
{
	margin: 0px 0px 20px 0px;	
	width: 95%;
	max-width:500px;
	background-color: white;
	color: black;
    text-align: left;
	border-style: none;
    padding: 10px 10px 10px 10px;
	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.2), 0px 1px 2px 1px rgba(0,0,0,0.19);
    border-radius: 15px;
}
.detailsPanel
{
	margin: 10px auto 10px auto;
	max-width:800px;
	width: 100%;
	background-color: white;
    color: black;
    text-align: left;
	border-style: none;
    padding: 10px 10px 10px 10px;
	box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.2), 0px 1px 2px 1px rgba(0,0,0,0.19);
    border-radius: 4px;
}
.sectionHeading {
	color: #5f9ea0;
	font-size: 32px;
	font-weight: 800;
	font-variant: small-caps;
	line-height:32px;
	margin-top:0;
	margin-bottom:12px;
}

a
{
    color:Green;
	font-weight: bold;
    text-decoration:underline;
}
a:hover {
    color:Maroon;
}
a.large 
{
	font-size:16px;
}

.SmallCaps{
	font-variant:small-caps;}
	
.dragme{position:relative;}
	

/*
	Avoid spaces between paragraphs and list items
	PARAGRAPH SPACING STYLE
*/
p, ul, li
{
	margin-top: 0px;
	margin-bottom: 0px;
}

/**************** Buttons **************/
input[type=button],input[type=submit] {
	display: inline-block;
    padding: 6px 15px;
    margin:10px;
    font-size: 14px;
    font-weight:bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: White; 
    background-color: #5f9ea0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 3px #999;
    opacity:1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type=button]:hover,input[type=submit]:hover 
{
	background-color: #43b3ae;
}

input[type=button]:active,input[type=submit]:active {
    background-color: #43b3ae;
    box-shadow: 0 3px #666;
    transform: translateY(2px);
}

input[type=button].loginButton,input[type=submit].loginButton { 
	float:right;
	background-color:#5479CC;
}
input[type=button].loginButton:hover,input[type=submit].loginButton:hover 
{
	background-color: Navy;
}

input[type=button]:disabled,input[type=submit]:disabled {
	background: #dddddd;
	cursor:default;
} 

input[type=button].larger,input[type=submit].larger {
	font-size:16px;
	font-weight:700;
	padding: 8px 14px;
	border-radius: 4px;
	margin:0px 2px 10px 2px;
}
input[type=button].smaller,input[type=submit].smaller {
	font-size:12px;
	font-weight:700;
	padding: 6px 12px;
	border-radius: 4px;
	margin:0px 4px 10px 4px;
}


.button {
    padding: 6px 15px;
    margin:10px;
    font-size: 14px;
    font-weight:bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: White; 
    background-color: #5f9ea0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 3px #999;
    opacity:1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.button:hover {
	background-color: #43b3ae;
}
.button:active {
    background-color: #43b3ae;
    box-shadow: 0 3px #666;
    transform: translateY(2px);
}
.button:disabled {
	background: #dddddd;
	cursor:default;
} 

input::-webkit-file-upload-button 
{
	padding: 6px 15px;
    margin:10px;
    font-size: 14px;
    font-weight:bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: White; 
    background-color: #5f9ea0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 3px #999;
    opacity:1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/**************** Text Input **************/
input[type=text],input[type=password] {
  padding: 3px;
  position: relative;
  left: 0;
  outline: none;
  border: 2px solid #cdcdcd;
  border-color: LightGray;
  background-color: white;
  font-size: 16px;
}

input[type=text]:disabled {
  background: #dddddd;
} 

textarea  {
  padding: 3px;
  position: relative;
  left: 0;
  outline: none;
  border: 2px solid #cdcdcd;
  border-color: LightGray;
  background-color: white;
  font-size:16px;
}

textarea:disabled {
  background: #dddddd;
} 

.limitChars {
	font-size:14px;
	font-style:italic;
	color:Green;
}

.reviewWarning 
{
	color:green;
	font-weight:bold;
	font-size:12px;
	height:50px;
}

.required 
{
	font-weight:bold;
	color:green
}
.optional 
{
	font-weight:normal;
}


Select {
    color: Navy;
    font-size: 14px;
    height:34px;
	border: 2px solid #cdcdcd;
	border-color: LightGray;
}

Select:disabled {	
	background: #dddddd;
}

.markerNumber
{
	position:absolute; 
}
.marker
{
	color:White;
}
.infoWindow
{
    padding:10px;
}

.floating
{
	float:left;
}

.floating clear
{
	clear:both;
}
.clearFloat
{
	clear:both;
}
.clearfix {
  overflow: auto;
} 


.PrintOnly
{
	display: none;
}

@media print 
{
	header, footer {
        display: none;
	}
	    
	/* Print stylesheet overrides to go in here */
	.NonPrintable {
		display: none;
	}
	.PrintOnly {
		display: inline;
	}

	tr,td
	{
		page-break-inside: avoid;
	}

	h2, h3
	{
		page-break-after:avoid !important;
	}	
}



