﻿/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

html, body{
    /*width:125%;*/
    margin:0px auto;
    padding:0px;
    width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
}

.row{
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.container{
    margin: 0px auto !important;
}

#the-canvas{
    border: 1px solid black;
     margin: 0px auto; 
    /* width: 100%; */
    /* height: unset; */
    margin-bottom: 32px;
}

/*slider*/
.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 20px;
}
.onoffswitch-inner {
    text-align: left;
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "English";
    padding-left: 6px;
    background-color: #345AC2; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "中文";
    padding-right: 19px;
    background-color: #d9534f; color: #FFFFFF;
    text-align: right;
}
.onoffswitch-switch {
    display: block;
    width: 18px;
    height: 18px;
    margin: 8px 10px 7px 0px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 56px;
    border: 2px solid #999999;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
    /*display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 56px;
    border: 2px solid #999999; border-radius: 20px;
    transition: all 0.3s ease-in 0s;*/ 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}

.captcha {
    background-image: url(../images/captcha.jpg);
    text-align: center;
    border: none;
    font-weight: bold;
    font-family: Modern;
    font-size: 1.6em !important;
}

#veil {
	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width:100%;
	cursor: not-allowed;
	filter: alpha(opacity=60);
	opacity: 0.6;
	background: #000000;
}
#feedLoading {    
    margin: auto;
	height:100%;
	width:100%;
    text-align: center;
    padding: 0px; 
    top:150px;
    left:0;
    position: absolute;
     -webkit-animation: anim 1s infinite;
    animation: anim 1s infinite;
}
@-webkit-keyframes anim {
    from {-webkit-transform: rotateY(0deg);}
    to {-webkit-transform: rotateY(360deg);}
}

@keyframes anim {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
}