﻿/* babybook.css */

/* Reset */

html, body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 12px;
}

ul, li { 
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.field, .datepicker {
    font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
    font-size: 12px;
    margin: 0px;
    padding: 6px 8px;
    border-radius: 5px;
    border: solid 1px #CCC;
    color: #666;
}

input[type="submit"], input[type="button"] {
    padding: 4px 12px;
    cursor: pointer;
    color: black;
}

table, tr, td, form, fieldset, img {
  margin: 0px;
  padding: 0px;
  border: none;
}

div.clear {
  margin: 0px;
  padding: 0px;
  clear: both;
}

p {
  margin: 0px 0px 10px 0px;
  padding: 0px;
}

h1 {
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 24px;
}

h2 {
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 20px;
}

h3 {
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 18px;
}

h4 {
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 16px;
}

h5 {
  font-family: Lucida Grande,Lucida Sans,Arial,sans-serif;
  font-size: 14px;
}

hr {
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  border-left: none;
  border-right: none;
  box-shadow: 0 0 15px #999;
  margin: 20px 0px;
}

.error {
  color: #ff0000;
}

.success {
  color: #0000ff;
}

/* Shared styles */
div.window {
  position: absolute;
  margin: 0px;
  padding: 10px 20px 20px;
  border: solid 1px #ccc;
  border-radius: 5px;
  background-color: #fff;
  background-image: url(../images/bg-fade.png);
  background-repeat: repeat-x;
  box-shadow: 0 0 15px #333;
  z-index: 2;
}

div.window h3 {
  margin: 0px;
  padding: 18px 0px;
}

div#windowBox {
  position: relative;
  margin: 50px auto 35px auto;
  padding: 20px;
  width: 900px;  
  border: solid 1px #ccc;
  border-radius: 5px;
  background-color: #fff;
  background-image: url(../images/bg-fade.png);
  background-repeat: repeat-x;
  box-shadow: 0 0 15px #ccc;
  min-height: 400px;
}

div#footer {
  margin: 0px auto 50px auto;
  width: 900px;
  text-align: center;
  color:#aaa;
}

div#footer a {
  color:#aaa;
}

img#windowIcon {
  position: absolute;
  right: 20px;
  top: 20px;
}

div.closeWindow {
  width: 43px;
  height: 42px;
  background-image: url(../images/close.png);
  position: absolute;
  right:10px;
  top: 10px;
  cursor: pointer;
  z-index: 5;
}

div.userThumb {
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  width:35px;
  height:35px;
  margin-bottom:5px;
}

/* Login styles */
body#login { overflow:hidden; }

body#login div#loginBox,
body#login div#joinBox {
  position: relative;
  margin: 100px auto;
  width: 300px;
  padding: 10px 20px 20px;
  border: solid 1px #ccc;
  border-radius: 5px;
  background-color: #fff;
  background-image: url(../images/bg-fade.png);
  background-repeat: repeat-x;
  box-shadow: 0 0 15px #ccc;
}

body#login div#registerBox {
  display: none;
  position: absolute;
  width: 300px;
  padding: 10px 20px 20px;
  border: solid 1px #ccc;
  border-radius: 5px;
  background-color: #fff;
  background-image: url(../images/bg-fade.png);
  background-repeat: repeat-x;
  box-shadow: 0 0 15px #ccc;
}

body#login div#forgottenPasswordBox {
  display: none;
  position: absolute;
  width: 300px;
  padding: 10px 20px 20px;
  border: solid 1px #ccc;
  border-radius: 5px;
  background-color: #fff;
  background-image: url(../images/bg-fade.png);
  background-repeat: repeat-x;
  box-shadow: 0 0 15px #ccc;
}

body#login div#loginBox p,
body#login div#registerBox p,
body#login div#forgottenPasswordBox p {
  line-height: 16px;
}

body#login div#loginBox p.label { line-height:24px; }

body#login div#loginBox input,
body#login div#registerBox input,
body#login div#forgottenPasswordBox input {
  position: absolute;
  left: 100px;
  width: 202px;
}

body#login div#loginBox input#submitBtn,
body#login div#registerBox input#registerBtn,
body#login div#forgottenPasswordBox input#forgottenPasswordBtn {
  width: auto;
}

