@charset "utf-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color:#404040;
	margin: 0;
	padding: 0;
	min-width:360px;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding:0;
}
a img { 
	border: none;
}
a:link {
	color: #42413C;
	text-decoration: underline; 
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}
::-ms-input-placeholder { /* Microsoft Edge */ 
    color: darkgray;
	font-style: italic;
}
::placeholder { /* Firefox, Chrome, Opera */ 
    color: darkgray;
	font-style: italic;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */ 
    color: darkgray;
	font-style: italic; 
}
.button { /* Any span or div that is supposed to look like a button */
	border-radius:20px;
	padding:6px 10px;
	border:1px solid silver;
	outline: none;
	background-color: #b9cffa;
	display:inline-block;
	font-weight: bold;
	width:auto;
	width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	cursor: pointer;
	margin-bottom:4px;
}
img.social {
	height: 20px;
	width: auto;
}
a.social {
	text-decoration: none;
	margin:0 3px;
}

/* Cookie */
#cookiePopup {
	font-size: 1.2em;
	padding:0.4em;
	font-weight:bold;
	color:white;
	overflow: hidden;
	bottom: 0;
	position: fixed;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,0.6);
	z-index: 999;
	display:none;
	min-width:360px;
}
#cookieInfo {
	color: #6699ff;
}
#cookieConsent {
	border-radius:20px;
	padding:6px 10px;
	border:1px solid silver;
	outline: none;
	background-color: #6699ff;
	display:inline-block;
	float: right;
	margin-right:20px;
	font-weight: bold;
}

/* SEARCH */
input, select {
	font-size:1em;
	border-radius:20px;
	padding:6px 10px;
	border:1px solid silver;
	outline: none;
	-webkit-box-shadow: 0px 0px 12px -2px gray;
	-moz-box-shadow: 0px 0px 12px -2px gray;
	box-shadow: 0px 0px 12px -2px gray;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
input#find {
	width:420px;
}
input#location {
	width:350px;
}
.red_border {
	border-color: red !important;
	-webkit-box-shadow: 0px 0px 12px -2px red !important;
	-moz-box-shadow: 0px 0px 12px -2px red !important;
	box-shadow: 0px 0px 12px -2px red !important;
}
div.float {
	display: inline-block;
	width: auto;
	padding:15px 0 15px 15px;
}
#search {
	font-size:1.4em;
	position:absolute;
	display:block;
	width:950px;
	background:#fff;
	
	top:-moz-calc(50% - 35px);
	top:-webkit-calc(50% - 35px);
	top:calc(50% - 35px);
	left:-moz-calc(50% - 475px);
	left:-webkit-calc(50% - 475px);
	left:calc(50% - 475px);
}
#searchCell {
	height: 60px;
	text-align:center;
	padding-bottom: 20px;
}
#show_search_btn {
	padding-top: 6px;
	cursor: pointer;
}

/* RESULTS */
#left_pane {
	width: auto;
	padding:5px 10px 15px 10px;
	background-color: darkgray;
	margin-right:15px;
	position:fixed;
	left: 0;
	top: 0;
	bottom: 0;
}
#menu_btn {
	float: right;
	padding: 0 0 5px 0;
	font-size: 1.4em;
	cursor: pointer;
	margin-right: -4px;
}
div.left_pane_contents {
	width: 230px;
	overflow-y:auto;
	overflow-x:hidden;
	height: calc(100% - 30px);
}
td.left_pane_contents {
	width: 204px;
}
.left_pane_spacer {
	width : 61px;
}
.telephone {
	font-size: 0.8em;
	display:inline-block;
	width: auto;
	padding:0 1em;
}
.telephone.hidden, .website {
	border:1px solid gray;
	border-radius:10px;
	background-color: #b9cffa;
}
.company_title {
	display:inline-block;
	padding-right: 0.5em;
}
.website {
	font-size: 0.8em;
	width: auto;
	display:inline-block;
	padding:0 1em;
}
a.website {
	text-decoration: none;
}

