body  { text-align : center;}

table {margin: 0 auto; text-align: left; }


/* ----- Typography ----- */
b {font-weight: 600;}
body {
	font: Verdana, Sans-serif;
        font-family: "Open Sans", Sans-serif;
		font-size: 1.1em;
	line-height: 1.4em;
	color: #444444;
	}

	p {
     text-align: justify;

     -webkit-hyphens: auto;
     -moz-hyphens: auto;
     -ms-hyphens: auto;
     hyphens: auto;
}
	
	
h1 {
	font: Verdana, Sans-serif;
        font-family: "Verdana", Sans-serif;
        font-weight: normal;
	padding-top: 0px;
	padding-bottom: 0px;
        margin: -20px 0px 0px 0px;
	font-size: 2em;
        line-height: 0.2em;
	color:#cc0077
	}

h2 {
	font: Verdana, Sans-serif;
        font-family: "Verdana", Sans-serif;
        font-weight: normal;
        margin: 10px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 10px;
	font-size: 1.5em;
        line-height: 0.2em;
	color:#253580
	}

h3 {
	padding-top: 2px;
    padding-bottom: 0px;
	font: Verdana, Sans-serif;
    font-family: "Verdana", Sans-serif;
	font-style:regular;
        font-weight: normal;
        line-height: 0.4em;
	font-size: 1.5em;
	color:#253580
	}

h4 {
	padding-top: 15px;
padding-bottom: 0px;
	font-style:regular;
        font-weight: normal;
        line-height: 0.4em;
	font-size: 1.3em;
	color:#aa0077
	}
	
ul {
    padding-left: 25px;
}

ul li {
    line-height: 1.5em;
    padding-left: 5px;
}

a:link
{color:#0a60b1; text-decoration:none;}    /* unvisited link */
 a:visited
 {color:#0a60b1; text-decoration:none;} /* visited link */
 a:hover
 {color:#10aa20; text-decoration:none;}   /* mouse over link */
 a:active
 {color:#0a60b1; text-decoration:none;}  /* selected link */
}

a img {border: none;}

img {border: none;}

.rightImg

{

float:right;

padding: 10px 10px 5px 5px;

margin-left: 20px;

}

.leftImg

{

float:left;

padding: 10px 10px 5px 5px;

margin-left: 20px;

}


/* ----- accordion ----- */
   
button.accordion {
	font-size: 1.4em;
    color:#aa0077;
	font-style:regular;
	font-family: "open sans", Sans-serif;
		
    background-color: #eee;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;

}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0; 
    background-color: #eeeeee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}   