#css break/wrap long text
/* http://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/ */
a {
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word; // Non standard for webkit
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
.nobr {
white-space: nowrap;
}