@charset "UTF-8";
/* CSS Document */

@font-face{
	font-family:majesti_banner;
	src: url(majesti_banner_bold.otf);
}

/*NAV Heading*/
ul {
	position: fixed;
	top: 0;
	width: 100%;
    list-style-type:none;
	font-size: "3px";
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
	font-family: "majesti_banner";
    padding:14px;
    text-decoration: none;
}

li a:hover {
    background-color: #111111;
}

/* Menu */
table {
    border-collapse: collapse;
    width: 100%;
	color: #8a8a8d;
	text-align: center;
}

th, td {
    padding-left: 10px;
	padding-right: 100px;
	padding-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/*Contact Us Page Form*/
input[type=text], select, textarea {
    width: 450px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] 
	{
    background-color: #333333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #111111;
}

.container {
    margin: 0 auto;
	width: 450px;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}


/*Order to go Page*/
div.order {
    background-color: black;
    color: white;
    margin: 20px 0 20px 0;
    padding: 20px;
} 

/*Specials for Order to go Page*/
.floating-box {
    display: inline-block;
    width: 150px;
    height: 75px;
    margin: 10px;
    border: 2px solid #d7e4c2;
}

.after-box {
    border: 3px solid red; 
}