html 
{
  margin: 0;
  padding:  0;
  border: 0;
}



body
{
	padding: 8px 40px 0px 60px;
	margin: 0;
	color: #333;
	font-size: 1rem;
	font-family: "TheSansOsF",Arial,sans-serif;
	font-weight: 400;
	line-height: normal;
	background-color: #fff;
}

h3
{
	font-weight: 600;
}

.head
{
	color: #00567D;
}

a
{
	text-decoration: none;
	font-weight: bold;
	color: #00567D;
}

#logo
{
	width:  150px;
}

.featurelist
{
	width: 40%;
	display: inline-block;
	float: left;
}

ul {
  list-style: none; /* Remove default bullets */
  padding: 4px;
  margin: 0;
}


ul li:first-child::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #A5C100; /* Change the color */
 
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */

}

ul li:first-child
{
 font-weight: 600; /* If you want it to be bold */
}
ul li
{
	font-weight: 100;
}

.category
{
	color: #00567D;
	margin-bottom: 2px;
}

hr 
{
	color: #00567D;
	width: 95%;
	margin: 0;
}

.half-column
{
	width:  50%;
}

.large-padding
{
	padding: 0px 64px 8px 64px
}

.clear
{
	clear: both;
}

.title
{
	font-size: 2.4rem;
	font-weight: bold;
	padding-right: 16px;
}

.sub-title
{
	font-size:  1.2rem;
	margin-left:  16px;
}

.col
{
	float: left;
	width: 45%;
}

.pad-small
{
	padding-left: 16px;
}

#logoholder
{
 width: 50%; 
 float: right; 
 text-align: right;
}


@media only screen and (max-width: 1000px) {

	.half-column, .col
	{
		width:  100%;
		

	}
	
	.subtitle
	{
		display:  block;
	}

	.row
	{
		width:  100%;
	}

	.pad-small
	{
		padding:  0px;
	}

	.large-padding
	{
		padding:  0;
	}

	#logo
	{
	  display: block;
	  margin-left: auto;
	  margin-right: auto;		
	}

	#logoholder
	{
		padding:  32px 0px 32px 0px;
		width:  100%;
		float: none;
		text-align: center;
	}
} 