#logo {
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: 16px;
	margin-bottom: 16px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0px;
	width: 128px;
	height: 128px;
}

#nav {
	background: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#nav #menu {
	display: block;
	text-align: center;
	padding: 16px;
}
#nav #menu li {
	display: inline-block;
	width: 128px;
	text-align: center;
	margin-left: 16px;
	margin-right: 16px;
    list-style-type: none;

}
#nav #menu li a {
	color: rgba(0,0,0,.6);
	padding: 4px;
	padding-left: 16px;
	padding-right: 16px;
    border-color:white;
    border-radius: 5px;

}


#nav #menu li a:hover {
	color: black;
    border:1px solid transparent;
}

#nav #menu li a:active {
	color: rgba(0,0,0,.75);
	background: rgba(0,0,0,0.1);
	border-radius: 5px;
    color:white;

}

#nav #menu li.sel a {
	background: black;
    border:1px solid black;
	color: white;
	border-radius: 5px;
}

/* ******** Each Link Gets a Color ******** */

/*Normal*/

#nav #menu li a[href="/"]:hover {
    border-color: #d11f04;
}

#nav #menu li a[href="/gallery.html"]:hover {
    border-color:#8ad104;
}

#nav #menu li a[href="/blog.html"]:hover {
    border-color: #2da9fb;
}

#nav #menu li a[href="/about.html"]:hover {
    border-color: #c004b2;
}

#nav #menu li.sel a:hover {
    border:1px solid black;
}
/*Active*/

#nav #menu li a[href="/"]:active {
    background-color: #d11f04;
    border-color: #c11502;
    text-shadow: 0px 1px 0px #c11502;
}

#nav #menu li a[href="/gallery.html"]:active {
    background-color:#8ad104;
    border-color:#74c102;
    text-shadow: 0px 1px 0px #74c102;
}

#nav #menu li a[href="/blog.html"]:active {
    background-color: #2da9fb;
    border-color: #1889f5;    
    text-shadow: 0px 1px 0px #1889f5;
}

#nav #menu li a[href="/about.html"]:active {
    background-color: #c004b2;
    border-color: #ab02a1;
    text-shadow: 0px 1px 0px #ab02a1;
}

/*
Selected

#nav #menu li.sel a[href="index.html"] {
    background-color: df2608;
}

#nav #menu li.sel a[href="gallery.html"] {
    background-color:64df08;
}

#nav #menu li.sel a[href="blog.html"] {
    background-color: 229af8;
}

#nav #menu li.sel a[href="about.html"] {
    background-color: 9e08d0;
}*/

/* ******** Mobile Stuff ******** */
@media (max-device-width: 720px), (max-width: 720px) {
    #nav {
        width:100%;
        padding:0px;
        margin:0px;
    }
    #nav #menu {
        padding-left:0px;
        padding-right:0px;
    }   
    #nav #menu li {
        width: 20%;
        margin:0px;
        padding:0px;
}