@-webkit-keyframes CLOCKWISE {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes ANTICLOCKWISE {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(-360deg);
    }
}
@-moz-keyframes CLOCKWISE {
    from{
        -moz-transform: rotate(0deg);
    }
    to{
        -moz-transform: rotate(360deg);
    }
}
@-moz-keyframes ANTICLOCKWISE {
    from{
        -moz-transform: rotate(0deg);
    }
    to{
        -moz-transform: rotate(-360deg);
    }
}
@keyframes CLOCKWISE {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes ANTICLOCKWISE {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(-360deg);
    }
}

body {
    background: #333333;
   font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
   font-weight: 300;
   min-width: 980px;
}

.structure {
    width: 960px;
    margin: 0 auto;
}

.align-left {
    float: left;
}

.align-center {
    margin: 0 auto;
}

.align-right {
    float: left;
}

.column {
    float: left;
}

.column-onethird {
    width: 320px;
}

.column-twothird {
    width: 620px;
    margin: 0 20px 0 0;
}

#header {
    background: #3c3e3c url('../images/header-bg.png') no-repeat 50% 50%;
    border-bottom: 1px solid #000000;
    height:93px;
}

#header .structure {
    padding: 30px 0;
}

#logo {
    overflow: hidden;
    float: left;
    width: 322px;
    height: 42px; /* same height as the social icons */
    background: transparent url('../images/logo.png') no-repeat 50% 50%;
    text-indent: -9999em;
    margin-top: 0;
}

#logo a {
    display: block;
    width: 100%;
    height: 100%;
}

#nav {
    float: right;
    margin: 5px 20px 0 0;
    list-style: none;
}

#nav li {
    float: left;
    padding: 0 0 5px;
    margin: 0 0 0 12px;
    border-bottom: 3px solid #707070;
}

#nav li.selected {
    border-color: #EEEEEE;
}

#nav li a {
    font-size: 18px;
    text-decoration: none;
    color: #FFFFFF;
}

#social {
    float: right;
    margin: 0;
    list-style: none outside none;
}

#social .social {
    float: left;
    margin: 0 0 0 6px;
}

#social .social:first-child {
    margin-left: 0;
}

#social .social a {
    overflow: hidden;
    display: block;
    width: 37px;
    height: 37px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 0;
    text-indent: -9999em;
}

#social .social a:hover {
    background-position: 50% -37px;
}

#social .social.social-facebook a {
    background-image: url('../images/social-facebook.png');
}

#social .social.social-twitter a {
    background-image: url('../images/social-twitter.png');
}

#social .social.social-github a {
    background-image: url('../images/social-github.png');
}

#splash {
    background: #FFFFFF url('../images/splash-bg.png') repeat-x 50% 0;
}

#splash .top,
#splash .bottom {
    width: 100%;
    height: 20px;
    background-repeat: repeat-x;
    background-position: 50% 0;
    background-color: transparent;
}

#splash .top {
    background-image: url('../images/splash-top.png');
}

#splash .bottom {
    background-image: url('../images/splash-bottom.png');
}

#splash .structure {
    height: 415px;
    padding: 40px 0;
}

#minisplash {
    background: #FFFFFF url('../images/splash-bg.png') repeat-x 50% 0;
}

#minisplash .top,
#minisplash .bottom {
    width: 100%;
    height: 20px;
    background-repeat: repeat-x;
    background-position: 50% 0;
    background-color: transparent;
}

#minisplash .top {
    background-image: url('../images/splash-top.png');
}

#minisplash .bottom {
    background-image: url('../images/splash-bottom.png');
}

#minisplash .structure {
    padding: 40px 0;
}

#minisplash h1 {
    font-size: 42px;
    margin: 0 0 15px;
    font-weight: 300;
}

#minisplash p {
    font-size: 28px;
    color: #666666;
}

#welcome {
    float: left;
    width: 475px;
}

#welcome h2 {
    font-size: 42px;
    color: #333333;
    margin: 10px 0 5px;
    font-weight: normal;
}

#welcome h3 {
    font-size: 36px;
    color: #666666;
    margin: 0 0 35px;
    font-weight: normal;
}

#welcome p {
    font-size: 22px;
    color: #666666;
    line-height: 1.5em;
    text-align: justify;
}

#welcome #mailingList{
    margin-top: 35px;
}
#welcome #jointUs{
    margin-bottom: 5px;
    font-size: 14px;
}
#demonstration {
    float: right;
    position: relative;
    width: 400px;
    height: 450px;
}

