h3.myheading
{
  margin: 0;
  padding: 0;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  

  font-family: 'Century Gothic', 'Segoe UI', Verdana, sans-serif;
  font-size: 29px;
  font-weight: normal;
  color: #1c9edc;
}

h3.myheading span.my
{
  color: #afd5b0;
}


div#todo-message
{
  display: none;
  
  position: absolute;
  top: 15px;
  left: 120px;
  right: 120px;
  
  padding: 3px;
  
  border: 1px solid #1c9edc;
  background-color: #b5e4f4;
  
  text-align: center;
}

div#index-todo-tabs
{
  margin-top: 1.5em;
  height: 22px;
  width: 600px;
  border-right: 4px solid white;
}

div#index-todo-tabs a
{
  position: relative;
  display: block;
  float: left;
  margin-right: 4px;
  padding-top: 2px;
  
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  height: 19px;
  width: 90px;
  
  color: #1c9edc;
  background-color: #b5e4f4;
  border-bottom: 1px solid #b5e4f4;
  text-decoration: none;
  
  cursor: pointer;
}

div#index-todo-tabs a img
{
  position: absolute;
  top: 7px;
  
  margin: 0 4px;
  
  border: 0;
  border-left: 6px solid #1c9edc;
  border-right: 6px solid #1c9edc;
  
  cursor: pointer
}

div#index-todo-tabs a img#prev_month_arrow
{
  left: -4px;
}

div#index-todo-tabs a img#next_month_arrow
{
  right: -4px;
}

div#index-todo-tabs a:hover
{
  color: #096ba9;
}

div#index-todo-tabs a.active:hover
{
  color: #fff;
}

div#index-todo-tabs a.active
{
  color: #fff;
  background-color: #1c9edc;
  border-bottom: 1px solid #1c9edc;
  
  cursor: default;
}

div#index-todo-tabs a.right, div#index-todo-tabs a.rightactive
{
  position: relative;
  float: right;
  top: 1px;
  right: -4px;
  margin: 0;
  padding-left: 10px;
  padding-right: 9px;
  
  width: auto;
  font-size: 0.75em;
  text-align: right;
  
  background-color: transparent;
  border-bottom: 0;
}

div#index-todo-tabs a.rightactive
{
  z-index: 10;
  background-color: #1c9edc;
  border-bottom: 0;
  color: #fff;
}

div#index-todo-tabs a.rightactive:hover
{
  color: #fff;
}

div#index-todo-content
{
  position: relative;
  width: 580px;
  border: 2px solid #1c9edc;
}

div#index-todo-content h4
{
  margin: 5px;
  color: #555;
  
  font-size: 1em;
}

div#index-todo-content h5
{
  position: relative;
  left: -15px;
  
  margin: 5px;
  margin-top: 15px;
  
  color: #555;
  font-size: 1em;
}

div#index-todo-content h4#completed-items-header
{
  border-top: 1px solid #b5e4f4;
  padding-top: 5px;
}

ul#todos, ul#completed-todos
{
  list-style-type: none;
  list-style-image: none;
  
  margin: 15px;
  margin-top: 10px;
  padding: 0;
  
  cursor: default;
}

ul#todos li, ul#completed-todos li
{
  margin: 0;
  padding: 0;
  margin-left: -4px;
  
  color: #555;
}

ul#todos li span.due_date
{
  color: #aaa;
}

ul#todos li span.overdue
{
  color: #f55;
  font-weight: bold;
}

ul#todos form
{
  display: inline;
  margin: 0;
  padding: 0;
}

ul#todos li span.edit-btn
{
/*  display: none;*/
  
  position: relative;
  top: 2px;
  line-height: 15px;
  
  color: white;
  cursor: pointer;
}

ul#todos input, ul#completed-todos input /* checkboxes */
{
  position: relative;
  top: 1px;
}

a#completed-todos-more-link
{
  display: block;
  margin-top: 2px;
  margin-left: 23px;
  text-decoration: none;
}

a#completed-todos-more-link:hover
{
  text-decoration: underline;
}

div#todo-add-item-form-wrapper
{
  z-index: 5;
  
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
}

div#todo-add-item-form
{
  position: relative;
  width: 100%;
  
  text-align: center;
  
  background-color: #BEE3F0;
}

div#todo-add-item-form a img
{
  width: 13px;
  height: 13px;
  margin-right: 3px;
}

table#todo-add-item-form-contents
{
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 260px;
}

tr#todo-add-item-form-button-row td
{
  padding-bottom: 10px;
  padding-left: 5px;
  text-align: right;
}

div#todo-add-item-form th
{
  vertical-align: top;
  text-align: right;
  padding-top: 5px;
  padding-right: 4px;
  
  color: #1c9edc;
  font-weight: normal;
  font-size: 12px;
}

div#todo-add-item-form input
{
  width: 228px;
  
  padding: 1px;
  border: 1px solid #1c9edc;
  
  font-size: 12px;
  color: #666;
}

div#todo-add-item-form textarea
{
  width: 228px;
  height: 100px;
  
  font-size: 12px;
  
  border: 1px solid #1c9edc;
  
  overflow: auto; /* force ie to hide scroll bar when it's not needed */
}


div#todo-add-item-form select
{
  border: 1px solid #1c9edc;
  
  font-size: 12px;
  color: #666;
}


div.todo-notes
{
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: 25px;
  
  color: #888;
  font-size: 0.9em;
}

.disabled
{
  color: #888;
}

.alignRight
{
  text-align: right;
}

span.checkboxLabel
{
  line-height: 20px;
  vertical-align: bottom;
}

ul.minimal
{
  margin: 0;
  padding: 0;
}

ul.minimal li
{
  list-style-type: none;
  margin: 1px;
  padding: 0;
  
  margin-left:25px;
}

div.todo-inline-editor
{
  position: absolute;
  z-index: 20;
  
  left: 35px;
  height: 21px;
  width: 460px;
  background-color: #fff;
}

div.todo-inline-editor input
{
  position: absolute;
  left: 0px;
  
  width: 220px;
}

div.todo-inline-editor img#ok-icon
{
  position: absolute;
  top: 3px;
  left: 225px;
  
  cursor: pointer;
}

div#index-todo-content #ajaxmessage-busy
{
  display:none;
  position: absolute;
  
  top: 2px;
  right: 2px;
  padding: 2px;
  
  background-color: #b5e4f4;
  color: #1c9edc;
}

div#arrival-countdown
{
  float: right;
  margin-top: 15px;
  
  font-family: 'Century Gothic', 'Segoe UI', Verdana, sans-serif;
  font-size: 13px;
}

div#arrival-countdown-left
{
  float: left;
  line-height: 27px;
  padding: 0 5px;
  
  color: #1c9edc;
  border: 1px solid #b0d3ae;
}

div#arrival-countdown-right
{
  float: left;
  line-height: 29px;
  padding: 0 5px;
  padding-right: 10px;
  
  color: #fff;
  background-color: #b0d3ae;
  background-image: url('../images/i-arrival-countdown-bg.gif');
  background-position: right;
  background-repeat: no-repeat;
}