@import url(http://fonts.googleapis.com/css?family=Cinzel);/*igual que Trajan*/
@import url(http://fonts.googleapis.com/css?family=Lato:100,300,700);

::-moz-selection {background: #b3d4fc;text-shadow: none;}
::selection {background: #b3d4fc;text-shadow: none;}
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }
html {
  overflow: hidden;
  width: 100%;
  height: 100%;
background-color: #cddff7;
}
body {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
  border: 4px solid #fff;
  border-radius: 4px;
  box-shadow: 0 1px 10px #a7a7a7, 0 1px 0 #fff inset;
  color: #007abc;
  font-family: lato,sans-serif;
  font-size: 1.3em;
  font-weight: 300;
  margin: 10px auto;
  max-width: 60%;
  padding: 30px 10px 25px;
}
.view {
  bottom: 0;
  height: 200px;
  left: 0;
  margin: 0;
  opacity: 0.4;
  position: absolute;
  right: 0;
  top: 45px;
  z-index: 0;
  -webkit-perspective: 0;
          perspective: 0;
}

.plane {
  width: 200px;
  height: 200px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.plane.main {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotateX(60deg) rotateZ(-30deg);
          transform: rotateX(60deg) rotateZ(-30deg);
  -webkit-animation: view 20s infinite linear;
          animation: view 20s infinite linear;
}
.plane.main .plane {
  position: absolute;
  -webkit-animation: move 10s infinite linear reverse;
          animation: move 10s infinite linear reverse;
}
.plane.main .plane .circle {
  -webkit-animation: scale 5s infinite cubic-bezier(0, 1, 1, 1) alternate;
          animation: scale 5s infinite cubic-bezier(0, 1, 1, 1) alternate;
}
.plane.main .plane:nth-child(1) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.plane.main .plane:nth-child(1) .circle {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.plane.main .plane:nth-child(2) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.plane.main .plane:nth-child(2) .circle {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.plane.main .plane:nth-child(3) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}
.plane.main .plane:nth-child(3) .circle {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}
.plane.main .plane:nth-child(4) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
.plane.main .plane:nth-child(4) .circle {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
.plane.main .plane:nth-child(5) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}
.plane.main .plane:nth-child(5) .circle {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}
.plane.main .plane:nth-child(6) {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
.plane.main .plane:nth-child(6) .circle {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
.plane.main .plane:nth-child(7) {
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}
.plane.main .plane:nth-child(7) .circle {
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}
.plane.main .plane:nth-child(8) {
  -webkit-animation-delay: -8s;
          animation-delay: -8s;
}
.plane.main .plane:nth-child(8) .circle {
  -webkit-animation-delay: -8s;
          animation-delay: -8s;
}
.plane.main .plane:nth-child(9) {
  -webkit-animation-delay: -9s;
          animation-delay: -9s;
}
.plane.main .plane:nth-child(9) .circle {
  -webkit-animation-delay: -9s;
          animation-delay: -9s;
}
.plane.main .plane:nth-child(10) {
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}
.plane.main .plane:nth-child(10) .circle {
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}

.circle {
  background: rgba(0, 150, 194, 0.4);
  border-radius: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 0 40px cyan, 0 0 20px rgba(0, 255, 255, 0.3);
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateZ(-100px);
            transform: translateZ(-100px);
  }
  100% {
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateZ(-100px);
            transform: translateZ(-100px);
  }
  100% {
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes view {
  0% {
    -webkit-transform: rotateZ(0deg) rotateX(45deg);
            transform: rotateZ(0deg) rotateX(45deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) rotateX(45deg);
            transform: rotateZ(360deg) rotateX(45deg);
  }
}
@keyframes view {
  0% {
    -webkit-transform: rotateZ(0deg) rotateX(45deg);
            transform: rotateZ(0deg) rotateX(45deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) rotateX(45deg);
            transform: rotateZ(360deg) rotateX(45deg);
  }
}
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
input {font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;}

h1 {
  color: #990033;
  font-size: 2.3em;
  margin-bottom: 90px;
  margin-top: -40px;
  text-align: center;
  text-transform: uppercase;
}
h1 span {color: #bbb;}
h3 {margin: 1.5em 0 0.5em;}
p {margin: 1em 0;}
ul {padding: 0 0 0 40px;margin: 1em 0;}
.container {
  margin: 110px auto 0;
  max-width: 380px;
}
/* google search */
#goog-fixurl ul {list-style: none;padding: 0;margin: 0;}
#goog-fixurl form {margin: 0;}
#goog-wm-qt, #goog-wm-sb {
	border: 1px solid #bbb;
	font-size: 16px;
	line-height: normal;
	vertical-align: top;
	color: #444;
	border-radius: 2px;
}
#goog-wm-qt {
  box-shadow: 0 1px 1px #ccc inset;
  height: 30px;
  margin: 5px 10px 0 0;
  padding: 5px;
}
#goog-wm-sb {
	display: inline-block;
	height: 32px;
	padding: 0 10px;
	margin: 5px 0 0;
	white-space: nowrap;
	cursor: pointer;
	background-color: #f5f5f5;
	background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
	background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
	background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
	background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	*overflow: visible;
	*display: inline;
	*zoom: 1;
}
#goog-wm-sb:hover, #goog-wm-sb:focus {
	border-color: #aaa;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	background-color: #f8f8f8;
}
#goog-wm-qt:hover, #goog-wm-qt:focus {
	border-color: #105cb6;
	outline: 0;
	color: #222;
}
input::-moz-focus-inner {padding: 0;border: 0;}

.ds a {color: #990033;}
.ds a:hover {color: #007ABC;text-decoration:none;}
.ds img {
  float: left;
  margin-right: 20px;
  max-height: 128px;
}
.footer {
  color: #999999;
  font-family: Georgia,"Times New Roman",Times,serif;
  font-size: 0.7em;
  margin: 30px 0 0;
  text-align: right;
}