/*
   Basic Styling
   Mojo Application Framework
   Copyright (c) 2007-2009, Palm Inc.
   All rights reserved.

*/

::selection {
  background: #ffea58;
  color: #000;
}

body {
  min-height: 480px;
  height: 100%;
  margin: 0;
  padding: 0;
  font: 20px 'Prelude', sans-serif;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.condensed {
  font-family: 'Prelude-CondensedMedium';
}

.oblique {
  font-family: 'Prelude-MediumOblique';
  font-style: italic;
}

.truncating-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.capitalize {
  text-transform: capitalize;
}
.un-capitalize {
  text-transform: none !important;
}

body.palm-default {
  color: #000;
  background: #e4e4e2;
}

body, a, div {
  cursor: default;
  word-wrap: break-word;
}

p {
  font-size: 16px;
  padding: 15px;
}

input, button {
  font: 20px 'Prelude', sans-serif;
}

textarea {
  font: 16px 'Prelude', sans-serif;
}

form {
  margin: 0;
  padding: 0;
}

div, table, td, input, textarea {
  -webkit-box-sizing: content-box;
}