p {
    font-family: "Verdana", Verdana, serif;
}


h3 {
    font-family: Arial, Verdana;
	color: #ffffff;
}


div { margin-left: 160px; 
	margin-right: 160px;
}

ol {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    list-style: decimal; /* Keep using default numbering for IE6/7 */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

ol ol {
    margin: 0 0 0 2em;  /*Add some left margin for inner lists */
}


.rounded-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
    background: #273053;
    color: #ffffff;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;   
}

.rounded-list a:hover{
    background: #FFEB00;
	color: #273053;
}

.rounded-list a:hover:before{
    transform: rotate(360deg);  
}

.rounded-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #FFEB00;
	color: #273053;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .2em solid #273053;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}


#modal {
    display: none;
    position: absolute;
    top: 30%;
    left: 30%;
    width: 250px;
    height: 250px;
    padding:10px 10px 0px;
    box-shadow:1px 1px 10px #ababab;
    border-radius:10px;
    background-color: white;
    z-index: 1002;
    text-align:center;
    overflow: auto;
}

#select{
    text-align: left;
    padding: 10px 10px 0px;
}


.button {
		background-color: #273053;
		border: none;
		color: #F5F4FF;
		padding: 10px 40px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		border-radius: 8px;
		width: 70%;
	}

