table tr td {

border: 0px;

}

/* Used in cloud/terms/service-terms so blockquote isn't italic */
/* This value is set manually in a <style> tag in the included terms topics */
blockquote {
	font-style: normal;
	color: #000;
}

/* Client libraries table */

/* Shortens the first column of the client libraries table */
.clientlib tr > *:first-child {
  width: 325px;
}

/* Shortens the third column of the client libraries table */
.clientlib tr td:nth-child(3) {
  width: 30%;
}

/* Lengthens the first column of the launch stages table */
.launchstages tr > *:first-child {
  width: 200px;
}

/* Getting started on Cloud index pages */

/* Page title with product logo */
div.gs-page-title-with-logo {
  position: relative;
}

div.gs-page-title-with-logo div.page-title {
  margin-left: 60px;
}

div.gs-page-title-with-logo img.product-logo {
  /* full size product logos are 300px x 267px */
  width: 54px;
  height: 48px;
  vertical-align: middle;
  position: absolute;
  left: 0px;
}

/* Try it now heading */
.gs-tryitnow {
  font-size: 1.5em;
  margin-left: 60px;
  margin-top: 35px;
  border-bottom: 1px solid #ccc;
}

/* Getting started numbered-circles */
ol.numbered-circles {
  list-style: none;
  counter-reset: circleCount;
  margin-left: /* circle radius = */ 36px;
  margin-right: 0px;
}

ol.numbered-circles li.numbered-circle {
  position: relative;
}

ol.numbered-circles li.numbered-circle:before {
  counter-increment: circleCount;
  content: counter(circleCount);

  float: left;
  position: absolute;

  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  color: #fff;

  /* circle radius = 36px */
  left: /* circle radius + 10px */ -46px;
  width: 36px;
  height: 36px;
  line-height: 36px;

  background-color: #777777;

  -moz-border-radius: 999px;
  border-radius: 999px
}

ol.numbered-circles li.numbered-circle h3 {
  line-height: 36px;
  margin-bottom: 0.3em;
}

ol.numbered-circles li.numbered-circle h4 {
  margin-bottom: 0.3em;
}

ol.numbered-circles li.numbered-circle pre {
  margin: 0.7em 0em 1.5em;
}

/* Getting started right-aligned/top video */
.gs-homepage-video {
  display: inline;
  float: right;
  position: relative;
  margin: 3px 0px 10px 10px;
}

.gs-youtube-iframe {
  width: 420px !important;
  height: 256px !important;
}

/* Getting started top intro list */
.gs-homepage-intro {
  padding: 10px 0px 0px 60px;
}

/* Getting started bullet-less bullets flush with left margin */
.gs-no-bullet {
  list-style: none;
  padding-left: 0px;
}

/* Getting started language choice */
.language-choices {
  position: relative;
  /* language-choice height + 2x 2px border = */
  height: 164px;
  margin: 0 0 25px 60px;
}

.language-choice {
  display: inline-block;
  position: absolute;
  background: #ffffff no-repeat center 25%;
  border: 2px solid #eee;
  border-radius: 8px;
  box-sizing: border-box;
  height: 160px;
  margin-left:0px;
  /* height + margin-top + margin-bottom = */
  line-height: 244px;
  text-align: center;
  vertical-align: bottom;
  width: 160px;
  font-size: 1.2em;
  text-decoration: none;
}

.language-choice:hover {
  border-color: #ddd;
}

.language-choice.language-choice-selected {
  border-color: #4D90FE;
}

.language-choice-python {
  background-image: url('../../appengine/images/python-color.png');
}

.language-choice-java {
  background-image: url('../../appengine/images/java-color.png');
}

.language-choice-php {
  background-image: url('../../appengine/images/php-color.png');
}

.language-choice-go {
  background-image: url('../../appengine/images/go-color.png');
}

.margin-l-60 {
  margin-left: 60px;
}

.no-padding {
  padding: 0px !important;
}

.clear-both {
  clear: both;
}
