
    body {background: #fdcffa; color: #9b5de0;}
    a:link {color: #0842b6;}
    a:visited {color: #0842b6;}
    h1 {font-size: 24pt;font-family: 'Footlight MT Light'}
    h2 {font-size: 18pt; font-family: arial}
    h3 {font-size: 14pt; font-family: arial}
	
		
    button,
    input,
    textarea,
    select{
        outline: none !important;
        box-shadow: none !important;
		border-radius: 1.2rem;
		color: #9b5de0;
    }
	
	select {
		
	}

    .width-30 {
        width: 30%;
    }

    .width-100 {
        width: 100%;
    }

    ul {
        margin:0;
        padding-left:25px;
        list-style-type:none;
    }

    ul.dash {
        list-style-type: '- ';
    }

    ul.circle {
        list-style-type: circle;
    }

    ul li {
        line-height: 22px;
        margin-bottom: 5px;
    }

    .list-style-none {
        list-style-type: none;
    }

    .padding-right-15 {
        padding-right: 15px;
    }

    .textbox, .select {
        padding: 10px;
        width: 100%;
        border: 1px solid #9b5de0;
    }

    .button {
        font-family: Arial, Helvetica, sans-serif;
        background-color: #1863a5;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 1.2rem;
        cursor: pointer;
		opacity: 1;
		transform: translateY(0);
		transition: transform 0.3s, opacity 0.2s ease-in-out;
    }

    .button:hover {
        background-color: #248ef1;
        color: #fff;
		opacity: 0.9;
		transform: translateY(-4px);
		box-shadow: 0 20px 38px rgba(0,0,0,0.16);
    }

    .row {
        margin-bottom: 2rem;
    }

    .left {
        width: 20%;
    }

    .middle {
        width: 60%;
        border-left: 1px solid #15318e;
        border-right: 1px solid #15318e;
    }

    .border-bottom {
        border-bottom: 1px solid #15318e;
    }

    .border-left {
        border-left: 1px solid #15318e;
    }

    .middle .section {
        margin: 0 auto;
        padding-left: 2rem;
        width: 60%;
    }

    .right {
        width: 20%;
    }

    .title {
		font-family:'Footlight MT Light';
        display: block;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }
    
    .table {
    	width: 60%;
    	margin: 0 auto;
    	border: 1px solid green;
    }
        
    .table td {
		color: #9b5de0;
    	padding: 15px;
    }
    
    .text-center {
    	text-align:center;
    }
    
    .img {
    	object-fit:cover;
    	width:100%;
    	height: auto;
    }