@charset "utf-8";
/* CSS Document
 *
 * Blue: #0099cc
 *
 * */

@font-face {
	font-family: 'Roboto';
	font-weight: 500;
	font-style: normal;
	src: local('Roboto Medium'), local('Roboto-Medium'), url(media/fonts/roboto.ttf) format('ttf');
}

* {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	color: #666;
	cursor: default;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #000;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover {
	color: #0099cc;
}

p {
	color: #444;
	margin-bottom: 0px;
	margin-top: 0px;
}

img {
	border: none;
}
body {
	overflow-y: scroll;
}
#holder {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
}
#header {
	position: absolute;
	top: 300px;
	left: 0px;
	right: 0px;
	height: 200px;
	text-align: center;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
#header_1, #header_2, #header_3 {
	position: absolute;
	left: 50%;
	right: 0px;
	width: 600px;
	height: auto;
	margin-left: -300px;
	text-align: center;
}
#header_1 {
	display: none;
	top: 30px;
	font-size: 30px;
	color: #AAA;
	left: 50%;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
#header_1_name {
	color: #AAA;
	font-size: 34px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#header_1_name:hover {
	color: #0099cc;
}
#header_2 {
	display: none;
	top: 80px;
	font-size: 24px;
	color: #BBB;
}
#header_3 {
	display: none;
	top: 120px;
	font-size: 26px;
	color: #AAA;
}
#header_3_icon {
	position: absolute;
	left: 170px;
	top: 5px;
	width: 30px;
	height: 30px;
	background-image: url(media/images/logos/windows_100.png);
	background-size: contain;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#header_3_value {
	font-size: 30px;
	color: #666;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#header_3_value:hover {
	color: #0099cc;
}
#seperator {
	display: none;
	position: absolute;
	top: 200px;
	left: 0px;
	right: 0px;
	height: 130px;
	background-image: url(media/images/backgrounds/header_back.jpg);
	background-repeat: repeat-x;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#tweet {
	font-size: 10px;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
	cursor: pointer;
}

#tweet_container {
	position: absolute;
	opacity: 0;
	top: 140px;
	left: 100px;
	width: 200px;
	height: 60px;
	padding: 6px;
	border-style: solid;
	border-color: #0099CC;
	border-width: 1px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#tweet_icon {
	position: absolute;
	top: 118px;
	opacity: 0;
	left: 110px;
	width: 25px;
	height: 25px;
	background-image: url(media/images/icons/tweet.jpg);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

#content {
	display: none;
	position: absolute;
	top: 200px;
	left: 0px;
	right: 0px;
	height: auto;
	text-align: center;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
#content_navigation {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 600px;
	height: auto;
	margin-left: -300px;
	text-align: center;
}
.navitem {
	height: 60px;
	width: 60px;
	margin-right: 20px;
	margin-left: 20px;
	float: left;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #DDD;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 1);
}
#content_pages {
	position: absolute;
	top: 120px;
	left: 0px;
	right: 0px;
	height: 500px;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
.content_header {
	font-size: 18px;
	color: #0099CC;
}
.content_screenshot {
	height: 200px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.content_item {
	position: absolute;
	left: 50%;
	width: 250px;
	height: 185px;
	background-color: #eee;
	-moz-box-shadow: inset 0 0 2px #fff;
	-webkit-box-shadow: inset 0 0 2px #fff;
	box-shadow: inner 0 0 2px #fff;
    outline: 1px solid #cccccc;
}
.description {
	position: absolute;
	top: 420px;
	left: 50%;
	width: 800px;
	margin-left: -400px;
	text-align: justify;
}
.item_screen_frame {
	position: absolute;
	left: 7px;
	right: 7px;
	top: 7px;
	bottom: 30px;
	background-color: #fff;
	-moz-box-shadow: 0 0 2px #fff;
	-webkit-box-shadow: 0 0 2px #fff;
	box-shadow: inner 0 0 2px #fff;
    outline: 1px solid #cccccc;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.item_title {
	position: absolute;
	left: 7px;
	right: 7px;
	top: 162px;
	bottom: 0px;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.screen_overlay {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 250px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.7);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.overlay_title {
	color: #fff;
	margin-top: 6px;
	margin-left:5px;
	text-align: left;
	font-size: 14px;
}
.overlay_icon {
	position: absolute;
	right: 3px;
	top: 3px;
	width: 22px;
	height: 22px;
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.icon_windows {
	background-image: url(media/images/logos/windows_32.png);
}
.icon_android {
	background-image: url(media/images/logos/android_32.png);
}
.icon_blackberry {
	background-image: url(media/images/logos/blackberry_32.png);
}
.icon_apple {
	background-image: url(media/images/logos/apple_32.png);
}
.icon_web {
	background-image: url(media/images/logos/html5_32.png);
}
.item_left {
	margin-left: -400px;
}
.item_center {
	margin-left: -125px;
}
.item_right {
	margin-left: 150px;
}
.item_row_1 {
	top: 1px;
}
.item_row_2 {
	top: 210px;
}
#me {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
.product_website {
	opacity: 0;
	cursor: pointer;
	position: relative;
	width: 190px;
	height: 60px;
	left: 50%;
	margin-left: -95px;
	margin-top: 0px;
	padding-top: 40px;
	font-size: 20px;
	background-color: rgba(255,255,255,0.9);
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.9);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.9);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.content_downloads {
	font-size: 18px;
	color: #AAA;
}
.content_page {
	position: absolute;
	top: 0px;
	left: 50%;
	height: 500px;
	width: 1000px;
	margin-left: 1000px;
	color: #444;
	text-align: center;
	overflow-x: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#copyright {
	text-align: center;
	height: 20px;
	background-color: #fff;
}
#footer {
	display: none;
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 60px;
}
#footer_gradient {
	height: 40px;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.social_icon {
	width: 48px;
	height: 48px;
	border: none;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.social_icon:hover {
	margin-left: -10px;
}
.rotate {
	transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	-o-transform: rotate(5deg);
	-ms-transform: rotate(5deg);
	transform: rotate(5deg);
	-webkit-transform: rotate(5deg);
}
.preload {
	display: none;
}