#right_pane {
	padding:15px 10px 15px 0px;
	width: calc(100% - 10px);
}
div.item {
	-webkit-box-shadow: 0px 0px 12px -2px silver;
	-moz-box-shadow: 0px 0px 12px -2px silver;
	box-shadow: 0px 0px 12px -2px silver;
	margin-bottom:15px;
	border-radius: 12px;
	padding:4px;
	cursor: pointer;
}
div.item:hover {
	-webkit-box-shadow: 0px 0px 12px -2px gray;
	-moz-box-shadow: 0px 0px 12px -2px gray;
	box-shadow: 0px 0px 12px -2px gray;
}
div.item.expanded {
	-webkit-box-shadow: 0px 0px 12px -2px blue;
	-moz-box-shadow: 0px 0px 12px -2px blue;
	box-shadow: 0px 0px 12px -2px blue;
}
.company_about, .company_name {
	display: none;
}
.minimal {
	overflow: hidden;
	text-overflow: ellipsis; /* wont work unless width set in px and text-overflow:hidden, but this causes alignment problems */
	height: 1.2em;
}
#paging {
	text-align:center;
	margin:3px 0 1.1em 0;
}
#paging a {
	text-decoration: none;
}
#paging a:visited {
	color: #404040;
}
.current_page {
	font-weight: 500;
	font-size: 1.4em;
}
#category_container {
	font-size: 0.8em;
	margin-bottom:18px;
}
ul.hh_tree, ul.hh_tree ul {
	list-style-type: none;
	background: url(/images/tree/vline.png) repeat-y;
	margin: 0;
	padding: 0;
}
ul.hh_tree ul {
	margin-left: 10px;
}
ul.hh_tree li {
	margin: 0;
	padding: 0 0 0 12px;
	line-height: 20px;
	background: url(/images/tree/node.png) no-repeat;
}
ul.hh_tree li:last-child {
	background: darkgray url(/images/tree/lastnode.png) no-repeat;
}

#loadingImage {
	z-index: 51;
	position: fixed;
	top: calc(50% - 40px);
	left: calc(50% - 21px);
}

/* Company Info */
.info_list_item:hover {
	-webkit-box-shadow: 0px 0px 6px -2px blue;
	-moz-box-shadow: 0px 0px 6px -2px blue;
	box-shadow: 0px 0px 6px -2px blue;
	border-radius: 6px;
	padding:4px;
}

/* hire-item */
#details_image {
	text-align:center;
	vertical-align:middle;
	width:350px;
	max-width:350px;
	display:inline-block;
	float:left;
}
#details_image img {
	width:100%;
	height:auto;
	border:0;
	margin:0
}
#details_box {
	width:calc(100% - 220px);
	float:left;
	display:inline-block;
}
#details_btns {
	display:inline-block;
	width:220px;
	font-size:0.8em;
	overflow: hidden;
	text-align: right;
}

#footer {
	font-size:14px;
	padding:0;
	font-weight:normal;
	color:#404040;
	bottom:0;
	position:fixed;
	width:100%;
	background-color:#ccc;
}

@media screen and (max-width: 1000px) {
	#search {
		width:760px;
		font-size:1.2em;
		top:-moz-calc(50% - 35px);
		top:-webkit-calc(50% - 35px);
		top:calc(50% - 35px);
		left:-moz-calc(50% - 380px);
		left:-webkit-calc(50% - 380px);
		left:calc(50% - 380px);
	}
	input#find {
		width:330px;
	}
	input#location {
		width:260px;
	}
	input {
		border-radius:18px;
	}
	#details_box {
		width:100%;
		float:none;
	}
	#details_btns {
		display:block;
		width:100%;
		font-size:0.8em;
		text-align: center;
	}
	#details_image {
		width:200px;
		max-width:200px;
	}
}
@media screen and (max-width: 768px) {
	#search {
		width: 410px;
		top:-moz-calc(50% - 71px);
		top:-webkit-calc(50% - 71px);
		top:calc(50% - 71px);
		left:-moz-calc(50% - 205px);
		left:-webkit-calc(50% - 205px);
		left:calc(50% - 205px);
	}
	input#find {
		width:390px;
	}
	td.left_pane_contents {
		width: 0px;
		visibility: hidden;
	}
	div.left_pane_contents {
		display:none;
	}
	#search_row {
		display:none;
	}
	#searchCell {
		text-align:left;
		padding: 10px 0;
	}
}
@media screen and (max-width: 414px) {
	#search {
		width: 330px;
		top:-moz-calc(50% - 106px);
		top:-webkit-calc(50% - 106px);
		top:calc(50% - 106px);
		left:-moz-calc(50% - 166px);
		left:-webkit-calc(50% - 166px);
		left:calc(50% - 166px);
	}
	input#find {
		width:290px;
	}
	#search_btn_div {
		padding:0;
		display:block;
		width:100%;
		text-align:center;
	}
	#details_image {
		width:100px;
		max-width:100px;
	}
}