/* unvisited link */
a:link {
    	color: blue;
}

/* visited link */
a:visited {
    	color: blue;
}

/* mouse over link */
a:hover {
    	color: hotpink;
}

/* selected link */
a:active {
    	color: blue;
}

* {
    	max-width: 750px ;
}
li{
    	margin : 10px 6px ;
}

body {
	counter-reset: h1;
}

/*
h2:before{
	counter-increment: h2;
	content : counter(h2) ".\0000a0\0000a0";
}

h3:before {
        counter-increment: h3;
        content: counter(h2) "." counter(h3) ".\0000a0\0000a0";
}
h4:before{
	content: counter(h2) "." counter(h3) "." counter(h4) ".\0000a0\0000a0";
	counter-increment : h4;
}
*/

h1{
	counter-reset: h2;
	text-align:center;
	color: white;
       	background-color: #00254c;
       	padding-left: 0px ;
       	padding-top: 5px ;
       	padding-bottom: 5px ;
       	border-radius: 10px;
}

h2 {
    	counter-reset:h3 ;
    	color: #00254c;
    	background-color: #e5e5e5 ;
    	padding-left: 20px ;
    	padding-top: 2.5px ;
    	padding-bottom: 2.5px ;

    	border-radius: 10px;
}

h3 {
    	counter-reset:h4 ;
    	color: #00254c;
    	background-color: #f0f0f0 ;
    	padding-left: 20px ;
    	padding-top: 2.5px ;
    	padding-bottom: 2.5px ;
    	border-radius: 10px;
}

h4 {
    	counter-reset: h5
    	color: #00254c;
    	background-color: #fafafa ;
    	padding-left: 20px ;
    	padding-top: 2.5px ;
    	padding-bottom: 2.5px ;
    	border-radius: 10px;
}

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