body {
	margin: 0px;
	padding-top: 48px;
	background: #fafafa;
}

.pro-container {
	width: 977px;
	padding-left: 16px;
	padding-right: 16px;
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.pro-header,
.pro-footer {
	height: 48px;
	background: #fafafa;
	width: 100vw;
	border-bottom: 1px solid #efefef;
}

.pro-header {
	position: fixed;
	top: 0px;
	z-index: 999;
}

.pro-header .pro-branding {
	height: 48px;
	padding-top: 12px;
	padding-bottom: 12px;
	box-sizing: border-box;
	display: inline-block;
}

.pro-header .pro-nav-search {
	float: right;
}

.pro-header .pro-nav-search a {
	color: #333;
	margin-left: 24px;
	line-height: 48px;
	font-size: 14px;
}

.pro-header .pro-branding span {
	font-size: 12px;
	font-family: avenir-medium;
	color: #999;
	margin-left: 4px;
}

.pro-header .pro-nav-search a:hover {
	text-decoration: underline;
	cursor: pointer;
}

.pro-header .pro-nav-search input {
	height: 32px;
	background: white;
	border-radius: 100px;
	padding: 8px 16px;
	box-sizing: border-box;
	border: none;
	width: 200px;
	font-size: 12px;
}

.pro-header .pro-nav-search input:focus {
	outline: none;
}

.pro-header .pro-nav-search img {
	width: 16px;
	float: right;
	padding-top: 16px;
	margin-left: 8px;
	padding-bottom: 16px;
}

.pro-footer {
	height: auto;
	min-height: 200px;
}

.pro-50-col {
	width: 50%;
	display: inline-block;
	float: left;
}

.pro-60-col {
	width: 60%;
	display: inline-block;
	float: left;
}

.pro-40-col {
	width: 40%;
	display: inline-block;
	float: left;
}

.pro-9-col {
	width: 704px;
	float: left;
	display: inline-block;
	margin-right: 16px;
}

.pro-3-col {
	width: 224px;
	float: left;
	display: inline-block;
}

.pro-6-col {
	width: 464px;
	float: left;
	display: inline-block;
}


/*about-page css*/
.about-navigation {
	position: fixed;
	top: 80px;
	opacity: 0.5;
	transition: all 0.2s ease-in-out;
}

.about-navigation:hover {
	opacity: 1;
}

.about-navigation a {
	width: 100%;
	position: relative;
	display: inline-block;
	color: #333;
	margin-bottom: 8px;
	line-height: 20px;
	text-align: right;
}

.parent-link {
	font-size: 14px;
	color: #333;
	transition: all 0.2s ease-in-out;
	width: 100%;
	font-family: avenir-bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 24px !important;
}

.parent-link:hover {
	text-decoration: underline;
	color: #333;
}

.child-link:hover {
	text-decoration: underline;
	color: #333;
}

.about-navigation small {
	float: right;
	letter-spacing: 1px;
	color: #999;
}

.child-link {
	font-size: 14px;

}

.anchor {
	display: block;
	height: 45px;
	/*same height as header*/
	margin-top: -45px;
	/*same height as header*/
	visibility: hidden;
}

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	line-height: 1.5;
    padding: 5px 5px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	width: 120px;
  	top: 100%;
  	left: 50%; 
  	margin-left: -60px;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}