@font-face { font-family: "MyFamilyname", cursive [, ...]; font-style: normal [, ...]; font-variant: normal[, ...]; font-weight: bold[, ...]; font-stretch: condensed[, ...]; /* Not supported */ font-size: 12pt;[, ...] /* Not supported */ src: local("Font Family Name"), url(http://..../fontfile.ttf) format("truetype"), url(http://..../fontfile.ttf) [, ...]; } @media all/print/screen { div.chapternumber { /* A new chapter should begin at the top of a printed page, slightly below normal text. */ page-break-before: always; margin-top: .25 in; } } @-webkit-keyframes bounce { from { top: 100px; -webkit-animation-timing-function: ease-out; } 25% { top: 50px; -webkit-animation-timing-function: ease-in; } 50% { top: 100px; -webkit-animation-timing-function: ease-out; } 75% { top: 75px; -webkit-animation-timing-function: ease-in; } to { top: 100px; } }