/*
BASE (MOBILE) SCREENS
These base styles apply to all screen sizes, but may be overridden on larger screens by the media query-driven styles that appear later in this file.
*/

.border {
    border-style: dashed;
    border-width: 1px;
    border-color: red;
}

/* Responsive Images */
img {
	width:auto;
	max-width:100%; 
	height:auto;
	vertical-align: middle; /* cures the 4 px whitespace anomaly */
}




/* Box sizing. Awesome thing. Read about it here: http://www.w3schools.com/cssref/css3_pr_box-sizing.asp */
* {  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
       box-sizing: border-box; 
}


/* Contain floats: h5bp.com/q */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.right {
	float:right;
}

.left {
	float:left;
}

.cell-bottom {
	display:table-cell; 
	vertical-align:bottom;
	width: 100%;
}

body {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400; /* medium */
	font-size: 14px;
	line-height: 26px;
	background-color: #ffffff; /* white background around the page proper */
	color: black;
	margin: 0;
}

b {
	font-weight: 600; /* bold */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 700;
	text-transform: uppercase;
}

h1 {
    font-size: 36px;
    line-height: 40px;
    margin: 0;
}

h2 {
	font-size: 20px;
	font-style: normal;
	line-height: 22px;
	margin-top: 28px;
	margin-bottom: 0;
}

p {
	margin: .75em 0 0 0;
}

p.caption {
	font-size: 10px;
	font-weight: 400;
	font-style: italic;
	text-align: right;
	margin: 0 !important;
}

p.warning {
	font-weight:bold;
	color:red;
} 

b {
	font-weight: 700;
}

ul:last-child, ol:last-child {
    margin-bottom: 0;
}

ul {
    list-style: disc;
}

ul, ol, dl, dd {
    padding: 0 0 0 30px;
}

ul, ol, dl {
    line-height: 1.8em;
    margin: 0 0 0.75em;
}

hr {
	margin-top: 30px;
}



/* Hover-swap images (next 3 calls) */
.hover_swap img:last-child {
	display:none;
}
.hover_swap:hover img:first-child {
	display:none;
}
.hover_swap:hover img:last-child {
	display:inline-block;
}


/* Links */
a:link,
a:visited {
	color: blue;
	text-decoration: underline;
}

a:hover {
}

#wrapper {
	background-color: #ffffff; /* white background around the page proper */
	max-width: 760px;
	padding: 15px 40px 40px 40px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.6);
	margin-bottom: 18px;
}

#header {
	
}

#dick_kane img {
	width: 99px;
	float: right;
}

#graybar {
	line-height: 0;
}

#graybar img {
	width: 100%;
	height: 3px;
	margin:0;
}

#contact {
	float: left;
}

#senior_exec {
	width: 99px;
	float: right;
	line-height: 0;
	margin: 0;
}

#contact p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #a50021;
	margin-top: 3px;
	font-size: 11px;
	line-height: 14px;
}

#contact a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #a50021;
	font-size: 11px;
	line-height: 14px;
}

#content_left {
	float: left;
	width: calc(100% - 145px);
}

#content_right {
	float: right;
	width: 145px;
}

#content_left a.button {
	width: 75%;
	margin-left: 12.5%;
}

a.button {
	display: inline-block;
	text-align: center;
	margin-top: 28px;
	padding-top: 6px;
	padding-bottom: 6px;
	border-radius: 8px;
	background-color: #A50021;
	color: white;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 700; /* bold */
	font-size: 18px;
	text-decoration: none;
}

#photos {
	margin-top: 28px;
}



/*
PHONES in LANDSCAPE ORIENTATION
*/
@media only screen and (min-width: 500px) {

}




/*
TABLETS in PORTRAIT ORIENTATION
*/
@media only screen and (min-width: 700px) {

} 



/*
TABLETS in LANDSCAPE & LAPTOPS
This is the first appearance of the "desktop layout"
*/
@media only screen and (min-width: 964px) {

/* Links */
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	cursor: pointer;
}

}



/*
PRINT STYLESHEET
*/
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}