/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('/resources/fonts/source-sans/source-sans-pro-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/resources/fonts/source-sans/source-sans-pro-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/resources/fonts/source-sans/source-sans-pro-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/resources/fonts/source-sans/source-sans-pro-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/resources/fonts/source-sans/source-sans-pro-v18-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  font-display: swap;
}
html, body {
	height: 100%;         /* required */
	font-family: 'Source Sans Pro', sans-serif;
}
body {
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;            /* required to "hide" distance div */
    background-color: #FFF;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.default-box {
    border: solid 1px #e1e1e1;
	width: 800px;
	margin: 0 auto;
}

.default-box .box-header {
    color: #333333;
    text-align: left;
    padding: 15px;
    font-size: 20px;
    background-color: #f7f7f7;
	font-weight: 300;
}

.default-box .box-content {
    width: 100%;
}

.default-box .box-content-inner {
    padding: 15px 60px;
}

p.bold {
	font-weight: 600;
}






/*Large*/
@media (min-width:1200px) {
	
}

/*Medium*/
@media (min-width:992px) and (max-width:1199px) {
    .default-box {
		width: 700px;
	}
}

/*Small & Extra Small*/
@media (max-width:991px) {
	
}

/*Small*/
@media (min-width:768px) and (max-width:991px) {
    .default-box {
		width: 750px;
	}
}

/*Extra Small*/
@media (max-width:767px) {
	.default-box {
		width: 94%;
	}
	
	.default-box .box-content-inner {
		padding: 15px 15px;
	}
}