/**
 * @fileoverview
 * Registers a language handler for SQL.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-css">css code</pre>
 *      
 * @author a.., aybars.badur@gmail.com
 */
PR.registerLangHandler(
    cssDecorator = PR.createSimpleLexer(
        [
         // Whitespace
         [PR.PR_PLAIN,       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],

        ],
        [         
         [PR.PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/],         
         [PR.PR_KEYWORD, /^(?:play-during|counter-reset|counter-increment|min-height|quotes|border-top|pitch|font|pause|list-style-image|border-width|cue|outline-width|border-left|elevation|richness|speech-rate|border-bottom|border-spacing|background|list-style-type|text-align|page-break-inside|orphans|page-break-before|text-transform|line-height|padding-left|font-size|right|word-spacing|padding-top|outline-style|bottom|content|border-right-style|padding-right|border-left-style|voice-family|background-color|border-bottom-color|outline-color|unicode-bidi|max-width|font-family|caption-side|border-right-width|pause-before|border-top-style|color|border-collapse|border-bottom-width|float|height|max-height|margin-right|border-top-width|speak|speak-header|top|cue-before|min-width|width|font-variant|border-top-color|background-position|empty-cells|direction|border-right|visibility|padding|border-style|background-attachment|overflow|border-bottom-style|cursor|margin|display|border-left-width|letter-spacing|vertical-align|clip|border-color|list-style|padding-bottom|pause-after|speak-numeral|margin-left|widows|border|font-style|border-left-color|pitch-range|background-repeat|table-layout|margin-bottom|speak-punctuation|font-weight|border-right-color|page-break-after|position|white-space|text-indent|background-image|volume|stress|outline|clear|z-index|text-decoration|margin-top|azimuth|cue-after|left|list-style-position)(?=[^\w-]|$)/i, null],
         [PR.PR_TAG,      /^.*\{/, null],         
         [PR.PR_TAG,      /^\}/, null],         
         
         [PR.PR_LITERAL, /^[\(\"\/\)0-9#a-z_][\w-]*/i],
        ]),
    ['css']);
    