body#login div#loginBox img#loginProgress {
  display: none;
  position: absolute;
  left: 170px;
  margin-top: 8px;    
}

body#login div#loginBox input#rememberme {
  width: auto;
  margin-top: 4px;
}

body#login div#loginBox label {
  position: absolute;
  left: 120px;
  margin-top: 3px;
}

body#login div#loginBox p.errMsg {
  color: #ff0000;
}

body#login div#loginBox p.successMsg {
  color: #3333cc;
}

body#login div#loginBox p.registerText,
body#login div#loginBox p.forgottenText {
  font-size: 10px;
  color: #999;
  text-align: center;
  line-height: 14px;
  padding-top: 5px;
  margin-bottom: 5px;
}

body#login div#joinBox input {
  position: absolute;
  left: 150px;
}

body#login div#joinBox p.note {
  color: #666666;
  font-size: 11px;
  text-align: center;
}

body#login #facebookWidget {
  position:absolute; 
  right:50px; 
  bottom:50px; 
  background-color:#fff;
  opacity:0.5;
}

body#login #facebookWidget:hover {
  opacity:1.0;
}

body#login p#loginFooter {
  font-weight: bold; 
  color: #d0d0ff; 
  text-align: center; 
  margin-top: -80px;
}

body#login p#loginFooter a {
 color: #d0d0ff;
}

/* MyHome styles */
body#home div#createPlayAreaBox {
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  padding: 10px;
  display: none;
  width: 220px;
  margin-bottom: 10px;
}

body#home ul#createPlayAreaButtons {
  margin-top: 30px;
}

body#home ul#createPlayAreaButtons li {
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  width: 220px;
  height: 120px;
  float: left;
  margin-right: 20px;
}

body#home ul#createPlayAreaButtons li span {
  font-size: 14px;
  display: block;
  margin: 10px 0;
}

body#home ul#createPlayAreaButtons li#cpa1 {
  background-image: url("../images/create-playarea-1.jpg");
}

body#home ul#createPlayAreaButtons li#cpa2 {
  background-image: url("../images/create-playarea-2.jpg");
}

body#home ul#createPlayAreaButtons li#cpa3 {
  background-image: url("../images/tell-a-friend.jpg");
}

body#home ul#createPlayAreaButtons li a {
  display: block;
  width: 110px;
  height: 100px;
  padding: 10px 10px 10px 100px;
  text-decoration: none;
}

body#home ul#createPlayAreaButtons li h5 {
  margin: 10px 0;
}

body#home div#editYourDetailsHere {
  float:left;
  padding: 10px 0 0 10px;
}

body#home div#createPlayAreaBox label {
  width: 50px;
  display: block;
  float: left;
}

body#home div#createPlayAreaBox input,
body#home div#createPlayAreaBox textarea {
  width: 163px;
  margin: 2px 0px;
  float: left;
}

body#home div#createPlayAreaBox input#submit {
  float: right;
  width: auto;
}

body#home div#createPlayAreaBox div {
  clear: both;
}

body#home #playAreaList {
  margin-top: 20px;
}

body#home #playAreaListFooter {
  margin-bottom: 20px;
}

body#home #playAreaList li {
  float: left;
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  padding: 10px;
  width: 75px;
  height: 75px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

body#home #playAreaList li a,
body#home #playAreaList li span {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0px 0px 5px #000;
  color: #eee;
}

body#home #playAreaList li:hover {
  background-color: #f0f0f0;
}

body#home #playAreaList li:hover a {
  color: #fff;
}

body#home #playAreaList li input {
  float: right;
  opacity: 0.4; -moz-opacity: 0.40; filter:alpha(opacity=40);
  cursor: pointer;
}

body#home #playAreaList li input:hover {
  float: right;
  opacity: 1; -moz-opacity: 1; filter:alpha(opacity=100);
}

body#home #editYourDetails img {
  vertical-align: middle;
}

body#home #emailafriendWindow {
  display: none;
  width: 450px;
}

body#home #emailafriendWindow .col1 {
  float: left;
  width: 100px;
  min-height: 34px;
}

body#home #emailafriendWindow .col2 {
  float: left;
  width: 350px;
  min-height: 30px;
}