#demonstration .diagram {
    position: absolute;
    top: 20px;
    left: 70px;
}

#demonstration .cog {
    position: absolute;
}

#demonstration .cog-small {
    top: 180px;
    left: 0px;
    -webkit-animation: ANTICLOCKWISE 30s linear infinite;
    -moz-animation: ANTICLOCKWISE 30s linear infinite;
    animation: ANTICLOCKWISE 30s linear infinite;
}

#demonstration .cog-large {
    top: 30px;
    right: 0;
    -webkit-animation: CLOCKWISE 30s linear infinite;
    -moz-animation: CLOCKWISE 30s linear infinite;
    animation: CLOCKWISE 30s linear infinite;
}

#who {
    background-color: white;
    border-top: 1px solid #DDDDDD;
    background-image: url('../images/who-bg.png');
    background-size: cover;
}

#who .structure {
    padding: 60px 0;
}

#who .bottom {
    width: 100%;
    height: 2px;
    background: transparent url('../images/who-bottom.png') no-repeat 50% 0;
}

#who .who {
    float: left;
    width: 220px;
    padding: 0 10px;
}

#who .who a{
    color: inherit;
}

#who .who a:hover{
    color: #333;
}

#who .who.who-banks {
    width: 230px;
    padding-left: 0;
}

#who .who.who-developers {
    width: 230px;
    padding-right: 0;
}

#who .who.who-society {
    width: 230px;
    padding-right: 0;
}

#who .who.who-society {
    width: 230px;
    padding-right: 0;
}

#who .who h4 {
    font-size: 22px;
    font-weight: normal;
    line-height: 26px;
    color: #000000;
    padding: 0 0 0 36px;
    margin: 0 0 15px;
    background-color: transparent;
    background-position: 0 50%;
    background-repeat: no-repeat;
}

#who .who.who-banks h4 {
    background-image: url('../images/who-banks.png');
}

#who .who.who-developers h4 {
    background-image: url('../images/who-businesses.png');
}

#who .who.who-customer h4 {
    background-image: url('../images/who-society.png');
}

#who .who.who-society h4 {
    background-image: url('../images/who-society.png');
}
#who .who p {
    font-size: 16px;
    color: #333333;
    line-height: 1.4em;
}

#who .video {
    padding-top:50px;
    clear:both;
}

#press {
    background: #FFFFFF;
}

#press .structure {
    padding: 70px 10px 70px 0;
    width: 970px;
}

#press .photos {
    float: right;
    width: 472px;
    margin: 0 20px 0 0;
}

#press .photos .photo {
    float: left;
    width: 200px;
    height: 200px;
    padding: 10px 18px 26px;
    background: transparent url('../images/press-photo-bg.png') no-repeat 50% 0;
}

#press .photos .photo img {
    float: left;
    width: 100%;
    height: 100%;
}

#press .reports {
    float: left;
    width: 450px;
}

#press .reports h4 {
    font-size: 40px;
    font-weight: normal;
    color: #333333;
    margin: 0 0 20px;
}

#press .reports p {
    font-size: 22px;
    line-height: 1.4em;
    color: #666666;
    margin: 0 0 30px;
}

.reports.events .featuredlink:nth-child(n+9), .reports.press .featuredlink:nth-child(n+9) {
    display: none;
}

.plugin_twitter {
    width:400px;
}

#main {
    background: white;
    text-align: justify;
}

#main .structure {
    padding: 30px 0 40px;
    width: 960px;
    font-size: 18px;
    line-height: 1.5em;
}

#main h1,
#main h2,
#main h3,
#main h4,
#main h5,
#main h6 {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    margin: 0 0 25px;
}

#main h1 {
    font-size: 32px;
}

#main h2 {
    font-size: 28px;
}

#main h3 {
    font-size: 24px;
}

#main h4 {
    font-size: 22px;
}

#main h5 {
    font-size: 20px;
}

#main h6 {
    font-size: 18px;
}

#main p {
    margin: 0 0 25px !important;
}

#main .picture {
    display: inline-block;
    margin: 5px;
}

#main .picture img {
    display: inline-block;
    width: 300px;
}

#main form input[type="text"],
#main form textarea {
    width: 90%;
}

#partners {
    background: #FFFFFF;
}

#partners .structure {
    padding: 60px 0;
    background: transparent url('../images/partners-bg.png') no-repeat 50% 0;
    text-align: center;
}

