pre { /* Tomado de http://perishablepress.com/wrapping-content/
	          http://stackoverflow.com/questions/5241369/word-wrap-a-link-so-it-doesnt-overflow-its-parent-div-width */
    /*overflow: scroll;*/
    white-space: -hp-pre-wrap;  /* HP Printers */    
    white-space: pre;           /* CSS 2.0 */
    white-space: -moz-pre-wrap; /* Mozilla, supported since 1999 */
    white-space: -pre-wrap; /* Opera */
    white-space: pre-line;      /* CSS 3.0, si se hace predominar, permite partir palabras largas sin espacios */
    white-space: -o-pre-wrap; /* Opera */
    white-space: pre-wrap; /* CSS3 - Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
    word-wrap: break-word; /* Parece que también permite partir palabras y urls largas. */
    word-break: normal; /* Ver http://www.w3schools.com/cssref/css3_pr_word-break.asp */
    max-width: 100%;
}
@media (orientation:landscape) {
    .hide-on-landscape {
	display: none;
    }
}

@media (orientation:portrait) {
    .hide-on-portrait {
	display: none;
    }
}