html, body {
	margin: 0;
	padding: 10px 1%;
	background: #f9f9f9;
	color: #333;
	font-family: "Segoe UI",Arial,sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: none;
}
#menu {
	margin: 0px auto 0px auto;
	padding: 7px;
	background: #f9f9f9;
	font-size: 15px;
	border: 1px solid #dfdfdf;
	border-left-style: none;
	border-right-style: none;
	text-align: center;
	text-shadow: 1px 1px 1px #ddd;
	line-height: 23px;
}
#menu .menu_item {
	padding: 5px;
	color: #0076da;
	margin-top: 0px;
	margin-right: 1px;
	border-radius:11px;
	border:1px solid #f9f9f9;
}
#menu .menu_item:hover {
	color: #db6d16;
	background: #f0f0f0;
	border:1px solid #dfdfdf;
}
.index #index,
.download #download,
.feature #feature,
.feedback #feedback,
.files #files,
.new #new,
.register #register,
.screen #screen
{
	color: #db6d16;
	background: #fff;
	border: 1px solid #dfdfdf;
}
#content {
	margin: auto;
	background: #fff;
	max-width: 100%;
	border-radius: 11px;
	border: 1px solid #dfdfdf;
}
#content_inner {
	margin: auto;
	background: #fff;
	max-width: 840px;
	border-radius: 11px;
}
#content .logo {
	height: 88px;
}
#content .logo .logo_gif {
	max-width: 840px;
	position: relative;
	left: 50%;
	width: 165px;
	height: 57px;
	margin-top: 5px;
	margin-left: -82px;
}
#content .logo .logo_text {
	position: relative;
	width: 100%;
	height: 25px;
	text-align: center;
	margin-left: -2px;
	margin-top: -2px;
	font-size: 19px;
	font-weight: bold;
	font-variant: small-caps;
	color: #ff6329;
	text-shadow: 2px 2px 5px #ccc;
}
#content .logo .photoscape {
	position: relative;
	text-align: right;
	margin-top: -20px;
	margin-right: 3px;
	line-height: 21px;
}
#content .logo .photoscape img {
	max-width: 15%;
	height: auto;
	vertical-align: bottom;
}
#content .title {
	margin: 10px 10px 10px 20px;
	font-size: 22px;
	font-weight: bold;
	text-shadow: 1px 1px 1px #ddd;
}
#content .sidebar {
	margin-top: 10px;
	margin-right: 5px;
	margin-left: 5px;
	width: 200px;
	font-size: 16px;
	float: right;
	text-shadow: 1px 1px 1px #ddd;
}
#content .sidebar-top {
	height: 25px;
}
#content .shortcut {
	float: right;
	font-size: 15px;
	/*font-weight: bold;*/
}
#content .shortcut img {
	vertical-align: middle;
}
#content .icons img {
	vertical-align: top;
}
#content .language {
	float: right;
}
#content .language:hover {
	cursor: pointer;
}
#content .language img {
	vertical-align: top;
}
#content .icon {
	float: left;
	margin-right: 3px;
}
#content .text {
	padding: 5px 20px 10px 20px;
}
#content .list {
	margin-left: 10px;
	text-indent: -10px;
}
#content p {
	margin: 0px;
}
#footer {
}
#footer a {
	color: #333;
	text-decoration: none;
}
#footer a:hover {
	color: #db6d16;
}
#footer .altnav {
	font-size: 14px;
	margin: 5px auto 10px auto;
	line-height: 20px;
	text-align: center;
}
img {
	border: 0;
}
a {
	color: #0076da; 
	text-decoration: none; 
}
a:hover { 
	color: #db6d16;
}
.screenshot {
	padding: 5px;
	border: 1px solid #f58400;
	background: #f6e5d1;
	border-radius: 5px;
	margin-left: auto;
	max-width: 100%;
	height: auto;
}
.screenshot:hover {
	cursor: pointer;
}
.caption {
	font-size: 15px;
}
.note {
	color: #db6d16;
	font-weight: bold;
}
ul {
	margin-left: 0px;
	padding-left: 15px;
}
ul li {
	margin: 10px;
}
.bullet {
	color: #f58400;
	text-shadow: 1px 1px 1px #ddd;
}
.newlogo {
	font-variant: small-caps;
	color: #424242;
	text-shadow: 1px 1px 2px #ffce00;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgb(0, 0, 0);	/* fallback */
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
	animation-name: zoom;
	animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
.modalImage {
	display: none;
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.controls {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}
.control-button, .close-button {
	border: none;
	display: inline-block;
	outline: 0;
	padding: 8px 16px;
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.5);
}
.control-button {
	margin: 0;
	float: left;
}
.close-button {
	position: absolute;
	right: 0;
	top: 0;
}
.control-button:hover {
	color: #000;
	background-color: #ccc;
}
.close-button:hover {
	color: #fff;
	background-color: #f00;
}
.imageInfo {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	padding: 8px 16px;
	color: #fff;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.5);
}
.loading {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 30px;
	transform: translate(-50%, -50%);
}
.spinner {
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #3498db;
	width: 30px;
	height: 30px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