#partners h4 {
    font-size: 40px;
    color: #333333;
    margin: 0 0 30px;
}

#partners p,
#partners p a {
    color: #666666;
}

#partners p {
    font-size: 22px;
    line-height: 1.4em;
    margin: 0 0 35px;
}

#partners p a,
#partners p a:link,
#partners p a:active,
#partners p a:visited,
#partners p a:hover {
    text-decoration: underline;
    -webkit-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
}

#partners p a:hover {
    color: #333333;
}

#partners .partners {
    margin: 40px 0 0;
}

#partners .partners a,
#partners .partners a img {
    display: inline-block;
}

#partners .partners a {
    margin: 0 30px;
}

#footer {
    background: #333333;
}

#footer .top {
    width: 100%;
    height: 32px;
    background: #FFFFFF url('../images/footer-top.png') repeat-x 50% 100%;
}

#footer .structure {
    padding: 50px 0;
    text-align: center;
}

#footer h6 {
    overflow: hidden;
    display: inline-block;
    width: 255px;
    height: 20px;
    background: transparent url('../images/footer-logo.png') no-repeat 0 0;
    margin: 0 0 30px;
    text-indent: -9999em;
}

#footer p {
    clear: both;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    margin: 0 0 5px;
}

#footer p a.tesobe {
    overflow: hidden;
    display: inline-block;
    width: 70px;
    height: 11px;
    background: transparent url('../images/tesobe.png') no-repeat 0 0;
    text-indent: -9999em;
}

#footer p small {
    font-size: 14px;
    color: #AAAAAA;
}

.featuredlink {
    padding: 0 0 20px 36px;
    background: transparent url('../images/reports-item.png') no-repeat 0 0;
    line-height: 1.3em;
    font-weight: normal;
}

.featuredlink a,
.featuredlink a:link,
.featuredlink a:active,
.featuredlink a:visited,
.featuredlink a:hover {
    font-size: 22px;
    line-height: 1.2em;
    color: #2A9B7B;
    text-decoration: none;
    -webkit-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
}

.featuredlink a:hover {
    color: #1f725a;
}

.featuredlink small {
    font-size: 14px;
    color: #666666;
}

#footer #links a
{
    color : #aaa;
}

#footer #links a:hover
{
    color : #fff;
}

.plugin_video {
    margin-bottom:30px;
}

.app-store-item {
    margin-bottom: 42px;
    border:1px solid #ebebeb;
    padding: 20px;
    background-color: #fbfbfb;
    -moz-box-shadow: 0 5px 5px -3px #b5b5b5;
    -webkit-box-shadow: 0 5px 5px -3px #b5b5b5;
    box-shadow: 0 5px 5px -3px #b5b5b5;
}

.app-store-item div{
    display: inline-block;
    vertical-align: top;
}

.app-store-content {
    width: 681px;
    margin-right:10px;
}

.app-store-image {
    width:222px;
    height:222px;
    margin-top:52px;
}

.app-store-image a {
    display:inline-block;
}

.app-store-image img {
    padding: 10px;
    border: 1px solid #d9d9d9;
    width:200px;
    height:200px;
}

.btn {
  display: inline-block;
  *display: inline;
  padding: 4px 12px;
  margin-bottom: 0;
  *margin-left: .3em;
  font-size: 14px;
  line-height: 20px;
  *line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  *background-color: #e6e6e6;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #bbbbbb;
  *border: 0;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #a2a2a2;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

.btn:active,
.btn.active {
  background-color: #cccccc \9;
}

.btn:first-child {
  *margin-left: 0;
}

.btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
  /* Buttons in IE7 don't get borders, so darken on hover */

  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active,
.btn:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-color: #e6e6e6;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

textarea, input[type="text"], input[type="email"] {
    background-color: #FFF;
    border: 1px solid #CCC;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    display: inline-block;
    height: 20px;
    padding: 4px 6px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    vertical-align: top;
}

textarea {
    height:auto;
}


.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */


.report .form {
	width: 100%; /* should be in two-column layout! */
	background-color: #333;
	color: #fff;
	padding: 20px;
}


.report .form .controls {
	margin-bottom: 20px;
}
.report .form input {
	width: 95% !important;
	margin-bottom: 0;
}
.report .form input[type="submit"] {
	background-image: none;
	background-color: #51b265;
	border-color: #6c7;
	color: #fff;
	margin-top: 20px;
	width: 100% !important;
}
