/* API reference at https://developers.google.com/fonts/docs/css2#use_font-display */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans");
@import url("https://fonts.googleapis.com/css2?family=Montserrat");

* {
	margin: 0pt;
	padding: 0pt;
}

h1 {
	font-weight: bold;
	font-size: 150%;
	color: black;
	text-align: left;
}

h2 {
	font-family: 'PT Sans', 'Trebuchet MS', Helvetica, Garuda, sans-serif;
	font-size: 28px;
	line-height: 42px;
	font-weight: normal;
	font-style: normal;
	color: rgb(37, 94, 149);
}

h3 {
	font-family: Montserrat, "Trebuchet MS", Helvetica, Garuda, sans-serif;
	font-size: 16px;
	font-style: normal;
	color: rgb(37, 94, 149);
}

h4 {
	font-family: Montserrat ', ' Trebuchet MS ', Helvetica, Garuda,
		sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    color: rgb(37, 94, 149);
    margin: 0;
}

body, p, li {
	font-family: "Source Sans Pro", Calibri, AppleGothic, "MgOpen Modata",
		sans-serif;
	font-size: 16px;
	font-style: normal;
	text-align: left;
}

p {
	padding: 0 0 20px;
	margin: 0;
}

th, td {
  padding: 8px;
}

.title_box {
	background-color: grey;
	display: block;
	box-sizing: border-box;
	border: 0;
	margin-bottom: 36px;
}

.fiximate_title  {
	color: white;
	font-family: "PT Sans Caption", "Trebuchet MS", Helvetica, Garuda,
		sans-serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	text-align: center;
}

.fiximate_version {
	color: white;
	text-align: center;
	font-family: "Source Sans Pro", Calibri, AppleGothic, "MgOpen Modata",
		sans-serif;
	font-size: 20px;
}

.fiximate_generated {
	color: white;
	text-align: center;
	font-family: "Source Sans Pro", Calibri, AppleGothic, "MgOpen Modata",
		sans-serif;
	font-size: 16px;
	font-style: italic;
}

.disclaimer {
	margin-left: 4em;
	margin-right: 4em;
}

ul {
	list-style-type: disc;
	margin-left: 1em;
	padding-left: 1em;
	margin-bottom: 1em;
}

li {
	margin-top: .5em;
}

a {
	font-family: "Source Sans Pro", Calibri, AppleGothic, "MgOpen Modata", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	text-decoration: none;
	color: rgb(37, 32, 98);
	transition: color 0.3s ease-in-out;
}

a:hover {	
	color: rgb(149, 149, 149);
}

.page {
	display: flex;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.row {
    display: flex;
    flex-direction: row;
	height: 100%;
	width: 100%;
	margin: 0;
}

.column {
    display: flex;
    flex-direction: column;
	height: 100%;
	width: 100%;
	margin: 0;
}

.panel {
	display: block;
	height: 100%;
	width: 100%;
	margin: 0;
}

.frame {
	height: 100%;
	width: 100%;
	margin: 0;
}

.gutter {
    background-color: #eee;
    background-repeat: no-repeat;
    background-position: 50%;
}

.gutter.gutter-horizontal {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
    cursor: col-resize;
}

.gutter.gutter-vertical {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
    cursor: row-resize;
}