body#home #emailafriendWindow input, body#home #emailafriendWindow select {
  width: 340px;
}

body#home #emailafriendWindow .default {
  width: auto;
}

/* PlayArea styles */

body#playArea {
  overflow: hidden;
}

body#playArea img#background {
  width:100%;
  height:100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

body#playArea div#pageTitle {
  position: absolute;
  top: 50px;
  left: 100px;
  z-index: 2;
  text-shadow: 0px 0px 5px #fff;
}

body#playArea ul#navigation {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
}

body#playArea ul#navigation li {
  float: left;
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #333;
  width: 65px;
  height: 65px;
  margin-right: 10px;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: 20px 26px;
  background-color: #fff;
}

body#playArea ul#navigation li:hover {
  background-color: #f0f0f0;
}

body#playArea ul#navigation li#blogNI {
  background-image: url(../images/modules/module-icons.png);
  background-position: 0px 0px;
}

body#playArea ul#navigation li#photosNI {
  background-image: url(../images/modules/module-icons.png);
  background-position: -75px 0px;
}

body#playArea ul#navigation li#videosNI {
  background-image: url(../images/modules/module-icons.png);
  background-position: -150px 0px;
}

body#playArea ul#navigation li#weightNI {
  background-image: url(../images/modules/module-icons.png);
  background-position: -225px 0px;
}

body#playArea ul#navigation li#heightNI {
  background-image: url(../images/modules/module-icons.png);
  background-position: -300px 0px;
}

body#playArea ul#navigation li#milestonesNI {
  background-image: url(../images/modules/module-icons.png);
  background-position: -375px 0px;
}

/* Blog window */
body#playArea #blogWindow {
  width: 500px;
  height: 300px;
  margin: 150px 0 0 100px;
}

body#playArea #blogWindow .editDataLink {
  text-align: right;
  margin-top: -22px;
  position: relative;
  z-index: 10;
}

body#playArea #commentsContainer {
  height: 259px;
  overflow: auto;
}

body#playArea #blogWindow #addcommentWindow {
  display: none;
  width: 400px;
  height: 305px;
  z-index: 10;
}

body#playArea #blogWindow #addcommentWindow #blogPostingComment {
  display: none;
}

body#playArea #addcommentWindow #blogPhotoContainer {
  width: 100%;
  height: 60px;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;  
  margin-bottom: 5px;
  overflow: auto;
  background-image: url(../images/image-drop.png);
  background-position: center center;
  background-repeat:no-repeat;
}

body#playArea #addcommentWindow .dropActive {
  background-color: #eee;
}

body#playArea #addcommentWindow #blogPhotoContainer div {
  float: left;
}

body#playArea #addcommentWindow #blogPhotoContainer img {
  max-width: 50px;
  max-height: 50px;
  margin: 5px;
  border: 1px solid #eee;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #666;
}

body#playArea #addcommentWindow #blogPhotoContainer div img.delete {
  display: none;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  margin-left: -34px;
}

body#playArea #addcommentWindow #blogPhotoContainer div:hover img.delete {
  display: inline;
  cursor: pointer;
}

body#playArea #addcommentWindow #blogPostAuthorBar {
  height: 42px;
}

body#playArea #addcommentWindow #blogPostFromName {
  float: left;
  margin: 10px;
}

body#playArea #addcommentWindow #blogPostAsIfFrom {
  float: right;
  margin: 3px 0px 3px 30px;
}

body#playArea #blogWindow #comment {
  width: 99%;
}

body#playArea #blogWindow ul#commentsList {
  margin: 10px 0;
}

body#playArea #blogWindow ul#commentsList li {
  margin-bottom: 5px;
  min-height: 35px;
  padding: 2px 2px 2px 0;
}

body#playArea #blogWindow ul#commentsList li.alt {
  background-color: #eee;
}

body#playArea #blogWindow ul#commentsList li span {
  font-weight: bold;
}

body#playArea #blogWindow ul#commentsList li div.userThumbContainer {
  float: left;
  width: 35px;
  height: 35px;
  margin: 0 10px 5px 0;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #999;
}

body#playArea #blogWindow ul#commentsList li div.commentDate {
  float: right;
  color: #999;
  font-style: italic;
}

