/* Global Styles */

html {
   background: #fff;
}
html, body {
   margin:0;
   padding:0;
   /* height:100%; CAUSES CKEDITOR to scroll when enter pressed  https://groups.google.com/forum/#!msg/ckeditor-tickets/C6A3mRBVL7I/7YCvyQHkNq4J */
}
body {
   font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
   font-size:13px;
   color:#666;
}
a {
   color:#78a02e;
}

em {
  font-style: italic;
}

table {
   width: 100%;
}
table tbody tr td {
   /*white-space: nowrap;
   overflow: hidden;
   This was just plain MEAN!  Don't ever do this please!!
   */
   padding: .25em 0;
}

/* Misc */

.truncate {
   width: auto; /* must define width of text container */
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
