/* CSS GLOBAL RESETS FOR ALL PAGES */
* {
margin:0;
padding:0
}

body {
background-color: #e9eef2;
}

p{
margin:5px 0;
}
table{
margin-top:20px;
/*margin:20px auto 0 auto;if a table needs to be centered within contentContainer  uncomment this out*/ 
}
table ul{
list-style:none;
}
td{
padding:0 15px 0 0;
}
ul{
list-style-position: outside;
	list-style-type: none;
}
ol{
list-style-position: outside;
	list-style-type: none;
}


ol.insidelist{
list-style-position: inside;
	list-style-type: decimal;
	margin-left: 10px;
}

ul.insidelist{
list-style-position: inside;
	list-style-type: bullet;
	margin-left: 10px;
}

/*CUSTOM BULLET LIST STYLES*/

ul li#pdf, ul li#video, ul li#excel, ul li#doc, ul li#powerpoint{
list-style:none;
}

li#pdf{
	padding-left: 20px;
	margin-left: 0px;
	margin-bottom: 5px;
	background: url(../images/sys/icon_pdf.gif) no-repeat;
}
li#video{
	padding-left: 20px;
	margin-left: 0px;
	margin-bottom: 5px;
	background: url(../images/sys/icon_video_sm.gif) no-repeat;
}
li#excel{
	padding-left: 20px;
	margin-left: 0px;
	margin-bottom: 5px;
	background: url(../images/sys/icon_xls.gif) no-repeat;
}
li#doc{
	padding-left: 20px;
	margin-left: 0px;
	margin-bottom: 5px;
	background: url(../images/sys/icon_word.gif) no-repeat;
}
li#powerpoint{
	padding-left: 20px;
	margin-left: 0px;
	margin-bottom: 5px;
	background: url(../images/sys/icon_ppt.gif) no-repeat;
}
.imagepadding{
padding:0 10px 0;
}