body#playArea #blogWindow ul#commentsList li img {
  vertical-align: top;
  margin-right: 5px;
  float: left;
}

body#playArea #blogWindow ul#commentsList li div.images img {
  max-width: 50px;
  max-height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #666;
  float: right;
}

body#playArea #blogWindow fieldset#blogGroupsList {
  display: inline;
}

body#playArea #blogWindow fieldset#blogGroupsList input {
  vertical-align: middle;
  margin: 3px 0 5px 15px;  
}

body#playArea #blogWindow #impersonateOwner {
  vertical-align: middle;
  margin: 7px 0 11px 0;  
}

/* Photos window */
body#playArea #photosWindow {
  width: 630px;
  height: 400px;
  display: none;
}

body#playArea #photosWindow .editDataLink {
  text-align: right;
  margin-top: -22px;
  position: relative;
  z-index: 10;
}

body#playArea #photosWindow #photoAlbumsContainer {
  width: 100%;
  height: 340px;
  overflow: auto;
}

body#playArea #photosWindow #photosContainer {
  width: 100%;
  height: 340px;
  overflow: auto;
  
  display: none;
}

body#playArea #photosWindow #createphotoalbumWindow {
  display: none;
}

body#playArea #createphotoalbumWindow #photoAlbumCreating {
  display: none;
}

body#playArea #photosWindow #uploadphotoWindow {
  display: none;
}

body#playArea #photosWindow ul#photoAlbumsList {
  margin-left: 10px;
}

body#playArea #photosWindow ul#photoAlbumsList li {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  border: solid 1px #ccc;  
  float: left;
  margin: 10px 20px 20px 20px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #999;
  overflow: hidden;
}

body#playArea #photosWindow ul#photoAlbumsList li:hover {
  background-color: #eee;
}

body#playArea #photosWindow ul#photoAlbumsList li img.thumb {
  width: 120px;
  height: 120px;
}

body#playArea #photosWindow ul#photoAlbumsList li p {
  line-height: 30px
}

body#playArea #photosWindow ul#photoAlbumsList li img.delete,
body#playArea #photosWindow ul#photosList li img.delete {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: none;
}

body#playArea #photosWindow ul#photoAlbumsList li:hover img.delete,
body#playArea #photosWindow ul#photosList li:hover img.delete {
  display: block;
}

body#playArea #photosWindow ul#photosList li.ui-draggable-dragging:hover img.delete {
  display: none;
}

body#playArea #photosWindow ul#photoAlbumsList li img.edit,
body#playArea #photosWindow ul#photosList li img.edit {
  position: absolute;
  bottom: 4px;
  left: 6px;
  display: none;
}

body#playArea #photosWindow ul#photoAlbumsList li:hover img.edit,
body#playArea #photosWindow ul#photosList li:hover img.edit {
  display: block;
}

body#playArea #photosWindow ul#photosList li.ui-draggable-dragging:hover img.edit {
  display: none;
}

body#playArea #photosWindow #photosList li {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
  border: solid 1px #ccc;  
  float: left;
  margin: 0 20px 20px 0;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #999;
  overflow: hidden;
  background-color: #fff;
}

body#playArea #photosWindow #photosList li img {
  display: none;
}

body#playArea #photosWindow #createphotoalbumWindow div.col1 {
  float: left;
  width: 90px;
  margin-bottom: 10px;
}

body#playArea #photosWindow #createphotoalbumWindow div.col2 {
  float: left;
  width: 300px;
  margin-bottom: 10px;
}

body#playArea #photosWindow #createphotoalbumWindow input, body#playArea #photosWindow #createphotoalbumWindow textarea {
  width: 280px;
}

body#playArea #photosWindow #createphotoalbumWindow input.default {
  width: auto;
}

/* Videos window */
body#playArea #videosWindow {
  width: 630px;
  height: 400px;
  display: none;
}

body#playArea #videosWindow .editDataLink {
  text-align: right;
  margin-top: -22px;
  position: relative;
  z-index: 10;
}

body#playArea #videosWindow #videoAlbumsContainer {
  width: 100%;
  height: 340px;
  overflow: auto;
}

body#playArea #videosWindow #videosContainer {
  width: 100%;
  height: 340px;
  overflow: auto;
  
  display: none;
}

