<style type="text/css">
pre 
{
	color: #000000;
	background-color: #FFFFFF;
	font-family: Courier;
}

table
{
    border-style: solid;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
	background-color: #edeef0; 
	font-family: Courier;
	width:80%;
}

.caption
{
    font-size: 18px;         
    font-weight: normal;
}

.th
{
    text-align: left;
    margin-left: auto;
    margin-right: auto;
	color: #000000; 
	background-color: #bbbdbf; 
	font-family: Courier;
	width:80%;
    
}

.tr
{
    margin-left: auto;
    margin-right: auto;
    /* shorthand: margin: 0 auto; */
    /*border-collapse: collapse; */
	color: #000000; 
	background-color: ##e1e4e8; 
	font-family: Courier;
	width:80%;
}

.title
{
    margin-top:100px;
}

.MainText
{
    font-family: Courier;
    margin-bottom:20px;
}

.listItem
{
    background-color: #FFFFFF;
    font-family: Courier;
}

.listItem .bom 
{
  list-style-type: none;
}

.bom
{
    background-color: #E9E8E2;
    font-family: Arial;
}

.box
{
    position: relative;
    display: block;       /* was inline-block */
    margin-left: auto;
    margin-right: auto;   /* centers the div */
    width: fit-content;   /* shrinks to image size */
}

.box img
{
    display: block;
}

.design
{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top:auto;
        margin-bottom:50px;
}

.postText
{
    position: absolute;
    width: 100%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;            /* Text color */
    font-size: 18px;         /* Increase as needed */
    font-weight: normal;
    text-align: center;
    font-family: Courier;
    padding: 20 20px;
    pointer-events: none;    /* Allows clicks to pass through to the image if needed */    
}

.flowchart_
{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top:10px;
}

.flowchart
{
        display: block; /* Images are inline by default; convert to block */
        margin-left: auto;
        margin-right: auto;
}

.HeaderBoxText
{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;           
    font-size: 24px;         
    font-weight: bold;
    text-align: center;
    font-family: Courier;
    pointer-events: none;    /* Allows clicks to pass through to the image if needed */
 }

.MainBoxText
{
    position: absolute;
    width: 98%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;            /* Text color */
    font-size: 18px;         /* Increase as needed */
    font-weight: normal;
    text-align: center;
    font-family: Courier;
    padding: 20 20px;
    pointer-events: none;    /* Allows clicks to pass through to the image if needed */    
}

.literal 
{
	color: #0000e6;
}

.preprocessor 
{
	color: #0000FF;
}

.ST4 
{
	color: #009900;
}

.ST2 
{
	color: #ce7b00;
	background-color: #FFFFFF;
}

.ST3 
{
	font-family: Courier; 
	font-weight: bold;
	font-size: 14px;
}

.ST0 
{
	color: #009933; 
	background-color: #e9eff8;
}

.ST1 
{
	color: #000000; 
}

.comment 
{
	color: #009933;
}

.string 
{
	color: #ce7b00;
}

.pragma-omp-keyword-directive 
{
	color: #2e92c7;
}

body 
{
	color: #000000;
	background-color: #ffffff;
	font: 100%/1.4 Arial;
	margin: 0;
	padding: 0;
}

ul, ol, dl 
{ 
	padding: 0;
	margin: 0;
	margin-bottom: 20px; 
}

p
{
    font-size: 18px;
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	text-align:justify;
}

h1, h2, h3, h4, h5, h6 
{
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	text-align:center;
}

a img 
{
	border: none;
}

a:link 
{
	color: #000000;
	text-decoration:none;
}

a:visited 
{
	color: #000000;
	text-decoration:none;
}

a:hover, a:active, a:focus 
{ 
	text-decoration: none;
	color: #A31818;
}

.top_image
{
  display: block;
  margin-left:auto;
  margin-right: auto;
  padding-bottom:20px;
}

.container
{
	width: 960px;
	background-color:#FFF;
	max-width: 960px;
	margin: auto;
	overflow: hidden; 
}

.sidebar
{
	float: left;
	width: 180px;
	background-color:#FFFFFF;
	padding-bottom: 10px;
	padding-top: 232px;
}

.content
{

	padding: 10px 0;
	width: 780px;
	float: left;
	margin: auto;
}

.content ul, .content ol 
{ 
	padding: 0 15px 15px 40px; 
}

ul.nav 
{
	list-style: none; /* this removes the list marker */
	border-top: 0px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}

ul.nav li 
{
	border-bottom: 1px solid #666; /* this creates the button separation */
}

ul.nav a:visited
{
	padding: 5px 5px 5px 15px;
	display: block;
	width: 160px;
	text-decoration: none;
	background-color:#CCCCCC;
}

ul.nav a
{ /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #CCCCCC;
}

ul.nav a:active
{
	background-color:#CCCCCC;
	color:#000;	
}

ul.nav a:focus
{
	background-color:#CCCCCC;
	color:#000;
}

ul.nav a:hover
{ /* this changes the background and text color for both mouse and keyboard navigators */
	background-color:#FFF;
	color:#000;
}

.fltrt 
{  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft 
{ /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.clearfloat 
{ /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.floated_image
{
	float:right;	
}

.counter
{
	text-align:center;
}

.disclaimer
{
	font-size: 10px;
	
}

</style>
