<!DOCTYPE html>
<html lang="en">
<head>
	<title>DCA Security - Request Rejected</title>
	<style>
	body {
		margin: 0;
		background: #014e77;
		color: #fff;
		font-family: sans-serif;
		width:100%;
                
	}
	#main {
                min-height:25em;
		background: #fff;
		color: black;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	h2 {
		font-size: 2em;
	}
	#header {
    border-bottom: solid 4px #cc730b;
    background: #014e77;
    color: white;
		z-index: 10000;
		display: flex;
		justify-content: center;
		flex-direction: row;
		width: 100%;
		height: 89px;
	}
	#main img {
		align-self: center;
	}
	#footer {
		height: 15vh;
		text-align: center;
		background-color: #014e77;
		position: absolute;
		text-transform: uppercase;
		width: 100%;
		font-size: 1em;
	}
	.logoDCASearch {
		max-height: 85px;
	}
	.group {
      margin-left: -15px;
      margin-right: -15px;
    }
	.half {
      position: relative;
      min-height: 1px;
      padding-left: 15px;
      padding-right: 15px;
    }
    @media (min-width: 768px) {
      .half {
        float: left;
        width: 46%;
      }
    }
    .cleaner {
        clear: both;
        height: 2px;
        font-size: 1px;
        border: none;
        margin: 0;
        padding: 0;
        width: auto;
        float: none;
    }
	</style>
</head>
<body>
	<header id="header">

			<img src="https://www.dca.ca.gov/images/template-logo.png" alt="DCA ogo" class="logoDCASearch">

	</header>
	<div id="main" >
	<div class="group">
		<div class="half" style="text-align: center;"><img src="https://www.dca.ca.gov/images/template-logo.png" alt="DCA logo" style="width: 50%;"/></div>
		<div class="half" style="text-align:left !important">

                 <h4 style="font-weight: bold;" id="todays_date"><strong></strong></h4>

                 <p>The requested URL was rejected. Please consult with your administrator.</p>
                 <p>Your support ID is: 5816635573120177011</p>

         </div>
	</div>



	</div>
	<div id="footer">
    <p class="copyright">©2021 Department of Consumer Affairs</p>
  </div>
  			<script>
					document.getElementById("todays_date").innerHTML = formatAMPM();

                    function formatAMPM() {
                    var d = new Date(),
                        minutes = d.getMinutes().toString().length == 1 ? '0'+d.getMinutes() : d.getMinutes(),
                        hours = d.getHours().toString().length == 1 ? '0'+d.getHours() : d.getHours(),
                        ampm = d.getHours() >= 12 ? 'pm' : 'am',
                        months = ['January','February','March','April','May','June','July','August','September','October','November','December'],
                        days = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'];
                    return months[d.getMonth()]+' '+d.getDate()+', '+d.getFullYear();
                    }
			</script>
</body>
</html>