body#playArea #videosWindow #createvideoalbumWindow {
  display: none;
}

body#playArea #createvideoalbumWindow #videoAlbumCreating {
  display: none;
}

body#playArea #videosWindow #uploadvideoWindow {
  display: none;
}

body#playArea #videosWindow ul#videoAlbumsList {
  margin-left: 10px;
}

body#playArea #videosWindow ul#videoAlbumsList li {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  border: solid 1px #ccc;  
  float: left;
  margin: 10px 20px 20px 20px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #999;
  overflow: hidden;
}

body#playArea #videosWindow ul#videoAlbumsList li:hover {
  background-color: #eee;
}

body#playArea #videosWindow ul#videoAlbumsList li img.thumb {
  width: 120px;
  height: 120px;
}

body#playArea #videosWindow ul#videoAlbumsList li p {
  line-height: 30px
}

body#playArea #videosWindow ul#videoAlbumsList li img.delete,
body#playArea #videosWindow ul#videosList li img.delete {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: none;
}

body#playArea #videosWindow ul#videoAlbumsList li:hover img.delete,
body#playArea #videosWindow ul#videosList li:hover img.delete {
  display: block;
}

body#playArea #videosWindow ul#videoAlbumsList li img.edit,
body#playArea #videosWindow ul#videosList li img.edit {
  position: absolute;
  bottom: 4px;
  left: 6px;
  display: none;
}

body#playArea #videosWindow ul#videoAlbumsList li:hover img.edit,
body#playArea #videosWindow ul#videosList li:hover img.edit {
  display: block;
}

body#playArea #videosWindow #videosList li {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
  border: solid 1px #ccc;  
  float: left;
  margin: 0 20px 20px 0;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 5px #999;
  overflow: hidden;
}

body#playArea #videosWindow #videosList li img {
  display: none;
}

body#playArea #videosWindow #createvideoalbumWindow div.col1 {
  float: left;
  width: 90px;
  margin-bottom: 10px;
}

body#playArea #videosWindow #createvideoalbumWindow div.col2 {
  float: left;
  width: 300px;
  margin-bottom: 10px;
}

body#playArea #videosWindow #createvideoalbumWindow input, body#playArea #videosWindow #createvideoalbumWindow textarea {
  width: 280px;
}

body#playArea #videosWindow #createvideoalbumWindow input.default {
  width: auto;
}

/* Weight chart window */
body#playArea #weightWindow {
  width: 600px;
  height: 400px;
  display: none;
}

body#playArea #weightWindow .editDataLink {
  text-align: right;
  margin-top: -22px;
  position: relative;
  z-index: 10;
}

body#playArea #weightWindow #weightChartEdit {
  position: absolute;
  top: 0px;
  width: 560px;
  height: 302px;
  margin: 70px 0 0;
  padding: 2px 20px 20px 20px;
  
  background-color: #fff;
  border: 1px solid #ccc;
  
  display: none;
}

body#playArea #weightWindow #weightChartEdit #weightChartDataContainer {
  width: 550px;
  height: 160px;
  overflow: auto;
  border: solid 1px #ccc;
  margin-bottom: 20px;
}

body#playArea #weightWindow #weightChartEdit #weightChartData {
  margin-bottom: 20px;
}

body#playArea #weightWindow #weightChartEdit #weightChartData td,
body#playArea #weightWindow #weightChartEdit #weightChartData th {
  text-align: right;
}

body#playArea #weightWindow #weightChartAdding {
  display: none;
}

/* Height chart window */
body#playArea #heightWindow {
  width: 600px;
  height: 400px;
  display: none;
}

body#playArea #heightWindow .editDataLink {
  text-align: right;
  margin-top: -22px;
  position: relative;
  z-index: 10;
}

body#playArea #heightWindow #heightChartEdit {
  position: absolute;
  top: 0px;
  width: 560px;
  height: 302px;
  margin: 70px 0 0;
  padding: 2px 20px 20px 20px;
  
  background-color: #fff;
  border: 1px solid #ccc;
  
  display: none;
}

body#playArea #heightWindow #heightChartEdit #heightChartDataContainer {
  width: 550px;
  height: 160px;
  overflow: auto;
  border: solid 1px #ccc;
  margin-bottom: 20px;
}

