@charset "utf-8";
/* CSS Document */
 
html,
html * {
     padding: 0;
     /*margin: auto;*/
     box-sizing: border-box;
     font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}


 /**/

body {
     font-family: arial, sans-serif;
     font-size: 16px;
     background-color: #FFFFFF;
     margin: auto;  
     padding: 0px 20px;
}


          p.text {
              color: #003366;
          } 

          p.text-justify {
                 display: flex;
                 justify-content: center;
               color: #003366;
          }

          p.text-left {
                 display: flex;
                 justify-content: left;
               color: #003366;
          }

          ul {
               list-style-type: none;
          }
          li.toc {
               font-size: 18px;
          }


/* 
header {
     padding:0px 20px 0px 20px;
}
*/

.header-width {
     align-content: center;
     width: 100%;
}


.style-logo {
     margin-left: auto;
     margin-right: auto;
     display: block; 
}

.style-nav ul {
     list-style-type:none;
}

.style-nav ul li a {
     text-decoration:none;
     list-style-type:none;
     color: #B30A0D;
     text-align: center;
     display: block;
     text-transform: uppercase;
     font-weight: bold;
     padding: 0px 12px;
}





.info-box-green {
     background-color: #E8F8E9;
     color: #B03739;
     padding: 30px 20px 60px;
     text-align: center;
}


.info-box-red {
     background-color: #E6E5EC;
     color: #B03739;
     padding: 30px 20px 60px;
     text-align: center;
}






.footer-text {
     font-size: 13px;
     margin-bottom: 20px;
}


.row:before, .row:after {
     content: "";
     display: table;
}

.row:after {
     clear: both;
}



.col {
     width: 100%;
     
}




/*TABLET VIEW */

@media (min-width: 768px){
     
     .style-nav ul li {
          display: inline-block;
          list-style-type:none;
     }
     
     .style-nav ul {
          text-align: center;
          list-style-type:none;
     }
     
     .col-md-one-half {
          width: 50%;
     }
     
     .col {
          float: left;
          padding: 0px 7px 14px;
     }
	
     
}



/*Desktop VIEW*/

@media (min-width: 1024px){
     
     	
     body {
          max-width: 1200px;
     }
     .style-logo {
          float: center;
     }
     
     .style-nav {
          float: center;
     }
     
     
     .col-lg-one-sixth {
          width: 16%;
     }
	
}




