/* CSS Document to Control Lists */
/* USing this to control distance between button and text */
/* padding left creates an indent border and fill switched off but left to helo layout in future float left caused major problem and was removed */

ol {
	margin:0px;
	min-width: 120px;
	list-style-type: disc;
	text-align: left;
	vertical-align: top;	
}
/*
ol border {
	margin:0px;
	padding-left: 10px;
	min-width: 100px;
	list-style-type: disc;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #000000;
}*/
/* show boundaries  background switched off but left to allow to help layout in future list style outside ensures the text wraps perfectly on the second line*/
li	{
	margin-left: 20px;
	list-style: outside;
	vertical-align: top;
/* background: yellow*/ }

li.border{
	margin-left: 0px;
		
 }

/* This is the list without bullet points */
.no-icon		{
	list-style-position: outside;
	list-style-type: none;
	padding-left: 0px;
}

.border		{
	list-style-position: inside;
	list-style-type: none;
	padding: 6px;
	border: 1px solid #000000;
}
/* This is the bullet point list */
.simple-list {
	list-style-position: outside;
	
}
/* This is the second level inset fix */
.inset-list {
	list-style-position: outside;
	margin-left: 60px;
}

/* This is the number  list style */
.number-list { 
list-style: decimal; 	
}





/* Defines button list style 
h3 {clear: left; margin:0 }
*/
 
