@charset "utf-8";
body {
	font: 80% Helvetica,Verdana, Arial, sans-serif;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	margin-bottom:80px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
}

body,td,th {
	color: #FF0000;
	font-size: x-large;
	text-align: center;
}
a:link {
	color: #FF0000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FF0000;
}
a:hover {
	text-decoration: none;
	color: #666;
}
a:active {
	text-decoration: none;
	color: #FF0000;
}
.style11 {
	font-size: 10px;
	color: #FFF;
	line-height: 0.5;
}
/* Bootstrap tweaks Uchujin 2017 */

.navbar-toggle {float: none; margin-right: 0; width: 100%; }

.icon-bar { margin-left: auto; margin-right: auto; background-color:black;}

.navbar {
	background-color:black;
	padding-top:10px;

}

.row {
		padding-top:10px;
}
.rowabout {
		padding-top:0px;
}
.container {
		padding-top:10px;
}
.navbar .navbar-collapse {
	float: none;
    text-align: center;
}
.navbar-inverse { border-color: #000000}
.navbar-inverse .navbar-nav>li>a { color: #FF0000}
.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus { background-color: #000000}
.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { color: #999999}
@media (min-width: 768px){
    .navbar-nav{
        float:none;
        margin: 0 auto;
        display: table;
        table-layout: fixed;
    }
}

.rowsocial i {
    width: 20px;
    height: 20px;
    color: #FFF;
    background-color: #000;
    font-size: 14px;
    text-align:center;
    padding-top: 0px;
    border-radius: 10%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}

.rowsocial i:hover {
	border-radius: 10%;
    color: #FFF;
	background-color: #000;
    text-decoration: none;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