body#playArea #heightWindow #heightChartEdit #heightChartData {
  margin-bottom: 20px;
}

body#playArea #heightWindow #heightChartEdit #heightChartData td,
body#playArea #heightWindow #heightChartEdit #heightChartData th {
  text-align: right;
}

body#playArea #heightWindow #heightChartAdding {
  display: none;
}

/* Milestones */
body#playArea #milestonesWindow {
  width: 600px;
  height: 400px;
  display: none;
}

body#playArea #milestoneContainer {
  height: 340px;
  overflow: auto;
}

body#playArea #milestonesWindow .editDataLink {
  text-align: right;
  margin-top: -22px;
  position: relative;
  z-index: 10;
}

body#playArea #milestonesWindow #addmilestoneWindow {
  display: none;
  width: 400px;
  height: 380px;
  z-index: 10;
}

body#playArea #addmilestoneWindow .col1 {
  float: left;
  width: 120px;
  min-height: 30px;
}

body#playArea #addmilestoneWindow .col2 {
  float: left;
  width: 280px;
  min-height: 30px;
}

body#playArea #milestonesWindow #addmilestoneWindow input {
  width: 130px;
}

body#playArea #milestonesWindow #addmilestoneWindow input.default {
  width: auto;
}

body#playArea #milestonesWindow #addmilestoneWindow textarea {
  width: 260px;
  height: 100px;
  margin-bottom: 10px;
}

body#playArea #milestonesWindow #addmilestoneWindow #milestoneTypeContainer {
  width: 400px;
  height: 108px;
  overflow: auto;
  clear: both;
  margin-bottom: 10px;
}

body#playArea #milestonesWindow #addmilestoneWindow ul#milestoneType {
  margin: 10px 0;
  width: 860px;
}

body#playArea #milestonesWindow #addmilestoneWindow ul#milestoneType li {
  float: left;
  margin: 0 0 10px 10px;
}

body#playArea #milestonesWindow #addmilestoneWindow ul#milestoneType li.active img {
  border: solid 2px #ffff00;
}

body#playArea #milestonesWindow #addmilestoneWindow ul#milestoneType li img {
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  cursor: pointer;
  border: solid 2px transparent;
}

body#playArea #milestonesWindow #addmilestoneWindow ul#milestoneType li img:hover {
  box-shadow: 0 0 15px #aaaaff;
}

/* Your detail styles */
body#yourDetails .col1 {
  float: left;
  width: 140px;
}

body#yourDetails .col2 {
  float: left;
  width: 500px;
  padding-bottom: 6px;
}

body#yourDetails .col2 input, body#yourDetails .col2 textarea, body#yourDetails .col2 select {
  width: 400px;
}

body#yourDetails .col2 .default {
  width: auto;
}

body#yourDetails input.datepicker {
  width: 100px;
}

body#yourDetails div#changePasswordWindow {
  display: none;
}

/* Edit play area styles */
body#editPlayArea div.tabbedNotebook {
  margin: 80px 0 20px 0;
}

body#editPlayArea div.tabbedNotebook #tab-users ul {
  margin: 10px 0;
}

body#editPlayArea div.tabbedNotebook #tab-users ul li {
  margin: 5px 0px 5px 20px;
  list-style-type: disc;
}

body#editPlayArea h5 {
  margin-top: 0px;
}

body#editPlayArea .col1 {
  float: left;
  width: 140px;
}

body#editPlayArea .col2 {
  float: left;
  width: 500px;
  padding-bottom: 6px;
}

body#editPlayArea .col2 input, body#editPlayArea .col2 textarea, body#editPlayArea .col2 select {
  width: 400px;
}

body#editPlayArea .col2 .default {
  width: auto;
}

body#editPlayArea div.usersContainer table {
  border-collapse: collapse;
  margin: 10px 0;
  border:solid 1px #ccc;
}

body#editPlayArea div.usersContainer table tr {
  background-color:#eee;
  height:31px;
}

body#editPlayArea div.usersContainer table tr.oddRow {
  background-color:#ddd;
}

body#editPlayArea div.usersContainer table td {
  padding: 4px 10px;
}

body#editPlayArea #addusertoPlayAreaWindow {
  display: none;
  width: 400px;  
}

body#editPlayArea #addusertoPlayAreaWindow div.col1 {
  float: left;
  width: 90px;
  margin-bottom: 10px;
}

body#editPlayArea #addusertoPlayAreaWindow div.col2 {
  float: left;
  width: 300px;
  margin-bottom: 10px;
}

body#editPlayArea #addusertoPlayAreaWindow input, body#editPlayArea #addusertoPlayAreaWindow textarea, body#editPlayArea #addusertoPlayAreaWindow select {
  width: 300px;
}

body#editPlayArea #addusertoPlayAreaWindow .default {
  width: auto;
}

body#editPlayArea .emailContainer {
  position:relative;
}

body#editPlayArea #addusertoPlayAreaWindow #email {
  position:absolute;
  top:0px;
  left:0px;
  width: 278px;
  z-index:2;
}

body#editPlayArea #addusertoPlayAreaWindow #emailAutoEntry {
  position:absolute;
  top:0px;
  left:0px;
  width: 308px;
  z-index:1;
}

body#editPlayArea #playAreaThumb {
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  width:100px;
  height:100px;
  margin-bottom:5px;
}

body#editPlayArea div#theme1backgroundimage {
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  width:150px;
  height:113px;
  margin-top:10px;
}

body#editPlayArea input.datepicker {
  width: 100px;
}

body#editPlayArea div.footnote, body#editPlayArea div.footnote input {
  color: #666;
}

/* Create play area Styles */

body#createPlayArea .col1 {
  float: left;
  width: 140px;
}

body#createPlayArea .col2 {
  float: left;
  width: 500px;
  padding-bottom: 6px;
}

body#createPlayArea .col2 input, body#createPlayArea .col2 textarea, body#createPlayArea .col2 select {
  width: 400px;
}

body#createPlayArea .col2 .default {
  width: auto;
}

body#createPlayArea input.datepicker {
  width: 100px;
}

body#createPlayArea div.wizardStep {
  display: none;
  height: 250px;
  position: relative;
}

/* Version Styles */
body#version h5 {
  margin: 40px 0 20px 0;  /* TODO: Can we combine this with general styles? */
}

body#version ul.versionHistory {
  margin: 0px 0px 20px 0px;
}

body#version div#versionContainer {
  height: 400px;
  overflow: auto;
  border: solid 1px #ccc;
  padding: 10px;
}

/* About Styles */
body#about div.col1 {
  width: 100px;
  float: left;
  min-height: 34px;
}

body#about div.col2 {
  width: 600px;
  float: left;
  min-height: 34px;
}

body#about div.col2 input {
  width: 400px;
}

body#about div.col2 input.default {
  width: auto;
}

body#about p#familyPhoto {
  margin: 15px 20px 10px 0;
  float: left;
  text-align: center;
}

body#about p#familyPhoto img {
  border-radius: 5px;
  box-shadow: 0 0 15px #999;
  margin-bottom: 10px;
}

body#about ul {
  margin: 20px 0;
}

body#about li {
  margin: 10px 20px;
  list-style-type:disc;
}

body#about .botonly {
    display:none;
}

/* Demo styles */
body#demo ul#demoSteps {
  margin-top: 20px;
}

body#demo ul#demoSteps li {
  border: solid 1px #ccc;
  border-radius: 5px;
  box-shadow: 0 0 15px #ccc;
  width: 100px;
  height: 100px;
  float: left;
  margin-right: 20px;
  text-align: center;
  padding: 10px;
  color: #1E4EA0;
  font-size: 14px;
  font-weight: bold;
}

body#demo ul#demoSteps li:hover {
  background-color: #EEF4FF;
}

body#demo ul#demoSteps li div {
  font-family: Impact;
  font-size: 82px;
  color: #D9E6FF;
  margin-bottom: -60px;
}

body#demo ul#demoSteps li div.twoLines {
  margin-bottom: -69px;
}

body#demo ul#demoSteps li:hover {
  cursor: pointer;
}

body#demo div.demoTabPage {
  display: none;
}

/* Member styles */
body#playArea #memberTile {
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
    padding: 5px 10px;
    color: white;
    text-shadow: 0px 0px 5px black;
    z-index: 10;
}