
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_eb128b38419047946ba2dc5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_84f72bf4771589e404e83059.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5a6a2676fd1662d31c67d3bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5a6a2676fd1662d31c67d3bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f4ba345cafaae158d4679b4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_039ef311326399c7c78a7276.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.842285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa5503e3e8ad7a1e50ee02bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.518892px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000012px;}
.lsb{letter-spacing:1.899997px;}
.ls9{letter-spacing:1.900042px;}
.lsa{letter-spacing:23.475945px;}
.ls6{letter-spacing:84.621750px;}
.ls8{letter-spacing:96.514562px;}
.ls1{letter-spacing:149.574700px;}
.ls4{letter-spacing:260.832077px;}
.ls5{letter-spacing:278.917584px;}
.ls3{letter-spacing:280.887987px;}
.ls7{letter-spacing:298.903100px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-23.349144px;}
.ws1a{word-spacing:-20.724428px;}
.ws1c{word-spacing:-20.724383px;}
.ws4{word-spacing:-20.020702px;}
.ws1d{word-spacing:-10.731636px;}
.wsd{word-spacing:-0.084041px;}
.ws2{word-spacing:-0.072060px;}
.wsc{word-spacing:-0.035196px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:4.468560px;}
.wse{word-spacing:4.468561px;}
.ws9{word-spacing:4.468571px;}
.wsb{word-spacing:4.468594px;}
.ws1b{word-spacing:7.283432px;}
.ws19{word-spacing:7.283477px;}
.ws8{word-spacing:8.972372px;}
.ws1e{word-spacing:13.476138px;}
.ws6{word-spacing:13.476150px;}
.wsa{word-spacing:13.476161px;}
.ws17{word-spacing:17.979905px;}
.ws1{word-spacing:17.979906px;}
.ws3{word-spacing:17.979917px;}
.ws5{word-spacing:17.979929px;}
.ws18{word-spacing:17.979940px;}
.ws13{word-spacing:22.483674px;}
.ws16{word-spacing:22.483684px;}
.ws11{word-spacing:22.483695px;}
.ws15{word-spacing:22.483707px;}
.ws12{word-spacing:22.483718px;}
.ws14{word-spacing:22.483729px;}
.ws10{word-spacing:26.987485px;}
._1de{margin-left:-2669.122326px;}
._17b{margin-left:-2668.031444px;}
._157{margin-left:-2666.096132px;}
._1f7{margin-left:-2663.949920px;}
._1cd{margin-left:-2649.242367px;}
._c3{margin-left:-2645.653349px;}
._1f9{margin-left:-2634.922977px;}
._1a3{margin-left:-2629.259896px;}
._9b{margin-left:-2627.777819px;}
._1c8{margin-left:-2626.688292px;}
._128{margin-left:-2625.597635px;}
._1b7{margin-left:-2614.725169px;}
._17a{margin-left:-2609.130323px;}
._d2{margin-left:-2605.687719px;}
._1bb{margin-left:-2604.274638px;}
._1c2{margin-left:-2595.689607px;}
._1c3{margin-left:-2593.050650px;}
._187{margin-left:-2591.502195px;}
._1e3{margin-left:-2589.461504px;}
._160{margin-left:-2587.772494px;}
._17e{margin-left:-2586.224583px;}
._15a{margin-left:-2571.974325px;}
._fc{margin-left:-2569.969382px;}
._208{margin-left:-2568.246825px;}
._10d{margin-left:-2565.816626px;}
._105{margin-left:-2563.353106px;}
._1fe{margin-left:-2560.890981px;}
._92{margin-left:-2556.703531px;}
._a9{margin-left:-2554.487126px;}
._1d3{margin-left:-2552.868525px;}
._155{margin-left:-2549.138807px;}
._1f3{margin-left:-2548.118153px;}
._1d4{margin-left:-2546.077646px;}
._1d5{margin-left:-2544.143078px;}
._f3{margin-left:-2540.905122px;}
._1d0{margin-left:-2539.710861px;}
._152{margin-left:-2536.437841px;}
._1e9{margin-left:-2534.080987px;}
._117{margin-left:-2532.740982px;}
._f8{margin-left:-2531.017007px;}
._96{margin-left:-2528.625460px;}
._114{margin-left:-2526.021588px;}
._11f{margin-left:-2524.790556px;}
._122{margin-left:-2523.698317px;}
._1bd{margin-left:-2522.080952px;}
._4c{margin-left:-2520.919795px;}
._1d6{margin-left:-2516.592100px;}
._143{margin-left:-2514.058427px;}
._164{margin-left:-2512.088145px;}
._a4{margin-left:-2510.786199px;}
._14a{margin-left:-2509.062000px;}
._d9{margin-left:-2507.513976px;}
._147{margin-left:-2505.052233px;}
._19c{margin-left:-2502.271439px;}
._14e{margin-left:-2499.984023px;}
._f7{margin-left:-2496.783580px;}
._173{margin-left:-2494.811860px;}
._32{margin-left:-2492.172807px;}
._ee{margin-left:-2490.204916px;}
._43{margin-left:-2488.689501px;}
._dc{margin-left:-2486.507655px;}
._de{margin-left:-2485.030002px;}
._13d{margin-left:-2481.019139px;}
._1db{margin-left:-2479.364941px;}
._73{margin-left:-2477.781891px;}
._b0{margin-left:-2475.599221px;}
._1b9{margin-left:-2474.367464px;}
._1d9{margin-left:-2470.608344px;}
._1fc{margin-left:-2469.020766px;}
._1cc{margin-left:-2465.889109px;}
._1e8{margin-left:-2464.727887px;}
._130{margin-left:-2463.533176px;}
._1b2{margin-left:-2462.053303px;}
._68{margin-left:-2460.541347px;}
._171{margin-left:-2458.393784px;}
._1ea{margin-left:-2456.635551px;}
._15e{margin-left:-2453.785972px;}
._1ed{margin-left:-2452.201967px;}
._190{margin-left:-2450.548165px;}
._20b{margin-left:-2449.180419px;}
._13f{margin-left:-2446.712751px;}
._81{margin-left:-2443.968473px;}
._1f1{margin-left:-2442.948159px;}
._6d{margin-left:-2441.785699px;}
._15d{margin-left:-2440.590687px;}
._59{margin-left:-2437.283114px;}
._1b5{margin-left:-2436.227630px;}
._1f6{margin-left:-2434.329555px;}
._12d{margin-left:-2432.462558px;}
._7b{margin-left:-2429.260198px;}
._1da{margin-left:-2427.676833px;}
._18f{margin-left:-2426.517709px;}
._16a{margin-left:-2424.723113px;}
._198{margin-left:-2423.701501px;}
._1d2{margin-left:-2421.449732px;}
._135{margin-left:-2417.191653px;}
._15c{margin-left:-2415.995863px;}
._1bc{margin-left:-2412.970906px;}
._ff{margin-left:-2411.068722px;}
._29{margin-left:-2408.853087px;}
._153{margin-left:-2407.234058px;}
._ce{margin-left:-2406.108687px;}
._1c1{margin-left:-2404.913016px;}
._150{margin-left:-2403.856505px;}
._14c{margin-left:-2401.639899px;}
._15f{margin-left:-2400.549111px;}
._1a5{margin-left:-2397.491560px;}
._168{margin-left:-2394.536712px;}
._102{margin-left:-2392.914573px;}
._ca{margin-left:-2391.718058px;}
._1dd{margin-left:-2388.026505px;}
._1c0{margin-left:-2384.469393px;}
._200{margin-left:-2383.413768px;}
._1c4{margin-left:-2380.915629px;}
._148{margin-left:-2375.989644px;}
._177{margin-left:-2374.479873px;}
._13b{margin-left:-2371.841052px;}
._c7{margin-left:-2366.489400px;}
._b9{margin-left:-2365.403103px;}
._20e{margin-left:-2363.779383px;}
._1b1{margin-left:-2361.810527px;}
._1f{margin-left:-2360.085411px;}
._1f0{margin-left:-2358.855122px;}
._111{margin-left:-2352.591035px;}
._18e{margin-left:-2350.693550px;}
._139{margin-left:-2347.806545px;}
._12e{margin-left:-2346.011327px;}
._179{margin-left:-2343.759431px;}
._11e{margin-left:-2341.226137px;}
._1ad{margin-left:-2339.924137px;}
._19a{margin-left:-2338.833205px;}
._1d8{margin-left:-2337.359101px;}
._159{margin-left:-2331.796323px;}
._129{margin-left:-2330.670280px;}
._19f{margin-left:-2327.960819px;}
._195{margin-left:-2326.060872px;}
._101{margin-left:-2324.653388px;}
._184{margin-left:-2316.842185px;}
._204{margin-left:-2314.451038px;}
._188{margin-left:-2311.774840px;}
._104{margin-left:-2310.157001px;}
._11a{margin-left:-2303.295555px;}
._205{margin-left:-2300.833394px;}
._137{margin-left:-2292.176901px;}
._1e1{margin-left:-2290.875177px;}
._1bf{margin-left:-2289.361941px;}
._a0{margin-left:-2287.709957px;}
._140{margin-left:-2286.124894px;}
._176{margin-left:-2284.506405px;}
._182{margin-left:-2279.650962px;}
._fb{margin-left:-2276.625013px;}
._18d{margin-left:-2270.361947px;}
._20f{margin-left:-2265.261701px;}
._1ba{margin-left:-2260.896780px;}
._181{margin-left:-2256.568848px;}
._17d{margin-left:-2252.417676px;}
._18b{margin-left:-2249.426369px;}
._1cf{margin-left:-2245.450447px;}
._124{margin-left:-2239.679770px;}
._1a8{margin-left:-2234.331430px;}
._c1{margin-left:-2232.432089px;}
._1e4{margin-left:-2223.529314px;}
._162{margin-left:-2215.577436px;}
._1ab{margin-left:-2208.047729px;}
._1a7{margin-left:-2198.758619px;}
._1dc{margin-left:-2197.281799px;}
._1a2{margin-left:-2186.514137px;}
._20a{margin-left:-2176.134173px;}
._199{margin-left:-2166.000833px;}
._14{margin-left:-2162.239210px;}
._142{margin-left:-2155.095412px;}
._186{margin-left:-2153.369342px;}
._145{margin-left:-2139.963246px;}
._61{margin-left:-2133.242957px;}
._1f4{margin-left:-2099.467071px;}
._131{margin-left:-2094.186533px;}
._1ca{margin-left:-2074.975847px;}
._1ef{margin-left:-2018.572440px;}
._b7{margin-left:-1974.730852px;}
._3d{margin-left:-1964.527226px;}
._2{margin-left:-1755.171635px;}
._a{margin-left:-1604.717315px;}
._217{margin-left:-923.591153px;}
._1f2{margin-left:-277.826780px;}
._1f8{margin-left:-276.805114px;}
._1fb{margin-left:-137.610079px;}
._e4{width:1.477803px;}
._ea{width:15.024326px;}
._e7{width:17.170658px;}
._e0{width:19.985698px;}
._e6{width:21.287391px;}
._e8{width:23.081867px;}
._1e{width:24.489319px;}
._e5{width:27.093045px;}
._60{width:28.993097px;}
._1fa{width:30.462795px;}
._e2{width:32.441323px;}
._3c{width:33.496975px;}
._1e5{width:35.925309px;}
._13{width:38.001111px;}
._27{width:40.076590px;}
._dd{width:41.095790px;}
._9{width:42.504255px;}
._51{width:44.510019px;}
._8{width:47.008211px;}
._1be{width:48.063671px;}
._63{width:49.084147px;}
._119{width:50.526727px;}
._12{width:51.652714px;}
._49{width:52.884210px;}
._8d{width:54.220796px;}
._e9{width:55.558331px;}
._10c{width:56.930581px;}
._1d{width:58.091703px;}
._20{width:60.484335px;}
._16{width:62.525088px;}
._ae{width:64.988114px;}
._108{width:67.240003px;}
._c5{width:68.506623px;}
._58{width:69.527102px;}
._209{width:71.108704px;}
._11d{width:72.130814px;}
._57{width:74.030845px;}
._24{width:76.106817px;}
._19e{width:77.162367px;}
._bb{width:78.992027px;}
._38{width:80.047623px;}
._146{width:81.103173px;}
._20c{width:82.440322px;}
._72{width:83.566154px;}
._4d{width:84.621772px;}
._f1{width:85.677368px;}
._79{width:87.225519px;}
._8f{width:88.421835px;}
._5e{width:89.618152px;}
._1{width:92.045959px;}
._6a{width:93.629307px;}
._0{width:96.549749px;}
._17{width:97.710856px;}
._13c{width:98.907239px;}
._3a{width:100.103488px;}
._7e{width:102.003542px;}
._7f{width:103.551761px;}
._65{width:104.607289px;}
._11{width:106.577669px;}
._107{width:107.808723px;}
._90{width:109.603623px;}
._134{width:110.729522px;}
._7{width:112.066694px;}
._48{width:113.614868px;}
._f{width:115.022299px;}
._f5{width:116.148198px;}
._30{width:118.118646px;}
._39{width:119.666797px;}
._d1{width:121.566784px;}
._2b{width:122.622379px;}
._18c{width:123.893465px;}
._a3{width:125.226059px;}
._2e{width:126.703974px;}
._cf{width:128.744771px;}
._a2{width:129.800276px;}
._189{width:131.137358px;}
._f6{width:132.192953px;}
._b6{width:133.494791px;}
._ba{width:135.148513px;}
._b5{width:136.168904px;}
._af{width:137.541190px;}
._123{width:138.878204px;}
._10b{width:140.601073px;}
._203{width:141.659858px;}
._2a{width:142.678312px;}
._50{width:144.719042px;}
._fe{width:145.774570px;}
._206{width:146.865442px;}
._54{width:148.659848px;}
._41{width:150.208022px;}
._77{width:151.756195px;}
._62{width:153.163626px;}
._bf{width:155.134119px;}
._98{width:157.104432px;}
._b{width:158.159983px;}
._1d1{width:159.426738px;}
._3{width:160.623054px;}
._97{width:161.678627px;}
._89{width:164.141586px;}
._161{width:165.447887px;}
._7c{width:166.745378px;}
._37{width:168.223180px;}
._12f{width:169.560262px;}
._3f{width:170.615812px;}
._8c{width:172.234335px;}
._1a{width:174.275087px;}
._110{width:175.752957px;}
._cc{width:176.949180px;}
._1ff{width:178.174065px;}
._d{width:179.201140px;}
._52{width:180.819662px;}
._215{width:182.121536px;}
._132{width:183.634524px;}
._84{width:184.690097px;}
._ef{width:186.027134px;}
._11c{width:188.138347px;}
._1ec{width:189.224668px;}
._46{width:190.249448px;}
._22{width:192.219851px;}
._ab{width:193.275402px;}
._2f{width:194.753227px;}
._8a{width:196.371749px;}
._1eb{width:197.708854px;}
._71{width:198.764427px;}
._33{width:200.734807px;}
._126{width:201.790264px;}
._10{width:203.057068px;}
._36{width:204.183013px;}
._4b{width:205.801580px;}
._100{width:207.138617px;}
._40{width:209.249763px;}
._a1{width:210.797892px;}
._1b4{width:211.819996px;}
._db{width:213.294609px;}
._9c{width:215.090578px;}
._26{width:216.216568px;}
._17f{width:217.272118px;}
._15{width:218.749943px;}
._d7{width:220.579648px;}
._193{width:222.124726px;}
._c{width:223.183327px;}
._19b{width:224.562441px;}
._5b{width:225.575960px;}
._1a9{width:227.163013px;}
._8b{width:228.390821px;}
._19{width:230.220481px;}
._115{width:231.839026px;}
._c9{width:233.527943px;}
._1c{width:234.724259px;}
._34{width:236.765056px;}
._1b{width:238.313230px;}
._23{width:240.353982px;}
._cb{width:241.409645px;}
._7a{width:243.239238px;}
._21{width:244.787366px;}
._5f{width:245.842962px;}
._169{width:247.180021px;}
._85{width:248.798567px;}
._1c6{width:249.819102px;}
._109{width:250.980107px;}
._c4{width:252.317098px;}
._82{width:253.513437px;}
._185{width:254.709866px;}
._6c{width:256.328343px;}
._1af{width:257.417667px;}
._5c{width:258.650582px;}
._f4{width:260.022815px;}
._9a{width:261.254306px;}
._2d{width:262.943223px;}
._25{width:264.280304px;}
._14f{width:265.721780px;}
._9f{width:266.743376px;}
._5{width:268.291460px;}
._156{width:269.558215px;}
._6f{width:270.613743px;}
._86{width:272.373054px;}
._202{width:273.397793px;}
._44{width:274.413806px;}
._75{width:275.821236px;}
._e1{width:277.052657px;}
._3e{width:278.284218px;}
._167{width:279.621299px;}
._67{width:280.888010px;}
._6e{width:282.717669px;}
._1a0{width:283.808385px;}
._88{width:284.899187px;}
._69{width:286.517732px;}
._76{width:287.784398px;}
._a7{width:288.839993px;}
._bc{width:290.317818px;}
._16f{width:291.725876px;}
._d6{width:292.780844px;}
._1a4{width:294.399345px;}
._b2{width:295.525267px;}
._55{width:296.932697px;}
._91{width:298.269734px;}
._214{width:299.289040px;}
._3b{width:300.380925px;}
._a6{width:301.506870px;}
._1fd{width:302.629397px;}
._78{width:303.829108px;}
._141{width:305.200705px;}
._42{width:306.292134px;}
._136{width:307.383296px;}
._c2{width:309.076185px;}
._d4{width:310.690803px;}
._11b{width:311.921812px;}
._f0{width:313.117321px;}
._5a{width:314.455232px;}
._17c{width:315.933729px;}
._f2{width:317.230466px;}
._1c7{width:318.395794px;}
._d3{width:319.416447px;}
._13e{width:320.720397px;}
._5d{width:321.914615px;}
._1f5{width:323.354661px;}
._ad{width:325.151683px;}
._45{width:326.347999px;}
._d5{width:328.635203px;}
._4a{width:329.796182px;}
._106{width:331.485122px;}
._94{width:332.962924px;}
._bd{width:334.370355px;}
._35{width:336.411107px;}
._c0{width:338.451904px;}
._10e{width:339.718614px;}
._d0{width:341.407508px;}
._9e{width:342.955682px;}
._138{width:344.926915px;}
._1cb{width:345.947636px;}
._e{width:347.248323px;}
._127{width:348.866891px;}
._18{width:350.485459px;}
._1d7{width:351.540044px;}
._53{width:352.948440px;}
._192{width:354.356505px;}
._b1{width:355.411489px;}
._99{width:357.452241px;}
._1b0{width:358.859675px;}
._83{width:361.181887px;}
._70{width:362.307877px;}
._95{width:363.433754px;}
._4f{width:365.052344px;}
._b4{width:367.022747px;}
._10f{width:368.500527px;}
._8e{width:369.907958px;}
._1b3{width:371.385783px;}
._16e{width:372.507273px;}
._12a{width:373.567323px;}
._218{width:374.904292px;}
._74{width:375.959955px;}
._da{width:377.367453px;}
._2c{width:378.915560px;}
._cd{width:380.393339px;}
._d8{width:381.448080px;}
._df{width:383.630362px;}
._a5{width:385.037861px;}
._1a1{width:387.466748px;}
._64{width:389.471290px;}
._a8{width:392.004665px;}
._47{width:393.412051px;}
._1c9{width:394.574588px;}
._15b{width:396.861263px;}
._149{width:397.986291px;}
._196{width:399.745817px;}
._66{width:401.575127px;}
._154{width:403.721437px;}
._174{width:405.800857px;}
._9d{width:407.064129px;}
._103{width:409.140125px;}
._120{width:410.160522px;}
._125{width:412.588306px;}
._113{width:413.929819px;}
._1aa{width:415.192060px;}
._ac{width:417.549510px;}
._c6{width:418.988697px;}
._1b6{width:421.138459px;}
._16c{width:422.369527px;}
._170{width:423.671812px;}
._c8{width:425.149270px;}
._56{width:427.028688px;}
._1ce{width:429.126612px;}
._e3{width:430.357130px;}
._4{width:432.890505px;}
._80{width:434.509028px;}
._ed{width:436.479431px;}
._112{width:438.309114px;}
._1e7{width:440.385619px;}
._180{width:441.652409px;}
._18a{width:443.586979px;}
._19d{width:445.979611px;}
._7d{width:447.035162px;}
._eb{width:453.087192px;}
._197{width:454.987168px;}
._118{width:456.042786px;}
._183{width:458.119153px;}
._28{width:460.616891px;}
._194{width:463.043709px;}
._212{width:465.191018px;}
._ec{width:469.202241px;}
._14b{width:470.817267px;}
._1c5{width:472.549063px;}
._178{width:474.972684px;}
._16d{width:476.696785px;}
._1b8{width:479.757903px;}
._b8{width:481.728351px;}
._f9{width:484.191378px;}
._191{width:485.462677px;}
._31{width:486.583965px;}
._175{width:488.695096px;}
._12b{width:489.891495px;}
._1a6{width:490.911897px;}
._4e{width:493.198934px;}
._172{width:494.429236px;}
._163{width:496.963637px;}
._12c{width:498.267389px;}
._216{width:499.496700px;}
._6{width:500.517529px;}
._1e0{width:501.780974px;}
._1ee{width:513.114373px;}
._16b{width:514.169630px;}
._fa{width:515.295552px;}
._165{width:517.758353px;}
._151{width:521.066040px;}
._121{width:522.121613px;}
._93{width:525.147612px;}
._be{width:530.109473px;}
._210{width:531.199722px;}
._aa{width:534.155169px;}
._211{width:536.932979px;}
._144{width:540.906287px;}
._166{width:544.183853px;}
._87{width:545.625721px;}
._1e2{width:550.199879px;}
._1df{width:552.839030px;}
._201{width:554.701926px;}
._14d{width:556.673993px;}
._116{width:557.935865px;}
._1e6{width:561.108681px;}
._6b{width:562.233389px;}
._10a{width:563.922306px;}
._13a{width:566.455569px;}
._133{width:571.803873px;}
._1ac{width:572.859423px;}
._158{width:576.659509px;}
._1ae{width:578.097773px;}
._fd{width:586.863449px;}
._b3{width:594.885737px;}
._207{width:679.226106px;}
._20d{width:867.434741px;}
._213{width:909.310509px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.030227px;}
.fs4{font-size:48.010276px;}
.fs6{font-size:50.442316px;}
.fs2{font-size:60.035365px;}
.fs0{font-size:72.060453px;}
.fs3{font-size:74.278215px;}
.fs1{font-size:84.040503px;}
.y0{bottom:0.000000px;}
.y1b5{bottom:0.062985px;}
.y51{bottom:0.063720px;}
.y3f{bottom:0.064080px;}
.y1{bottom:0.064275px;}
.y4e{bottom:0.064455px;}
.y1b4{bottom:69.807996px;}
.y192{bottom:69.808259px;}
.yb5{bottom:69.808302px;}
.y50{bottom:69.808456px;}
.y3e{bottom:69.808487px;}
.y171{bottom:69.808522px;}
.y1e{bottom:69.808526px;}
.y99{bottom:69.808566px;}
.y151{bottom:69.808636px;}
.y4d{bottom:69.808644px;}
.y86{bottom:69.808679px;}
.yd5{bottom:69.808774px;}
.y1fa{bottom:69.808855px;}
.y139{bottom:69.808899px;}
.y6c{bottom:69.808927px;}
.y2dd{bottom:69.808999px;}
.y1da{bottom:69.809119px;}
.y118{bottom:69.809162px;}
.yf6{bottom:69.809261px;}
.y2bd{bottom:69.809262px;}
.y1ca{bottom:69.809352px;}
.y29c{bottom:69.809525px;}
.y27b{bottom:69.809789px;}
.y267{bottom:69.810052px;}
.y21b{bottom:69.810062px;}
.y24d{bottom:69.810315px;}
.y231{bottom:69.810579px;}
.y1c9{bottom:112.595246px;}
.y24c{bottom:114.848099px;}
.y266{bottom:126.107281px;}
.y1b3{bottom:127.231169px;}
.y1d{bottom:127.231699px;}
.y1c8{bottom:130.610359px;}
.y24b{bottom:133.989157px;}
.y138{bottom:136.239629px;}
.y230{bottom:137.367254px;}
.y29b{bottom:138.492145px;}
.y2bc{bottom:141.869715px;}
.y117{bottom:144.121504px;}
.y265{bottom:144.122394px;}
.yf5{bottom:148.625381px;}
.y191{bottom:154.254102px;}
.y21a{bottom:154.255906px;}
.y22f{bottom:157.634256px;}
.y1b2{bottom:159.883562px;}
.y1c{bottom:159.884092px;}
.y3d{bottom:162.135943px;}
.y264{bottom:162.137508px;}
.y170{bottom:168.891645px;}
.y1f9{bottom:168.891979px;}
.y137{bottom:168.892022px;}
.y29a{bottom:171.144538px;}
.yd4{bottom:174.521620px;}
.y2bb{bottom:174.522108px;}
.y116{bottom:176.773897px;}
.y22e{bottom:176.775314px;}
.y27a{bottom:179.026413px;}
.y263{bottom:180.152621px;}
.yf4{bottom:181.277774px;}
.y190{bottom:186.906495px;}
.y219{bottom:186.908298px;}
.y1b1{bottom:192.535955px;}
.y2dc{bottom:192.536958px;}
.y3c{bottom:194.788336px;}
.y1b{bottom:194.788374px;}
.y262{bottom:198.167734px;}
.y16f{bottom:201.544038px;}
.y1f8{bottom:201.544371px;}
.y136{bottom:201.544415px;}
.y299{bottom:203.796930px;}
.yd3{bottom:207.174013px;}
.y2ba{bottom:207.174501px;}
.y115{bottom:209.426290px;}
.y279{bottom:215.056640px;}
.yf3{bottom:216.182056px;}
.y261{bottom:216.182848px;}
.y18f{bottom:219.558888px;}
.y218{bottom:219.560691px;}
.y3b{bottom:224.062895px;}
.y1b0{bottom:225.188348px;}
.y2db{bottom:225.189351px;}
.y1a{bottom:233.070490px;}
.y16e{bottom:234.196431px;}
.y1f7{bottom:234.196764px;}
.y135{bottom:234.196808px;}
.y260{bottom:234.197961px;}
.y298{bottom:236.449323px;}
.yd2{bottom:239.826405px;}
.y2b9{bottom:239.826894px;}
.yf2{bottom:240.952837px;}
.y114{bottom:242.078683px;}
.y278{bottom:247.709032px;}
.y18e{bottom:252.211281px;}
.y25f{bottom:252.213074px;}
.y217{bottom:252.213084px;}
.y3a{bottom:256.715288px;}
.y1af{bottom:257.840740px;}
.y2da{bottom:257.841744px;}
.y16d{bottom:266.848824px;}
.y1f6{bottom:266.849157px;}
.y134{bottom:266.849200px;}
.y297{bottom:269.101716px;}
.y19{bottom:271.352605px;}
.yd1{bottom:272.478798px;}
.y2b8{bottom:272.479287px;}
.yf1{bottom:273.605230px;}
.y113{bottom:274.731076px;}
.y277{bottom:280.361425px;}
.y25e{bottom:281.487633px;}
.y18d{bottom:284.863674px;}
.y216{bottom:284.865477px;}
.y39{bottom:289.367680px;}
.y1ae{bottom:290.493133px;}
.y2d9{bottom:290.494136px;}
.y16c{bottom:299.501217px;}
.y1f5{bottom:299.501550px;}
.y133{bottom:299.501593px;}
.y296{bottom:301.754109px;}
.yd0{bottom:305.131191px;}
.y2b7{bottom:305.131679px;}
.yf0{bottom:306.257622px;}
.y112{bottom:307.383469px;}
.y18{bottom:309.634721px;}
.y276{bottom:313.013818px;}
.y6b{bottom:314.138901px;}
.y18c{bottom:317.516066px;}
.y215{bottom:317.517870px;}
.y38{bottom:322.020073px;}
.y1ad{bottom:323.145526px;}
.y2d8{bottom:323.146529px;}
.yb4{bottom:325.397722px;}
.y16b{bottom:332.153609px;}
.y1f4{bottom:332.153943px;}
.y132{bottom:332.153986px;}
.y295{bottom:334.406502px;}
.ycf{bottom:337.783584px;}
.y2b6{bottom:337.784072px;}
.yef{bottom:338.910015px;}
.y111{bottom:340.035861px;}
.y275{bottom:345.666211px;}
.y85{bottom:346.791046px;}
.y17{bottom:347.916837px;}
.y18b{bottom:350.168459px;}
.y6a{bottom:350.169128px;}
.y214{bottom:350.170263px;}
.y37{bottom:354.672466px;}
.y1ac{bottom:355.797919px;}
.y2d7{bottom:355.798922px;}
.y16a{bottom:364.806002px;}
.y1f3{bottom:364.806335px;}
.y131{bottom:364.806379px;}
.y1c7{bottom:364.806832px;}
.y294{bottom:367.058895px;}
.yce{bottom:370.435977px;}
.y2b5{bottom:370.436465px;}
.yb3{bottom:371.561450px;}
.yee{bottom:371.562408px;}
.y110{bottom:374.940143px;}
.y274{bottom:378.318604px;}
.y18a{bottom:382.820852px;}
.y84{bottom:382.821272px;}
.y69{bottom:382.821520px;}
.y213{bottom:382.822655px;}
.y16{bottom:386.198953px;}
.y36{bottom:387.324859px;}
.y1ab{bottom:388.450312px;}
.y2d6{bottom:388.451315px;}
.y1c6{bottom:395.207336px;}
.y169{bottom:397.458395px;}
.y1f2{bottom:397.458728px;}
.y130{bottom:397.458772px;}
.y10f{bottom:399.710924px;}
.y293{bottom:399.711287px;}
.ycd{bottom:403.088370px;}
.y2b4{bottom:403.088858px;}
.yb2{bottom:404.213842px;}
.yed{bottom:404.214801px;}
.y273{bottom:410.970997px;}
.y189{bottom:415.473245px;}
.y83{bottom:415.473665px;}
.y68{bottom:415.473913px;}
.y212{bottom:415.475048px;}
.y24a{bottom:417.727191px;}
.y35{bottom:419.977252px;}
.y1aa{bottom:421.102704px;}
.y2d5{bottom:421.103708px;}
.y15{bottom:423.355124px;}
.y1c5{bottom:427.859729px;}
.y168{bottom:430.110788px;}
.y1f1{bottom:430.111121px;}
.y12f{bottom:430.111164px;}
.y10e{bottom:432.363317px;}
.y292{bottom:432.363680px;}
.y249{bottom:434.616359px;}
.ycc{bottom:435.740762px;}
.y2b3{bottom:435.741251px;}
.yec{bottom:436.867194px;}
.yb1{bottom:439.118124px;}
.y272{bottom:443.623389px;}
.y22d{bottom:443.624179px;}
.y188{bottom:448.125638px;}
.y82{bottom:448.126058px;}
.y67{bottom:448.126306px;}
.y211{bottom:448.127441px;}
.y150{bottom:450.377904px;}
.y34{bottom:451.503700px;}
.y1a9{bottom:453.755097px;}
.y2d4{bottom:453.756101px;}
.y248{bottom:459.387140px;}
.y1c4{bottom:460.512121px;}
.y22c{bottom:461.639293px;}
.y167{bottom:462.763181px;}
.y1f0{bottom:462.763514px;}
.y12e{bottom:462.763557px;}
.y10d{bottom:465.015710px;}
.y291{bottom:465.016073px;}
.ycb{bottom:468.393155px;}
.y2b2{bottom:468.393643px;}
.yeb{bottom:469.519586px;}
.y271{bottom:476.275782px;}
.yb0{bottom:477.400240px;}
.y33{bottom:479.652314px;}
.y22b{bottom:479.654406px;}
.y187{bottom:480.778031px;}
.y81{bottom:480.778451px;}
.y66{bottom:480.778699px;}
.y210{bottom:480.779834px;}
.y1a8{bottom:486.407490px;}
.y14f{bottom:486.408130px;}
.y2d3{bottom:486.408493px;}
.y247{bottom:492.039533px;}
.y1c3{bottom:493.164514px;}
.y166{bottom:495.415573px;}
.y1ef{bottom:495.415907px;}
.y12d{bottom:495.415950px;}
.y10c{bottom:497.668103px;}
.y290{bottom:497.668466px;}
.y22a{bottom:497.669519px;}
.yca{bottom:501.045548px;}
.y2b1{bottom:501.046036px;}
.y14{bottom:502.171244px;}
.yea{bottom:502.171979px;}
.yaf{bottom:507.800744px;}
.y32{bottom:507.800929px;}
.y270{bottom:508.928175px;}
.y186{bottom:513.430423px;}
.y80{bottom:513.430843px;}
.y65{bottom:513.431092px;}
.y20f{bottom:513.432227px;}
.y229{bottom:515.684632px;}
.y1a7{bottom:519.059883px;}
.y14e{bottom:519.060523px;}
.y2d2{bottom:519.060886px;}
.y246{bottom:524.691926px;}
.y1c2{bottom:525.816907px;}
.y165{bottom:528.067966px;}
.y1ee{bottom:528.068300px;}
.y12c{bottom:528.068343px;}
.y10b{bottom:530.320495px;}
.y28f{bottom:530.320859px;}
.yc9{bottom:533.697941px;}
.y2b0{bottom:533.698429px;}
.y228{bottom:534.825690px;}
.y31{bottom:535.949543px;}
.ye9{bottom:537.076261px;}
.y13{bottom:540.453360px;}
.y26f{bottom:541.580568px;}
.yae{bottom:544.956915px;}
.y185{bottom:546.082816px;}
.y7f{bottom:546.083236px;}
.y64{bottom:546.083485px;}
.y20e{bottom:546.084619px;}
.y1a6{bottom:551.712276px;}
.y14d{bottom:551.712916px;}
.y2d1{bottom:551.713279px;}
.y1d9{bottom:556.217177px;}
.y245{bottom:557.344319px;}
.y1c1{bottom:558.469300px;}
.y164{bottom:560.720359px;}
.y1ed{bottom:560.720692px;}
.y12b{bottom:560.720736px;}
.y10a{bottom:562.972888px;}
.y28e{bottom:562.973251px;}
.y30{bottom:564.098158px;}
.yc8{bottom:566.350334px;}
.y2af{bottom:566.350822px;}
.y12{bottom:573.105753px;}
.y26e{bottom:574.232961px;}
.ye8{bottom:575.358377px;}
.y184{bottom:578.735209px;}
.y98{bottom:578.735516px;}
.y7e{bottom:578.735629px;}
.y63{bottom:578.735877px;}
.y20d{bottom:578.737012px;}
.yad{bottom:582.113086px;}
.y1a5{bottom:584.364669px;}
.y14c{bottom:584.365309px;}
.y2d0{bottom:584.365672px;}
.y244{bottom:589.996711px;}
.y1c0{bottom:591.121693px;}
.y2f{bottom:592.246772px;}
.y1d8{bottom:592.247404px;}
.y163{bottom:593.372752px;}
.y1ec{bottom:593.373085px;}
.y12a{bottom:593.373129px;}
.y109{bottom:595.625281px;}
.y28d{bottom:595.625644px;}
.yc7{bottom:599.002726px;}
.y2ae{bottom:599.003215px;}
.y11{bottom:605.758146px;}
.y26d{bottom:606.885353px;}
.yac{bottom:608.009811px;}
.y183{bottom:611.387602px;}
.y97{bottom:611.387909px;}
.y7d{bottom:611.388022px;}
.y62{bottom:611.388270px;}
.ye7{bottom:611.388604px;}
.y20c{bottom:611.389405px;}
.y1a4{bottom:617.017061px;}
.y14b{bottom:617.017701px;}
.y2cf{bottom:617.018065px;}
.y2e{bottom:620.395387px;}
.y243{bottom:622.649104px;}
.y1d7{bottom:624.899797px;}
.y162{bottom:626.025145px;}
.y1eb{bottom:626.025478px;}
.y129{bottom:626.025521px;}
.y1bf{bottom:626.025975px;}
.y108{bottom:628.277674px;}
.y28c{bottom:628.278037px;}
.yc6{bottom:631.655119px;}
.y2ad{bottom:631.655608px;}
.yab{bottom:633.906537px;}
.y10{bottom:638.410539px;}
.y26c{bottom:639.537746px;}
.y182{bottom:644.039995px;}
.y96{bottom:644.040301px;}
.y7c{bottom:644.040415px;}
.y61{bottom:644.040663px;}
.ye6{bottom:644.040996px;}
.y20b{bottom:644.041798px;}
.y2d{bottom:648.544001px;}
.y1a3{bottom:649.669454px;}
.y14a{bottom:649.670094px;}
.y2ce{bottom:649.670457px;}
.y242{bottom:655.301497px;}
.y1d6{bottom:657.552190px;}
.y161{bottom:658.677538px;}
.y1ea{bottom:658.677871px;}
.y128{bottom:658.677914px;}
.y1be{bottom:658.678368px;}
.yaa{bottom:659.803262px;}
.y26b{bottom:659.804749px;}
.y28b{bottom:660.930430px;}
.y107{bottom:663.181956px;}
.yc5{bottom:664.307512px;}
.y2ac{bottom:664.308000px;}
.y181{bottom:676.692387px;}
.yf{bottom:676.692654px;}
.y95{bottom:676.692694px;}
.y7b{bottom:676.692808px;}
.y60{bottom:676.693056px;}
.ye5{bottom:676.693389px;}
.y1bd{bottom:676.693481px;}
.y20a{bottom:676.694191px;}
.y2c{bottom:677.818560px;}
.y1a2{bottom:682.321847px;}
.y149{bottom:682.322487px;}
.y2cd{bottom:682.322850px;}
.y106{bottom:687.952737px;}
.y241{bottom:687.953890px;}
.y26a{bottom:689.079308px;}
.y1d5{bottom:690.204582px;}
.y160{bottom:691.329930px;}
.y1e9{bottom:691.330264px;}
.y127{bottom:691.330307px;}
.y28a{bottom:693.582823px;}
.y1bc{bottom:694.708594px;}
.ya9{bottom:696.959433px;}
.yc4{bottom:696.959905px;}
.y2ab{bottom:696.960393px;}
.y180{bottom:709.344780px;}
.y94{bottom:709.345087px;}
.y7a{bottom:709.345200px;}
.y5f{bottom:709.345449px;}
.ye4{bottom:709.345782px;}
.y209{bottom:709.346584px;}
.y2b{bottom:710.470953px;}
.y1a1{bottom:714.974240px;}
.ye{bottom:714.974770px;}
.y148{bottom:714.974880px;}
.y2cc{bottom:714.975243px;}
.y105{bottom:720.605129px;}
.y240{bottom:720.606283px;}
.ya8{bottom:722.856159px;}
.y1d4{bottom:722.856975px;}
.y15f{bottom:723.982323px;}
.y1e8{bottom:723.982656px;}
.y126{bottom:723.982700px;}
.y289{bottom:726.235216px;}
.y25d{bottom:726.235742px;}
.yc3{bottom:729.612298px;}
.y2aa{bottom:729.612786px;}
.y227{bottom:737.495715px;}
.y4c{bottom:738.619724px;}
.y17f{bottom:741.997173px;}
.y93{bottom:741.997480px;}
.y79{bottom:741.997593px;}
.y5e{bottom:741.997842px;}
.ye3{bottom:741.998175px;}
.y208{bottom:741.998976px;}
.y2a{bottom:743.123346px;}
.y25c{bottom:744.250856px;}
.y1a0{bottom:747.626633px;}
.y147{bottom:747.627273px;}
.y2cb{bottom:747.627636px;}
.ya7{bottom:748.752884px;}
.yd{bottom:753.256886px;}
.y104{bottom:753.257522px;}
.y23f{bottom:753.258676px;}
.y1d3{bottom:755.509368px;}
.y226{bottom:755.510828px;}
.y15e{bottom:756.634716px;}
.y1e7{bottom:756.635049px;}
.y125{bottom:756.635093px;}
.y288{bottom:758.887608px;}
.yc2{bottom:762.264691px;}
.y2a9{bottom:762.265179px;}
.y25b{bottom:771.273525px;}
.y225{bottom:773.525941px;}
.y17e{bottom:774.649566px;}
.ya6{bottom:774.649609px;}
.y92{bottom:774.649873px;}
.y4b{bottom:774.649951px;}
.y78{bottom:774.649986px;}
.y5d{bottom:774.650234px;}
.ye2{bottom:774.650568px;}
.y207{bottom:774.651369px;}
.y29{bottom:775.775739px;}
.y19f{bottom:780.279025px;}
.y146{bottom:780.279666px;}
.y2ca{bottom:780.280029px;}
.y103{bottom:785.909915px;}
.y23e{bottom:785.911068px;}
.y1d2{bottom:788.161761px;}
.y15d{bottom:789.287109px;}
.y1e6{bottom:789.287442px;}
.y124{bottom:789.287485px;}
.yc{bottom:791.539001px;}
.y287{bottom:791.540001px;}
.y224{bottom:791.541055px;}
.yc1{bottom:794.917083px;}
.y2a8{bottom:794.917572px;}
.y25a{bottom:798.296195px;}
.y17d{bottom:807.301959px;}
.y91{bottom:807.302265px;}
.y4a{bottom:807.302344px;}
.y77{bottom:807.302379px;}
.y5c{bottom:807.302627px;}
.ye1{bottom:807.302960px;}
.y206{bottom:807.303762px;}
.y28{bottom:808.428132px;}
.y223{bottom:809.556168px;}
.ya5{bottom:811.805780px;}
.y19e{bottom:812.931418px;}
.y145{bottom:812.932058px;}
.y2c9{bottom:812.932422px;}
.y102{bottom:818.562308px;}
.y1d1{bottom:820.814154px;}
.y23d{bottom:820.815350px;}
.y15c{bottom:821.939502px;}
.y1e5{bottom:821.939835px;}
.y123{bottom:821.939878px;}
.y286{bottom:824.192394px;}
.y259{bottom:825.318865px;}
.yc0{bottom:827.569476px;}
.y2a7{bottom:827.569964px;}
.y222{bottom:828.697226px;}
.yb{bottom:829.821117px;}
.ya4{bottom:837.702506px;}
.y17c{bottom:839.954352px;}
.y90{bottom:839.954658px;}
.y49{bottom:839.954737px;}
.y76{bottom:839.954772px;}
.y5b{bottom:839.955020px;}
.ye0{bottom:839.955353px;}
.y205{bottom:839.956155px;}
.y27{bottom:841.080525px;}
.y19d{bottom:845.583811px;}
.y144{bottom:845.584451px;}
.y2c8{bottom:845.584814px;}
.y23c{bottom:845.586131px;}
.y101{bottom:851.214701px;}
.y258{bottom:852.341535px;}
.y1d0{bottom:853.466547px;}
.y15b{bottom:854.591894px;}
.y1e4{bottom:854.592228px;}
.y122{bottom:854.592271px;}
.y285{bottom:856.844787px;}
.ybf{bottom:860.221869px;}
.y2a6{bottom:860.222357px;}
.ya{bottom:868.103233px;}
.y17b{bottom:872.606744px;}
.y8f{bottom:872.607051px;}
.y48{bottom:872.607129px;}
.y75{bottom:872.607164px;}
.y5a{bottom:872.607413px;}
.ydf{bottom:872.607746px;}
.y204{bottom:872.608548px;}
.y26{bottom:873.732917px;}
.ya3{bottom:874.858677px;}
.y19c{bottom:878.236204px;}
.y143{bottom:878.236844px;}
.y2c7{bottom:878.237207px;}
.y23b{bottom:878.238524px;}
.y257{bottom:879.364205px;}
.y100{bottom:883.867094px;}
.y1cf{bottom:886.118939px;}
.y1bb{bottom:886.119173px;}
.y15a{bottom:887.244287px;}
.y1e3{bottom:887.244621px;}
.y121{bottom:887.244664px;}
.y284{bottom:889.497180px;}
.ybe{bottom:892.874262px;}
.y2a5{bottom:892.874750px;}
.ya2{bottom:900.755402px;}
.y1ba{bottom:904.134286px;}
.y17a{bottom:905.259137px;}
.y8e{bottom:905.259444px;}
.y47{bottom:905.259522px;}
.y74{bottom:905.259557px;}
.y59{bottom:905.259806px;}
.yde{bottom:905.260139px;}
.y203{bottom:905.260941px;}
.y25{bottom:906.385310px;}
.y9{bottom:906.385349px;}
.y1ce{bottom:906.385942px;}
.y256{bottom:909.764709px;}
.y19b{bottom:910.888597px;}
.y142{bottom:910.889237px;}
.y2c6{bottom:910.889600px;}
.y23a{bottom:910.890917px;}
.yff{bottom:916.519486px;}
.y159{bottom:919.896680px;}
.y1e2{bottom:919.897013px;}
.y120{bottom:919.897057px;}
.y1b9{bottom:922.149399px;}
.y283{bottom:922.149573px;}
.ybd{bottom:925.526655px;}
.y1cd{bottom:925.527000px;}
.y2a4{bottom:925.527143px;}
.ya1{bottom:926.652128px;}
.y179{bottom:937.911530px;}
.y8d{bottom:937.911837px;}
.y46{bottom:937.911915px;}
.y73{bottom:937.911950px;}
.y58{bottom:937.912198px;}
.ydd{bottom:937.912532px;}
.y202{bottom:937.913333px;}
.y1b8{bottom:941.290457px;}
.y255{bottom:942.417102px;}
.y19a{bottom:943.540990px;}
.y141{bottom:943.541630px;}
.y2c5{bottom:943.541993px;}
.y239{bottom:943.543310px;}
.y24{bottom:944.667426px;}
.y8{bottom:944.667464px;}
.yfe{bottom:949.171879px;}
.ya0{bottom:952.548853px;}
.y158{bottom:952.549073px;}
.y1e1{bottom:952.549406px;}
.y11f{bottom:952.549450px;}
.y282{bottom:955.927910px;}
.ybc{bottom:958.179048px;}
.y2a3{bottom:958.179536px;}
.y178{bottom:970.563923px;}
.y8c{bottom:970.564230px;}
.y45{bottom:970.564308px;}
.y72{bottom:970.564343px;}
.y57{bottom:970.564591px;}
.ydc{bottom:970.564925px;}
.y201{bottom:970.565726px;}
.y254{bottom:975.069494px;}
.y199{bottom:976.193382px;}
.y140{bottom:976.194022px;}
.y2c4{bottom:976.194386px;}
.y238{bottom:976.195702px;}
.y9f{bottom:978.445578px;}
.yfd{bottom:981.824272px;}
.y23{bottom:982.949542px;}
.y7{bottom:982.949580px;}
.y157{bottom:985.201466px;}
.y1e0{bottom:985.201799px;}
.y11e{bottom:985.201842px;}
.y281{bottom:989.706247px;}
.ybb{bottom:990.831440px;}
.y2a2{bottom:990.831929px;}
.y177{bottom:1003.216316px;}
.y8b{bottom:1003.216622px;}
.y44{bottom:1003.216701px;}
.y71{bottom:1003.216736px;}
.y56{bottom:1003.216984px;}
.ydb{bottom:1003.217317px;}
.y200{bottom:1003.218119px;}
.y9e{bottom:1004.342304px;}
.y253{bottom:1007.721887px;}
.y198{bottom:1008.845775px;}
.y13f{bottom:1008.846415px;}
.y2c3{bottom:1008.846778px;}
.y237{bottom:1008.848095px;}
.yfc{bottom:1016.728554px;}
.y156{bottom:1017.853859px;}
.y1df{bottom:1017.854192px;}
.y11d{bottom:1017.854235px;}
.y22{bottom:1021.231657px;}
.y6{bottom:1021.231696px;}
.yba{bottom:1023.483833px;}
.y2a1{bottom:1023.484321px;}
.y280{bottom:1023.484585px;}
.y9d{bottom:1030.239029px;}
.y8a{bottom:1035.869015px;}
.y43{bottom:1035.869094px;}
.y70{bottom:1035.869129px;}
.y55{bottom:1035.869377px;}
.y1ff{bottom:1035.870512px;}
.y221{bottom:1036.996973px;}
.y176{bottom:1038.120598px;}
.yda{bottom:1038.121599px;}
.y252{bottom:1040.374280px;}
.y197{bottom:1041.498168px;}
.y13e{bottom:1041.498808px;}
.y2c2{bottom:1041.499171px;}
.yfb{bottom:1041.499335px;}
.y236{bottom:1041.500488px;}
.y155{bottom:1050.506251px;}
.y1de{bottom:1050.506585px;}
.y11c{bottom:1050.506628px;}
.y220{bottom:1055.012086px;}
.y9c{bottom:1056.135754px;}
.yb9{bottom:1056.136226px;}
.y2a0{bottom:1056.136714px;}
.y27f{bottom:1056.136978px;}
.y21{bottom:1059.513773px;}
.y5{bottom:1059.513811px;}
.y89{bottom:1068.521408px;}
.y42{bottom:1068.521486px;}
.y6f{bottom:1068.521521px;}
.y54{bottom:1068.521770px;}
.y1fe{bottom:1068.522905px;}
.y196{bottom:1074.150561px;}
.y175{bottom:1074.150824px;}
.y13d{bottom:1074.151201px;}
.y2c1{bottom:1074.151564px;}
.yfa{bottom:1074.151728px;}
.yd9{bottom:1074.151826px;}
.y251{bottom:1074.152617px;}
.y235{bottom:1074.152881px;}
.y21f{bottom:1074.153144px;}
.y154{bottom:1085.410533px;}
.y1dd{bottom:1085.410867px;}
.y11b{bottom:1085.410910px;}
.yb8{bottom:1088.788619px;}
.y29f{bottom:1088.789107px;}
.y27e{bottom:1088.789370px;}
.y9b{bottom:1097.795704px;}
.y20{bottom:1097.795889px;}
.y4{bottom:1097.795927px;}
.y88{bottom:1101.173801px;}
.y41{bottom:1101.173879px;}
.y6e{bottom:1101.173914px;}
.y53{bottom:1101.174163px;}
.y1fd{bottom:1101.175297px;}
.y195{bottom:1106.802954px;}
.y174{bottom:1106.803217px;}
.y13c{bottom:1106.803594px;}
.y2c0{bottom:1106.803957px;}
.yf9{bottom:1106.804120px;}
.yd8{bottom:1106.804219px;}
.y250{bottom:1106.805010px;}
.y234{bottom:1106.805274px;}
.y21e{bottom:1106.805537px;}
.y9a{bottom:1136.077819px;}
.y4f{bottom:1136.077973px;}
.y1f{bottom:1136.078005px;}
.y153{bottom:1136.078039px;}
.y3{bottom:1136.078043px;}
.y87{bottom:1136.078083px;}
.y40{bottom:1136.078161px;}
.y6d{bottom:1136.078196px;}
.yb7{bottom:1136.078291px;}
.y1dc{bottom:1136.078373px;}
.y11a{bottom:1136.078416px;}
.y52{bottom:1136.078445px;}
.y29e{bottom:1136.078779px;}
.y27d{bottom:1136.079043px;}
.y1fc{bottom:1136.079579px;}
.y194{bottom:1139.455347px;}
.y173{bottom:1139.455610px;}
.y13b{bottom:1139.455987px;}
.y2bf{bottom:1139.456350px;}
.yf8{bottom:1139.456513px;}
.yd7{bottom:1139.456612px;}
.y24f{bottom:1139.457403px;}
.y233{bottom:1139.457666px;}
.y21d{bottom:1139.457930px;}
.y1cc{bottom:1141.708359px;}
.y1b7{bottom:1141.708592px;}
.y269{bottom:1141.709029px;}
.y2{bottom:1193.501216px;}
.y193{bottom:1195.752576px;}
.y172{bottom:1195.752839px;}
.y152{bottom:1195.753102px;}
.y13a{bottom:1195.753216px;}
.yb6{bottom:1195.753354px;}
.y1db{bottom:1195.753435px;}
.y119{bottom:1195.753479px;}
.y2be{bottom:1195.753579px;}
.y1cb{bottom:1195.753699px;}
.yf7{bottom:1195.753742px;}
.yd6{bottom:1195.753841px;}
.y29d{bottom:1195.753842px;}
.y1b6{bottom:1195.753932px;}
.y27c{bottom:1195.754105px;}
.y268{bottom:1195.754369px;}
.y24e{bottom:1195.754632px;}
.y1fb{bottom:1195.754642px;}
.y232{bottom:1195.754895px;}
.y21c{bottom:1195.755159px;}
.hd{height:32.300535px;}
.hc{height:43.040462px;}
.ha{height:49.506720px;}
.h9{height:53.820766px;}
.h2{height:64.601070px;}
.h5{height:65.058485px;}
.h4{height:75.340998px;}
.h3{height:75.874458px;}
.h7{height:1264.435545px;}
.h1{height:1264.435725px;}
.h6{height:1264.435920px;}
.h8{height:1264.436280px;}
.hb{height:1264.437015px;}
.h0{height:1264.500000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x7{left:108.090680px;}
.x9{left:112.594458px;}
.x8{left:114.846347px;}
.x4{left:117.098236px;}
.x24{left:118.224181px;}
.x27{left:124.979848px;}
.x5{left:127.231738px;}
.x16{left:135.113350px;}
.x1d{left:153.128463px;}
.x1{left:162.136020px;}
.x23{left:164.387909px;}
.x1a{left:175.647354px;}
.x30{left:206.047858px;}
.x11{left:216.181359px;}
.x3{left:218.433249px;}
.x2e{left:224.062971px;}
.x2c{left:230.818639px;}
.x20{left:244.329974px;}
.xf{left:270.226699px;}
.x2{left:283.738034px;}
.xc{left:326.523928px;}
.x10{left:345.664986px;}
.x14{left:347.916875px;}
.x1c{left:353.546598px;}
.x28{left:354.672543px;}
.x22{left:358.050376px;}
.xd{left:382.821157px;}
.x2a{left:385.073046px;}
.x13{left:388.450880px;}
.x25{left:395.206548px;}
.x15{left:396.332492px;}
.x12{left:399.710326px;}
.xa{left:410.969772px;}
.xe{left:426.732996px;}
.x6{left:445.874054px;}
.x1f{left:463.071056px;}
.xb{left:472.896724px;}
.x19{left:608.740136px;}
.x2d{left:693.581861px;}
.x1b{left:745.375312px;}
.x1e{left:746.501257px;}
.x29{left:747.627201px;}
.x2b{left:755.508813px;}
.x26{left:756.634758px;}
.x18{left:767.894204px;}
.x31{left:774.649871px;}
.x17{left:776.901760px;}
.x2f{left:778.027705px;}
.x21{left:790.413095px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.016793pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000010pt;}
.lsb{letter-spacing:1.688887pt;}
.ls9{letter-spacing:1.688927pt;}
.lsa{letter-spacing:20.867507pt;}
.ls6{letter-spacing:75.219333pt;}
.ls8{letter-spacing:85.790722pt;}
.ls1{letter-spacing:132.955289pt;}
.ls4{letter-spacing:231.850735pt;}
.ls5{letter-spacing:247.926741pt;}
.ls3{letter-spacing:249.678211pt;}
.ls7{letter-spacing:265.691645pt;}
.ws7{word-spacing:-20.754794pt;}
.ws1a{word-spacing:-18.421714pt;}
.ws1c{word-spacing:-18.421674pt;}
.ws4{word-spacing:-17.796180pt;}
.ws1d{word-spacing:-9.539232pt;}
.wsd{word-spacing:-0.074703pt;}
.ws2{word-spacing:-0.064054pt;}
.wsc{word-spacing:-0.031285pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:3.972054pt;}
.wse{word-spacing:3.972054pt;}
.ws9{word-spacing:3.972063pt;}
.wsb{word-spacing:3.972083pt;}
.ws1b{word-spacing:6.474162pt;}
.ws19{word-spacing:6.474202pt;}
.ws8{word-spacing:7.975442pt;}
.ws1e{word-spacing:11.978789pt;}
.ws6{word-spacing:11.978800pt;}
.wsa{word-spacing:11.978810pt;}
.ws17{word-spacing:15.982138pt;}
.ws1{word-spacing:15.982139pt;}
.ws3{word-spacing:15.982148pt;}
.ws5{word-spacing:15.982159pt;}
.ws18{word-spacing:15.982169pt;}
.ws13{word-spacing:19.985488pt;}
.ws16{word-spacing:19.985497pt;}
.ws11{word-spacing:19.985507pt;}
.ws15{word-spacing:19.985517pt;}
.ws12{word-spacing:19.985527pt;}
.ws14{word-spacing:19.985537pt;}
.ws10{word-spacing:23.988875pt;}
._1de{margin-left:-2372.553179pt;}
._17b{margin-left:-2371.583506pt;}
._157{margin-left:-2369.863229pt;}
._1f7{margin-left:-2367.955484pt;}
._1cd{margin-left:-2354.882104pt;}
._c3{margin-left:-2351.691866pt;}
._1f9{margin-left:-2342.153757pt;}
._1a3{margin-left:-2337.119908pt;}
._9b{margin-left:-2335.802506pt;}
._1c8{margin-left:-2334.834038pt;}
._128{margin-left:-2333.864564pt;}
._1b7{margin-left:-2324.200150pt;}
._17a{margin-left:-2319.226954pt;}
._d2{margin-left:-2316.166862pt;}
._1bb{margin-left:-2314.910790pt;}
._1c2{margin-left:-2307.279650pt;}
._1c3{margin-left:-2304.933911pt;}
._187{margin-left:-2303.557507pt;}
._1e3{margin-left:-2301.743559pt;}
._160{margin-left:-2300.242217pt;}
._17e{margin-left:-2298.866296pt;}
._15a{margin-left:-2286.199400pt;}
._fc{margin-left:-2284.417228pt;}
._208{margin-left:-2282.886067pt;}
._10d{margin-left:-2280.725890pt;}
._105{margin-left:-2278.536094pt;}
._1fe{margin-left:-2276.347539pt;}
._92{margin-left:-2272.625361pt;}
._a9{margin-left:-2270.655223pt;}
._1d3{margin-left:-2269.216467pt;}
._155{margin-left:-2265.901162pt;}
._1f3{margin-left:-2264.993914pt;}
._1d4{margin-left:-2263.180130pt;}
._1d5{margin-left:-2261.460514pt;}
._f3{margin-left:-2258.582331pt;}
._1d0{margin-left:-2257.520765pt;}
._152{margin-left:-2254.611414pt;}
._1e9{margin-left:-2252.516432pt;}
._117{margin-left:-2251.325317pt;}
._f8{margin-left:-2249.792895pt;}
._96{margin-left:-2247.667075pt;}
._114{margin-left:-2245.352523pt;}
._11f{margin-left:-2244.258272pt;}
._122{margin-left:-2243.287393pt;}
._1bd{margin-left:-2241.849735pt;}
._4c{margin-left:-2240.817596pt;}
._1d6{margin-left:-2236.970756pt;}
._143{margin-left:-2234.718602pt;}
._164{margin-left:-2232.967240pt;}
._a4{margin-left:-2231.809955pt;}
._14a{margin-left:-2230.277333pt;}
._d9{margin-left:-2228.901312pt;}
._147{margin-left:-2226.713096pt;}
._19c{margin-left:-2224.241279pt;}
._14e{margin-left:-2222.208021pt;}
._f7{margin-left:-2219.363182pt;}
._173{margin-left:-2217.610542pt;}
._32{margin-left:-2215.264718pt;}
._ee{margin-left:-2213.515481pt;}
._43{margin-left:-2212.168445pt;}
._dc{margin-left:-2210.229027pt;}
._de{margin-left:-2208.915557pt;}
._13d{margin-left:-2205.350346pt;}
._1db{margin-left:-2203.879947pt;}
._73{margin-left:-2202.472792pt;}
._b0{margin-left:-2200.532641pt;}
._1b9{margin-left:-2199.437745pt;}
._1d9{margin-left:-2196.096306pt;}
._1fc{margin-left:-2194.685125pt;}
._1cc{margin-left:-2191.901430pt;}
._1e8{margin-left:-2190.869233pt;}
._130{margin-left:-2189.807267pt;}
._1b2{margin-left:-2188.491825pt;}
._68{margin-left:-2187.147864pt;}
._171{margin-left:-2185.238919pt;}
._1ea{margin-left:-2183.676045pt;}
._15e{margin-left:-2181.143086pt;}
._1ed{margin-left:-2179.735082pt;}
._190{margin-left:-2178.265035pt;}
._20b{margin-left:-2177.049261pt;}
._13f{margin-left:-2174.855778pt;}
._81{margin-left:-2172.416421pt;}
._1f1{margin-left:-2171.509475pt;}
._6d{margin-left:-2170.476177pt;}
._15d{margin-left:-2169.413944pt;}
._59{margin-left:-2166.473879pt;}
._1b5{margin-left:-2165.535671pt;}
._1f6{margin-left:-2163.848493pt;}
._12d{margin-left:-2162.188940pt;}
._7b{margin-left:-2159.342398pt;}
._1da{margin-left:-2157.934962pt;}
._18f{margin-left:-2156.904630pt;}
._16a{margin-left:-2155.309434pt;}
._198{margin-left:-2154.401334pt;}
._1d2{margin-left:-2152.399762pt;}
._135{margin-left:-2148.614802pt;}
._15c{margin-left:-2147.551878pt;}
._1bc{margin-left:-2144.863028pt;}
._ff{margin-left:-2143.172198pt;}
._29{margin-left:-2141.202744pt;}
._153{margin-left:-2139.763607pt;}
._ce{margin-left:-2138.763278pt;}
._1c1{margin-left:-2137.700459pt;}
._150{margin-left:-2136.761338pt;}
._14c{margin-left:-2134.791021pt;}
._15f{margin-left:-2133.821432pt;}
._1a5{margin-left:-2131.103609pt;}
._168{margin-left:-2128.477077pt;}
._102{margin-left:-2127.035176pt;}
._ca{margin-left:-2125.971607pt;}
._1dd{margin-left:-2122.690226pt;}
._1c0{margin-left:-2119.528350pt;}
._200{margin-left:-2118.590016pt;}
._1c4{margin-left:-2116.369448pt;}
._148{margin-left:-2111.990795pt;}
._177{margin-left:-2110.648776pt;}
._13b{margin-left:-2108.303157pt;}
._c7{margin-left:-2103.546133pt;}
._b9{margin-left:-2102.580536pt;}
._20e{margin-left:-2101.137230pt;}
._1b1{margin-left:-2099.387135pt;}
._1f{margin-left:-2097.853698pt;}
._1f0{margin-left:-2096.760108pt;}
._111{margin-left:-2091.192031pt;}
._18e{margin-left:-2089.505377pt;}
._139{margin-left:-2086.939151pt;}
._12e{margin-left:-2085.343401pt;}
._179{margin-left:-2083.341717pt;}
._11e{margin-left:-2081.089899pt;}
._1ad{margin-left:-2079.932566pt;}
._19a{margin-left:-2078.962849pt;}
._1d8{margin-left:-2077.652534pt;}
._159{margin-left:-2072.707843pt;}
._129{margin-left:-2071.706915pt;}
._19f{margin-left:-2069.298506pt;}
._195{margin-left:-2067.609664pt;}
._101{margin-left:-2066.358567pt;}
._184{margin-left:-2059.415276pt;}
._204{margin-left:-2057.289812pt;}
._188{margin-left:-2054.910969pt;}
._104{margin-left:-2053.472890pt;}
._11a{margin-left:-2047.373827pt;}
._205{margin-left:-2045.185239pt;}
._137{margin-left:-2037.490579pt;}
._1e1{margin-left:-2036.333491pt;}
._1bf{margin-left:-2034.988392pt;}
._a0{margin-left:-2033.519962pt;}
._140{margin-left:-2032.111017pt;}
._176{margin-left:-2030.672360pt;}
._182{margin-left:-2026.356410pt;}
._fb{margin-left:-2023.666678pt;}
._18d{margin-left:-2018.099509pt;}
._20f{margin-left:-2013.565957pt;}
._1ba{margin-left:-2009.686027pt;}
._181{margin-left:-2005.838976pt;}
._17d{margin-left:-2002.149045pt;}
._18b{margin-left:-1999.490105pt;}
._1cf{margin-left:-1995.955953pt;}
._124{margin-left:-1990.826462pt;}
._1a8{margin-left:-1986.072382pt;}
._c1{margin-left:-1984.384079pt;}
._1e4{margin-left:-1976.470501pt;}
._162{margin-left:-1969.402165pt;}
._1ab{margin-left:-1962.709092pt;}
._1a7{margin-left:-1954.452106pt;}
._1dc{margin-left:-1953.139377pt;}
._1a2{margin-left:-1943.568122pt;}
._20a{margin-left:-1934.341487pt;}
._199{margin-left:-1925.334074pt;}
._14{margin-left:-1921.990409pt;}
._142{margin-left:-1915.640367pt;}
._186{margin-left:-1914.106082pt;}
._145{margin-left:-1902.189552pt;}
._61{margin-left:-1896.215962pt;}
._1f4{margin-left:-1866.192952pt;}
._131{margin-left:-1861.499140pt;}
._1ca{margin-left:-1844.422975pt;}
._1ef{margin-left:-1794.286613pt;}
._b7{margin-left:-1755.316313pt;}
._3d{margin-left:-1746.246423pt;}
._2{margin-left:-1560.152565pt;}
._a{margin-left:-1426.415391pt;}
._217{margin-left:-820.969914pt;}
._1f2{margin-left:-246.957138pt;}
._1f8{margin-left:-246.048990pt;}
._1fb{margin-left:-122.320070pt;}
._e4{width:1.313602pt;}
._ea{width:13.354957pt;}
._e7{width:15.262807pt;}
._e0{width:17.765065pt;}
._e6{width:18.922126pt;}
._e8{width:20.517215pt;}
._1e{width:21.768283pt;}
._e5{width:24.082707pt;}
._60{width:25.771642pt;}
._1fa{width:27.078040pt;}
._e2{width:28.836731pt;}
._3c{width:29.775089pt;}
._1e5{width:31.933608pt;}
._13{width:33.778766pt;}
._27{width:35.623636pt;}
._dd{width:36.529591pt;}
._9{width:37.781560pt;}
._51{width:39.564462pt;}
._8{width:41.785076pt;}
._1be{width:42.723263pt;}
._63{width:43.630353pt;}
._119{width:44.912646pt;}
._12{width:45.913523pt;}
._49{width:47.008186pt;}
._8d{width:48.196263pt;}
._e9{width:49.385183pt;}
._10c{width:50.604961pt;}
._1d{width:51.637070pt;}
._20{width:53.763854pt;}
._16{width:55.577856pt;}
._ae{width:57.767212pt;}
._108{width:59.768892pt;}
._c5{width:60.894776pt;}
._58{width:61.801869pt;}
._209{width:63.207737pt;}
._11d{width:64.116279pt;}
._57{width:65.805196pt;}
._24{width:67.650504pt;}
._19e{width:68.588771pt;}
._bb{width:70.215135pt;}
._38{width:71.153442pt;}
._146{width:72.091709pt;}
._20c{width:73.280287pt;}
._72{width:74.281026pt;}
._4d{width:75.219353pt;}
._f1{width:76.157660pt;}
._79{width:77.533795pt;}
._8f{width:78.597187pt;}
._5e{width:79.660579pt;}
._1{width:81.818630pt;}
._6a{width:83.226050pt;}
._0{width:85.821999pt;}
._17{width:86.854094pt;}
._13c{width:87.917546pt;}
._3a{width:88.980878pt;}
._7e{width:90.669815pt;}
._7f{width:92.046010pt;}
._65{width:92.984257pt;}
._11{width:94.735706pt;}
._107{width:95.829976pt;}
._90{width:97.425442pt;}
._134{width:98.426242pt;}
._7{width:99.614839pt;}
._48{width:100.990994pt;}
._f{width:102.242043pt;}
._f5{width:103.242843pt;}
._30{width:104.994352pt;}
._39{width:106.370487pt;}
._d1{width:108.059363pt;}
._2b{width:108.997671pt;}
._18c{width:110.127524pt;}
._a3{width:111.312052pt;}
._2e{width:112.625754pt;}
._cf{width:114.439796pt;}
._a2{width:115.378023pt;}
._189{width:116.566540pt;}
._f6{width:117.504848pt;}
._b6{width:118.662037pt;}
._ba{width:120.132012pt;}
._b5{width:121.039026pt;}
._af{width:122.258836pt;}
._123{width:123.447293pt;}
._10b{width:124.978732pt;}
._203{width:125.919874pt;}
._2a{width:126.825167pt;}
._50{width:128.639148pt;}
._fe{width:129.577395pt;}
._206{width:130.547060pt;}
._54{width:132.142087pt;}
._41{width:133.518242pt;}
._77{width:134.894396pt;}
._62{width:136.145446pt;}
._bf{width:137.896995pt;}
._98{width:139.648384pt;}
._b{width:140.586651pt;}
._1d1{width:141.712656pt;}
._3{width:142.776048pt;}
._97{width:143.714335pt;}
._89{width:145.903632pt;}
._161{width:147.064788pt;}
._7c{width:148.218114pt;}
._37{width:149.531716pt;}
._12f{width:150.720233pt;}
._3f{width:151.658500pt;}
._8c{width:153.097187pt;}
._1a{width:154.911189pt;}
._110{width:156.224851pt;}
._cc{width:157.288160pt;}
._1ff{width:158.376947pt;}
._d{width:159.289902pt;}
._52{width:160.728589pt;}
._215{width:161.885810pt;}
._132{width:163.230688pt;}
._84{width:164.168975pt;}
._ef{width:165.357452pt;}
._11c{width:167.234086pt;}
._1ec{width:168.199705pt;}
._46{width:169.110621pt;}
._22{width:170.862090pt;}
._ab{width:171.800357pt;}
._2f{width:173.113979pt;}
._8a{width:174.552666pt;}
._1eb{width:175.741203pt;}
._71{width:176.679490pt;}
._33{width:178.430940pt;}
._126{width:179.369124pt;}
._10{width:180.495172pt;}
._36{width:181.496011pt;}
._4b{width:182.934738pt;}
._100{width:184.123215pt;}
._40{width:185.999789pt;}
._a1{width:187.375904pt;}
._1b4{width:188.284441pt;}
._db{width:189.595208pt;}
._9c{width:191.191625pt;}
._26{width:192.192505pt;}
._17f{width:193.130772pt;}
._15{width:194.444394pt;}
._d7{width:196.070798pt;}
._193{width:197.444201pt;}
._c{width:198.385180pt;}
._19b{width:199.611059pt;}
._5b{width:200.511964pt;}
._1a9{width:201.922678pt;}
._8b{width:203.014063pt;}
._19{width:204.640427pt;}
._115{width:206.079134pt;}
._c9{width:207.580394pt;}
._1c{width:208.643786pt;}
._34{width:210.457828pt;}
._1b{width:211.833982pt;}
._23{width:213.647984pt;}
._cb{width:214.586351pt;}
._7a{width:216.212656pt;}
._21{width:217.588770pt;}
._5f{width:218.527077pt;}
._169{width:219.715574pt;}
._85{width:221.154281pt;}
._1c6{width:222.061424pt;}
._109{width:223.093428pt;}
._c4{width:224.281865pt;}
._82{width:225.345277pt;}
._185{width:226.408769pt;}
._6c{width:227.847416pt;}
._1af{width:228.815704pt;}
._5c{width:229.911628pt;}
._f4{width:231.131391pt;}
._9a{width:232.226050pt;}
._2d{width:233.727309pt;}
._25{width:234.915826pt;}
._14f{width:236.197138pt;}
._9f{width:237.105223pt;}
._5{width:238.481297pt;}
._156{width:239.607302pt;}
._6f{width:240.545549pt;}
._86{width:242.109381pt;}
._202{width:243.020261pt;}
._44{width:243.923383pt;}
._75{width:245.174432pt;}
._e1{width:246.269028pt;}
._3e{width:247.363749pt;}
._167{width:248.552266pt;}
._67{width:249.678231pt;}
._6e{width:251.304595pt;}
._1a0{width:252.274120pt;}
._88{width:253.243722pt;}
._69{width:254.682429pt;}
._76{width:255.808353pt;}
._a7{width:256.746661pt;}
._bc{width:258.060283pt;}
._16f{width:259.311890pt;}
._d6{width:260.249639pt;}
._1a4{width:261.688306pt;}
._b2{width:262.689126pt;}
._55{width:263.940175pt;}
._91{width:265.128652pt;}
._214{width:266.034702pt;}
._3b{width:267.005267pt;}
._a6{width:268.006106pt;}
._1fd{width:269.003908pt;}
._78{width:270.070318pt;}
._141{width:271.289516pt;}
._42{width:272.259675pt;}
._136{width:273.229596pt;}
._c2{width:274.734386pt;}
._d4{width:276.169603pt;}
._11b{width:277.263833pt;}
._f0{width:278.326507pt;}
._5a{width:279.515762pt;}
._17c{width:280.829982pt;}
._f2{width:281.982636pt;}
._1c7{width:283.018483pt;}
._d3{width:283.925731pt;}
._13e{width:285.084797pt;}
._5d{width:286.146325pt;}
._1f5{width:287.426365pt;}
._ad{width:289.023719pt;}
._45{width:290.087111pt;}
._d5{width:292.120181pt;}
._4a{width:293.152162pt;}
._106{width:294.653441pt;}
._94{width:295.967043pt;}
._bd{width:297.218093pt;}
._35{width:299.032095pt;}
._c0{width:300.846137pt;}
._10e{width:301.972101pt;}
._d0{width:303.473341pt;}
._9e{width:304.849495pt;}
._138{width:306.601702pt;}
._1cb{width:307.509010pt;}
._e{width:308.665176pt;}
._127{width:310.103903pt;}
._18{width:311.542630pt;}
._1d7{width:312.480039pt;}
._53{width:313.731947pt;}
._192{width:314.983560pt;}
._b1{width:315.921324pt;}
._99{width:317.735325pt;}
._1b0{width:318.986378pt;}
._83{width:321.050567pt;}
._70{width:322.051446pt;}
._95{width:323.052226pt;}
._4f{width:324.490973pt;}
._b4{width:326.242442pt;}
._10f{width:327.556024pt;}
._8e{width:328.807074pt;}
._1b3{width:330.120696pt;}
._16e{width:331.117576pt;}
._12a{width:332.059842pt;}
._218{width:333.248259pt;}
._74{width:334.186627pt;}
._da{width:335.437736pt;}
._2c{width:336.813831pt;}
._cd{width:338.127413pt;}
._d8{width:339.064960pt;}
._df{width:341.004766pt;}
._a5{width:342.255876pt;}
._1a1{width:344.414887pt;}
._64{width:346.196702pt;}
._a8{width:348.448591pt;}
._47{width:349.699601pt;}
._1c9{width:350.732967pt;}
._15b{width:352.765567pt;}
._149{width:353.765592pt;}
._196{width:355.329615pt;}
._66{width:356.955668pt;}
._154{width:358.863500pt;}
._174{width:360.711873pt;}
._9d{width:361.834781pt;}
._103{width:363.680111pt;}
._120{width:364.587130pt;}
._125{width:366.745160pt;}
._113{width:367.937617pt;}
._1aa{width:369.059609pt;}
._ac{width:371.155120pt;}
._c6{width:372.434397pt;}
._1b6{width:374.345297pt;}
._16c{width:375.439579pt;}
._170{width:376.597166pt;}
._c8{width:377.910462pt;}
._56{width:379.581056pt;}
._1ce{width:381.445877pt;}
._e3{width:382.539671pt;}
._4{width:384.791560pt;}
._80{width:386.230247pt;}
._ed{width:387.981717pt;}
._112{width:389.608101pt;}
._1e7{width:391.453883pt;}
._180{width:392.579919pt;}
._18a{width:394.299537pt;}
._19d{width:396.426321pt;}
._7d{width:397.364588pt;}
._eb{width:402.744171pt;}
._197{width:404.433038pt;}
._118{width:405.371365pt;}
._183{width:407.217025pt;}
._28{width:409.437236pt;}
._194{width:411.594408pt;}
._212{width:413.503127pt;}
._ec{width:417.068658pt;}
._14b{width:418.504237pt;}
._1c5{width:420.043611pt;}
._178{width:422.197941pt;}
._16d{width:423.730476pt;}
._1b8{width:426.451470pt;}
._b8{width:428.202979pt;}
._f9{width:430.392336pt;}
._191{width:431.522380pt;}
._31{width:432.519080pt;}
._175{width:434.395641pt;}
._12b{width:435.459106pt;}
._1a6{width:436.366131pt;}
._4e{width:438.399053pt;}
._172{width:439.492655pt;}
._163{width:441.745456pt;}
._12c{width:442.904346pt;}
._216{width:443.997067pt;}
._6{width:444.904470pt;}
._1e0{width:446.027532pt;}
._1ee{width:456.101665pt;}
._16b{width:457.039671pt;}
._fa{width:458.040490pt;}
._165{width:460.229647pt;}
._151{width:463.169814pt;}
._121{width:464.108101pt;}
._93{width:466.797877pt;}
._be{width:471.208420pt;}
._210{width:472.177530pt;}
._aa{width:474.804594pt;}
._211{width:477.273759pt;}
._144{width:480.805588pt;}
._166{width:483.718980pt;}
._87{width:485.000641pt;}
._1e2{width:489.066559pt;}
._1df{width:491.412471pt;}
._201{width:493.068379pt;}
._14d{width:494.821327pt;}
._116{width:495.942992pt;}
._1e6{width:498.763272pt;}
._6b{width:499.763012pt;}
._10a{width:501.264272pt;}
._13a{width:503.516061pt;}
._133{width:508.270109pt;}
._1ac{width:509.208376pt;}
._158{width:512.586230pt;}
._1ae{width:513.864687pt;}
._fd{width:521.656399pt;}
._b3{width:528.787322pt;}
._207{width:603.756539pt;}
._20d{width:771.053104pt;}
._213{width:808.276008pt;}
.fs5{font-size:32.026868pt;}
.fs4{font-size:42.675801pt;}
.fs6{font-size:44.837614pt;}
.fs2{font-size:53.364768pt;}
.fs0{font-size:64.053736pt;}
.fs3{font-size:66.025080pt;}
.fs1{font-size:74.702670pt;}
.y0{bottom:0.000000pt;}
.y1b5{bottom:0.055987pt;}
.y51{bottom:0.056640pt;}
.y3f{bottom:0.056960pt;}
.y1{bottom:0.057133pt;}
.y4e{bottom:0.057293pt;}
.y1b4{bottom:62.051552pt;}
.y192{bottom:62.051786pt;}
.yb5{bottom:62.051824pt;}
.y50{bottom:62.051961pt;}
.y3e{bottom:62.051989pt;}
.y171{bottom:62.052020pt;}
.y1e{bottom:62.052023pt;}
.y99{bottom:62.052058pt;}
.y151{bottom:62.052120pt;}
.y4d{bottom:62.052128pt;}
.y86{bottom:62.052159pt;}
.yd5{bottom:62.052243pt;}
.y1fa{bottom:62.052316pt;}
.y139{bottom:62.052355pt;}
.y6c{bottom:62.052380pt;}
.y2dd{bottom:62.052443pt;}
.y1da{bottom:62.052550pt;}
.y118{bottom:62.052589pt;}
.yf6{bottom:62.052676pt;}
.y2bd{bottom:62.052677pt;}
.y1ca{bottom:62.052757pt;}
.y29c{bottom:62.052912pt;}
.y27b{bottom:62.053146pt;}
.y267{bottom:62.053380pt;}
.y21b{bottom:62.053389pt;}
.y24d{bottom:62.053614pt;}
.y231{bottom:62.053848pt;}
.y1c9{bottom:100.084663pt;}
.y24c{bottom:102.087199pt;}
.y266{bottom:112.095361pt;}
.y1b3{bottom:113.094373pt;}
.y1d{bottom:113.094844pt;}
.y1c8{bottom:116.098097pt;}
.y24b{bottom:119.101472pt;}
.y138{bottom:121.101893pt;}
.y230{bottom:122.104225pt;}
.y29b{bottom:123.104129pt;}
.y2bc{bottom:126.106414pt;}
.y117{bottom:128.108004pt;}
.y265{bottom:128.108795pt;}
.yf5{bottom:132.111450pt;}
.y191{bottom:137.114758pt;}
.y21a{bottom:137.116361pt;}
.y22f{bottom:140.119339pt;}
.y1b2{bottom:142.118722pt;}
.y1c{bottom:142.119193pt;}
.y3d{bottom:144.120838pt;}
.y264{bottom:144.122229pt;}
.y170{bottom:150.125907pt;}
.y1f9{bottom:150.126203pt;}
.y137{bottom:150.126242pt;}
.y29a{bottom:152.128478pt;}
.yd4{bottom:155.130329pt;}
.y2bb{bottom:155.130763pt;}
.y116{bottom:157.132353pt;}
.y22e{bottom:157.133612pt;}
.y27a{bottom:159.134589pt;}
.y263{bottom:160.135663pt;}
.yf4{bottom:161.135799pt;}
.y190{bottom:166.139107pt;}
.y219{bottom:166.140710pt;}
.y1b1{bottom:171.143071pt;}
.y2dc{bottom:171.143963pt;}
.y3c{bottom:173.145187pt;}
.y1b{bottom:173.145221pt;}
.y262{bottom:176.149097pt;}
.y16f{bottom:179.150256pt;}
.y1f8{bottom:179.150552pt;}
.y136{bottom:179.150591pt;}
.y299{bottom:181.152827pt;}
.yd3{bottom:184.154678pt;}
.y2ba{bottom:184.155112pt;}
.y115{bottom:186.156702pt;}
.y279{bottom:191.161457pt;}
.yf3{bottom:192.161828pt;}
.y261{bottom:192.162531pt;}
.y18f{bottom:195.163456pt;}
.y218{bottom:195.165059pt;}
.y3b{bottom:199.167018pt;}
.y1b0{bottom:200.167420pt;}
.y2db{bottom:200.168312pt;}
.y1a{bottom:207.173769pt;}
.y16e{bottom:208.174605pt;}
.y1f7{bottom:208.174901pt;}
.y135{bottom:208.174940pt;}
.y260{bottom:208.175965pt;}
.y298{bottom:210.177176pt;}
.yd2{bottom:213.179027pt;}
.y2b9{bottom:213.179461pt;}
.yf2{bottom:214.180299pt;}
.y114{bottom:215.181052pt;}
.y278{bottom:220.185807pt;}
.y18e{bottom:224.187805pt;}
.y25f{bottom:224.189399pt;}
.y217{bottom:224.189408pt;}
.y3a{bottom:228.191367pt;}
.y1af{bottom:229.191769pt;}
.y2da{bottom:229.192661pt;}
.y16d{bottom:237.198954pt;}
.y1f6{bottom:237.199251pt;}
.y134{bottom:237.199289pt;}
.y297{bottom:239.201525pt;}
.y19{bottom:241.202316pt;}
.yd1{bottom:242.203376pt;}
.y2b8{bottom:242.203810pt;}
.yf1{bottom:243.204648pt;}
.y113{bottom:244.205401pt;}
.y277{bottom:249.210156pt;}
.y25e{bottom:250.211229pt;}
.y18d{bottom:253.212154pt;}
.y216{bottom:253.213757pt;}
.y39{bottom:257.215716pt;}
.y1ae{bottom:258.216118pt;}
.y2d9{bottom:258.217010pt;}
.y16c{bottom:266.223304pt;}
.y1f5{bottom:266.223600pt;}
.y133{bottom:266.223638pt;}
.y296{bottom:268.225875pt;}
.yd0{bottom:271.227725pt;}
.y2b7{bottom:271.228159pt;}
.yf0{bottom:272.228998pt;}
.y112{bottom:273.229750pt;}
.y18{bottom:275.230863pt;}
.y276{bottom:278.234505pt;}
.y6b{bottom:279.234579pt;}
.y18c{bottom:282.236504pt;}
.y215{bottom:282.238106pt;}
.y38{bottom:286.240065pt;}
.y1ad{bottom:287.240468pt;}
.y2d8{bottom:287.241359pt;}
.yb4{bottom:289.242419pt;}
.y16b{bottom:295.247653pt;}
.y1f4{bottom:295.247949pt;}
.y132{bottom:295.247988pt;}
.y295{bottom:297.250224pt;}
.ycf{bottom:300.252075pt;}
.y2b6{bottom:300.252509pt;}
.yef{bottom:301.253347pt;}
.y111{bottom:302.254099pt;}
.y275{bottom:307.258854pt;}
.y85{bottom:308.258707pt;}
.y17{bottom:309.259411pt;}
.y18b{bottom:311.260853pt;}
.y6a{bottom:311.261447pt;}
.y214{bottom:311.262456pt;}
.y37{bottom:315.264414pt;}
.y1ac{bottom:316.264817pt;}
.y2d7{bottom:316.265709pt;}
.y16a{bottom:324.272002pt;}
.y1f3{bottom:324.272298pt;}
.y131{bottom:324.272337pt;}
.y1c7{bottom:324.272740pt;}
.y294{bottom:326.274573pt;}
.yce{bottom:329.276424pt;}
.y2b5{bottom:329.276858pt;}
.yb3{bottom:330.276844pt;}
.yee{bottom:330.277696pt;}
.y110{bottom:333.280127pt;}
.y274{bottom:336.283203pt;}
.y18a{bottom:340.285202pt;}
.y84{bottom:340.285575pt;}
.y69{bottom:340.285796pt;}
.y213{bottom:340.286805pt;}
.y16{bottom:343.287958pt;}
.y36{bottom:344.288763pt;}
.y1ab{bottom:345.289166pt;}
.y2d6{bottom:345.290058pt;}
.y1c6{bottom:351.295410pt;}
.y169{bottom:353.296351pt;}
.y1f2{bottom:353.296647pt;}
.y130{bottom:353.296686pt;}
.y10f{bottom:355.298599pt;}
.y293{bottom:355.298922pt;}
.ycd{bottom:358.300773pt;}
.y2b4{bottom:358.301207pt;}
.yb2{bottom:359.301193pt;}
.yed{bottom:359.302045pt;}
.y273{bottom:365.307552pt;}
.y189{bottom:369.309551pt;}
.y83{bottom:369.309924pt;}
.y68{bottom:369.310145pt;}
.y212{bottom:369.311154pt;}
.y24a{bottom:371.313058pt;}
.y35{bottom:373.313113pt;}
.y1aa{bottom:374.313515pt;}
.y2d5{bottom:374.314407pt;}
.y15{bottom:376.315666pt;}
.y1c5{bottom:380.319759pt;}
.y168{bottom:382.320700pt;}
.y1f1{bottom:382.320997pt;}
.y12f{bottom:382.321035pt;}
.y10e{bottom:384.322948pt;}
.y292{bottom:384.323271pt;}
.y249{bottom:386.325653pt;}
.ycc{bottom:387.325122pt;}
.y2b3{bottom:387.325556pt;}
.yec{bottom:388.326394pt;}
.yb1{bottom:390.327222pt;}
.y272{bottom:394.331902pt;}
.y22d{bottom:394.332604pt;}
.y188{bottom:398.333900pt;}
.y82{bottom:398.334274pt;}
.y67{bottom:398.334494pt;}
.y211{bottom:398.335503pt;}
.y150{bottom:400.335914pt;}
.y34{bottom:401.336622pt;}
.y1a9{bottom:403.337864pt;}
.y2d4{bottom:403.338756pt;}
.y248{bottom:408.344125pt;}
.y1c4{bottom:409.344108pt;}
.y22c{bottom:410.346038pt;}
.y167{bottom:411.345049pt;}
.y1f0{bottom:411.345346pt;}
.y12e{bottom:411.345384pt;}
.y10d{bottom:413.347298pt;}
.y291{bottom:413.347620pt;}
.ycb{bottom:416.349471pt;}
.y2b2{bottom:416.349905pt;}
.yeb{bottom:417.350744pt;}
.y271{bottom:423.356251pt;}
.yb0{bottom:424.355769pt;}
.y33{bottom:426.357613pt;}
.y22b{bottom:426.359472pt;}
.y187{bottom:427.358249pt;}
.y81{bottom:427.358623pt;}
.y66{bottom:427.358844pt;}
.y210{bottom:427.359852pt;}
.y1a8{bottom:432.362213pt;}
.y14f{bottom:432.362782pt;}
.y2d3{bottom:432.363105pt;}
.y247{bottom:437.368474pt;}
.y1c3{bottom:438.368457pt;}
.y166{bottom:440.369399pt;}
.y1ef{bottom:440.369695pt;}
.y12d{bottom:440.369733pt;}
.y10c{bottom:442.371647pt;}
.y290{bottom:442.371970pt;}
.y22a{bottom:442.372906pt;}
.yca{bottom:445.373820pt;}
.y2b1{bottom:445.374254pt;}
.y14{bottom:446.374439pt;}
.yea{bottom:446.375093pt;}
.yaf{bottom:451.378439pt;}
.y32{bottom:451.378603pt;}
.y270{bottom:452.380600pt;}
.y186{bottom:456.382599pt;}
.y80{bottom:456.382972pt;}
.y65{bottom:456.383193pt;}
.y20f{bottom:456.384201pt;}
.y229{bottom:458.386340pt;}
.y1a7{bottom:461.386563pt;}
.y14e{bottom:461.387132pt;}
.y2d2{bottom:461.387454pt;}
.y246{bottom:466.392823pt;}
.y1c2{bottom:467.392806pt;}
.y165{bottom:469.393748pt;}
.y1ee{bottom:469.394044pt;}
.y12c{bottom:469.394083pt;}
.y10b{bottom:471.395996pt;}
.y28f{bottom:471.396319pt;}
.yc9{bottom:474.398170pt;}
.y2b0{bottom:474.398604pt;}
.y228{bottom:475.400614pt;}
.y31{bottom:476.399594pt;}
.ye9{bottom:477.401121pt;}
.y13{bottom:480.402987pt;}
.y26f{bottom:481.404949pt;}
.yae{bottom:484.406147pt;}
.y185{bottom:485.406948pt;}
.y7f{bottom:485.407321pt;}
.y64{bottom:485.407542pt;}
.y20e{bottom:485.408551pt;}
.y1a6{bottom:490.410912pt;}
.y14d{bottom:490.411481pt;}
.y2d1{bottom:490.411804pt;}
.y1d9{bottom:494.415269pt;}
.y245{bottom:495.417172pt;}
.y1c1{bottom:496.417155pt;}
.y164{bottom:498.418097pt;}
.y1ed{bottom:498.418393pt;}
.y12b{bottom:498.418432pt;}
.y10a{bottom:500.420345pt;}
.y28e{bottom:500.420668pt;}
.y30{bottom:501.420585pt;}
.yc8{bottom:503.422519pt;}
.y2af{bottom:503.422953pt;}
.y12{bottom:509.427336pt;}
.y26e{bottom:510.429298pt;}
.ye8{bottom:511.429668pt;}
.y184{bottom:514.431297pt;}
.y98{bottom:514.431570pt;}
.y7e{bottom:514.431670pt;}
.y63{bottom:514.431891pt;}
.y20d{bottom:514.432900pt;}
.yad{bottom:517.433854pt;}
.y1a5{bottom:519.435261pt;}
.y14c{bottom:519.435830pt;}
.y2d0{bottom:519.436153pt;}
.y244{bottom:524.441521pt;}
.y1c0{bottom:525.441505pt;}
.y2f{bottom:526.441575pt;}
.y1d8{bottom:526.442137pt;}
.y163{bottom:527.442446pt;}
.y1ec{bottom:527.442742pt;}
.y12a{bottom:527.442781pt;}
.y109{bottom:529.444694pt;}
.y28d{bottom:529.445017pt;}
.yc7{bottom:532.446868pt;}
.y2ae{bottom:532.447302pt;}
.y11{bottom:538.451685pt;}
.y26d{bottom:539.453648pt;}
.yac{bottom:540.453166pt;}
.y183{bottom:543.455646pt;}
.y97{bottom:543.455919pt;}
.y7d{bottom:543.456019pt;}
.y62{bottom:543.456240pt;}
.ye7{bottom:543.456536pt;}
.y20c{bottom:543.457249pt;}
.y1a4{bottom:548.459610pt;}
.y14b{bottom:548.460179pt;}
.y2cf{bottom:548.460502pt;}
.y2e{bottom:551.462566pt;}
.y243{bottom:553.465870pt;}
.y1d7{bottom:555.466486pt;}
.y162{bottom:556.466795pt;}
.y1eb{bottom:556.467092pt;}
.y129{bottom:556.467130pt;}
.y1bf{bottom:556.467533pt;}
.y108{bottom:558.469043pt;}
.y28c{bottom:558.469366pt;}
.yc6{bottom:561.471217pt;}
.y2ad{bottom:561.471651pt;}
.yab{bottom:563.472477pt;}
.y10{bottom:567.476034pt;}
.y26c{bottom:568.477997pt;}
.y182{bottom:572.479995pt;}
.y96{bottom:572.480268pt;}
.y7c{bottom:572.480369pt;}
.y61{bottom:572.480589pt;}
.ye6{bottom:572.480886pt;}
.y20b{bottom:572.481598pt;}
.y2d{bottom:576.483557pt;}
.y1a3{bottom:577.483959pt;}
.y14a{bottom:577.484528pt;}
.y2ce{bottom:577.484851pt;}
.y242{bottom:582.490220pt;}
.y1d6{bottom:584.490835pt;}
.y161{bottom:585.491144pt;}
.y1ea{bottom:585.491441pt;}
.y128{bottom:585.491479pt;}
.y1be{bottom:585.491882pt;}
.yaa{bottom:586.491789pt;}
.y26b{bottom:586.493110pt;}
.y28b{bottom:587.493716pt;}
.y107{bottom:589.495072pt;}
.yc5{bottom:590.495566pt;}
.y2ac{bottom:590.496000pt;}
.y181{bottom:601.504344pt;}
.yf{bottom:601.504582pt;}
.y95{bottom:601.504617pt;}
.y7b{bottom:601.504718pt;}
.y60{bottom:601.504939pt;}
.ye5{bottom:601.505235pt;}
.y1bd{bottom:601.505316pt;}
.y20a{bottom:601.505947pt;}
.y2c{bottom:602.505387pt;}
.y1a2{bottom:606.508308pt;}
.y149{bottom:606.508877pt;}
.y2cd{bottom:606.509200pt;}
.y106{bottom:611.513544pt;}
.y241{bottom:611.514569pt;}
.y26a{bottom:612.514940pt;}
.y1d5{bottom:613.515184pt;}
.y160{bottom:614.515494pt;}
.y1e9{bottom:614.515790pt;}
.y127{bottom:614.515828pt;}
.y28a{bottom:616.518065pt;}
.y1bc{bottom:617.518750pt;}
.ya9{bottom:619.519496pt;}
.yc4{bottom:619.519916pt;}
.y2ab{bottom:619.520349pt;}
.y180{bottom:630.528694pt;}
.y94{bottom:630.528966pt;}
.y7a{bottom:630.529067pt;}
.y5f{bottom:630.529288pt;}
.ye4{bottom:630.529584pt;}
.y209{bottom:630.530297pt;}
.y2b{bottom:631.529736pt;}
.y1a1{bottom:635.532658pt;}
.ye{bottom:635.533129pt;}
.y148{bottom:635.533227pt;}
.y2cc{bottom:635.533549pt;}
.y105{bottom:640.537893pt;}
.y240{bottom:640.538918pt;}
.ya8{bottom:642.538808pt;}
.y1d4{bottom:642.539534pt;}
.y15f{bottom:643.539843pt;}
.y1e8{bottom:643.540139pt;}
.y126{bottom:643.540178pt;}
.y289{bottom:645.542414pt;}
.y25d{bottom:645.542882pt;}
.yc3{bottom:648.544265pt;}
.y2aa{bottom:648.544699pt;}
.y227{bottom:655.551746pt;}
.y4c{bottom:656.550866pt;}
.y17f{bottom:659.553043pt;}
.y93{bottom:659.553315pt;}
.y79{bottom:659.553416pt;}
.y5e{bottom:659.553637pt;}
.ye3{bottom:659.553933pt;}
.y208{bottom:659.554646pt;}
.y2a{bottom:660.554085pt;}
.y25c{bottom:661.556316pt;}
.y1a0{bottom:664.557007pt;}
.y147{bottom:664.557576pt;}
.y2cb{bottom:664.557899pt;}
.ya7{bottom:665.558119pt;}
.yd{bottom:669.561676pt;}
.y104{bottom:669.562242pt;}
.y23f{bottom:669.563267pt;}
.y1d3{bottom:671.563883pt;}
.y226{bottom:671.565180pt;}
.y15e{bottom:672.564192pt;}
.y1e7{bottom:672.564488pt;}
.y125{bottom:672.564527pt;}
.y288{bottom:674.566763pt;}
.yc2{bottom:677.568614pt;}
.y2a9{bottom:677.569048pt;}
.y25b{bottom:685.576467pt;}
.y225{bottom:687.578615pt;}
.y17e{bottom:688.577392pt;}
.ya6{bottom:688.577431pt;}
.y92{bottom:688.577665pt;}
.y4b{bottom:688.577734pt;}
.y78{bottom:688.577765pt;}
.y5d{bottom:688.577986pt;}
.ye2{bottom:688.578282pt;}
.y207{bottom:688.578995pt;}
.y29{bottom:689.578435pt;}
.y19f{bottom:693.581356pt;}
.y146{bottom:693.581925pt;}
.y2ca{bottom:693.582248pt;}
.y103{bottom:698.586591pt;}
.y23e{bottom:698.587616pt;}
.y1d2{bottom:700.588232pt;}
.y15d{bottom:701.588541pt;}
.y1e6{bottom:701.588837pt;}
.y124{bottom:701.588876pt;}
.yc{bottom:703.590223pt;}
.y287{bottom:703.591112pt;}
.y224{bottom:703.592049pt;}
.yc1{bottom:706.592963pt;}
.y2a8{bottom:706.593397pt;}
.y25a{bottom:709.596618pt;}
.y17d{bottom:717.601741pt;}
.y91{bottom:717.602014pt;}
.y4a{bottom:717.602083pt;}
.y77{bottom:717.602115pt;}
.y5c{bottom:717.602335pt;}
.ye1{bottom:717.602632pt;}
.y206{bottom:717.603344pt;}
.y28{bottom:718.602784pt;}
.y223{bottom:719.605483pt;}
.ya5{bottom:721.605138pt;}
.y19e{bottom:722.605705pt;}
.y145{bottom:722.606274pt;}
.y2c9{bottom:722.606597pt;}
.y102{bottom:727.610940pt;}
.y1d1{bottom:729.612581pt;}
.y23d{bottom:729.613645pt;}
.y15c{bottom:730.612890pt;}
.y1e5{bottom:730.613187pt;}
.y123{bottom:730.613225pt;}
.y286{bottom:732.615461pt;}
.y259{bottom:733.616769pt;}
.yc0{bottom:735.617312pt;}
.y2a7{bottom:735.617746pt;}
.y222{bottom:736.619756pt;}
.yb{bottom:737.618771pt;}
.ya4{bottom:744.624450pt;}
.y17c{bottom:746.626090pt;}
.y90{bottom:746.626363pt;}
.y49{bottom:746.626433pt;}
.y76{bottom:746.626464pt;}
.y5b{bottom:746.626684pt;}
.ye0{bottom:746.626981pt;}
.y205{bottom:746.627693pt;}
.y27{bottom:747.627133pt;}
.y19d{bottom:751.630054pt;}
.y144{bottom:751.630623pt;}
.y2c8{bottom:751.630946pt;}
.y23c{bottom:751.632117pt;}
.y101{bottom:756.635290pt;}
.y258{bottom:757.636920pt;}
.y1d0{bottom:758.636930pt;}
.y15b{bottom:759.637240pt;}
.y1e4{bottom:759.637536pt;}
.y122{bottom:759.637574pt;}
.y285{bottom:761.639811pt;}
.ybf{bottom:764.641661pt;}
.y2a6{bottom:764.642095pt;}
.ya{bottom:771.647318pt;}
.y17b{bottom:775.650439pt;}
.y8f{bottom:775.650712pt;}
.y48{bottom:775.650782pt;}
.y75{bottom:775.650813pt;}
.y5a{bottom:775.651034pt;}
.ydf{bottom:775.651330pt;}
.y204{bottom:775.652042pt;}
.y26{bottom:776.651482pt;}
.ya3{bottom:777.652157pt;}
.y19c{bottom:780.654404pt;}
.y143{bottom:780.654972pt;}
.y2c7{bottom:780.655295pt;}
.y23b{bottom:780.656466pt;}
.y257{bottom:781.657071pt;}
.y100{bottom:785.659639pt;}
.y1cf{bottom:787.661279pt;}
.y1bb{bottom:787.661487pt;}
.y15a{bottom:788.661589pt;}
.y1e3{bottom:788.661885pt;}
.y121{bottom:788.661924pt;}
.y284{bottom:790.664160pt;}
.ybe{bottom:793.666011pt;}
.y2a5{bottom:793.666445pt;}
.ya2{bottom:800.671469pt;}
.y1ba{bottom:803.674921pt;}
.y17a{bottom:804.674789pt;}
.y8e{bottom:804.675061pt;}
.y47{bottom:804.675131pt;}
.y74{bottom:804.675162pt;}
.y59{bottom:804.675383pt;}
.yde{bottom:804.675679pt;}
.y203{bottom:804.676392pt;}
.y25{bottom:805.675831pt;}
.y9{bottom:805.675865pt;}
.y1ce{bottom:805.676393pt;}
.y256{bottom:808.679741pt;}
.y19b{bottom:809.678753pt;}
.y142{bottom:809.679322pt;}
.y2c6{bottom:809.679644pt;}
.y23a{bottom:809.680815pt;}
.yff{bottom:814.683988pt;}
.y159{bottom:817.685938pt;}
.y1e2{bottom:817.686234pt;}
.y120{bottom:817.686273pt;}
.y1b9{bottom:819.688355pt;}
.y283{bottom:819.688509pt;}
.ybd{bottom:822.690360pt;}
.y1cd{bottom:822.690666pt;}
.y2a4{bottom:822.690794pt;}
.ya1{bottom:823.690780pt;}
.y179{bottom:833.699138pt;}
.y8d{bottom:833.699410pt;}
.y46{bottom:833.699480pt;}
.y73{bottom:833.699511pt;}
.y58{bottom:833.699732pt;}
.ydd{bottom:833.700028pt;}
.y202{bottom:833.700741pt;}
.y1b8{bottom:836.702629pt;}
.y255{bottom:837.704090pt;}
.y19a{bottom:838.703102pt;}
.y141{bottom:838.703671pt;}
.y2c5{bottom:838.703994pt;}
.y239{bottom:838.705164pt;}
.y24{bottom:839.704379pt;}
.y8{bottom:839.704413pt;}
.yfe{bottom:843.708337pt;}
.ya0{bottom:846.710092pt;}
.y158{bottom:846.710287pt;}
.y1e1{bottom:846.710583pt;}
.y11f{bottom:846.710622pt;}
.y282{bottom:849.713698pt;}
.ybc{bottom:851.714709pt;}
.y2a3{bottom:851.715143pt;}
.y178{bottom:862.723487pt;}
.y8c{bottom:862.723760pt;}
.y45{bottom:862.723829pt;}
.y72{bottom:862.723860pt;}
.y57{bottom:862.724081pt;}
.ydc{bottom:862.724377pt;}
.y201{bottom:862.725090pt;}
.y254{bottom:866.728440pt;}
.y199{bottom:867.727451pt;}
.y140{bottom:867.728020pt;}
.y2c4{bottom:867.728343pt;}
.y238{bottom:867.729513pt;}
.y9f{bottom:869.729403pt;}
.yfd{bottom:872.732686pt;}
.y23{bottom:873.732926pt;}
.y7{bottom:873.732960pt;}
.y157{bottom:875.734636pt;}
.y1e0{bottom:875.734932pt;}
.y11e{bottom:875.734971pt;}
.y281{bottom:879.738887pt;}
.ybb{bottom:880.739058pt;}
.y2a2{bottom:880.739492pt;}
.y177{bottom:891.747836pt;}
.y8b{bottom:891.748109pt;}
.y44{bottom:891.748178pt;}
.y71{bottom:891.748210pt;}
.y56{bottom:891.748430pt;}
.ydb{bottom:891.748727pt;}
.y200{bottom:891.749439pt;}
.y9e{bottom:892.748714pt;}
.y253{bottom:895.752789pt;}
.y198{bottom:896.751800pt;}
.y13f{bottom:896.752369pt;}
.y2c3{bottom:896.752692pt;}
.y237{bottom:896.753862pt;}
.yfc{bottom:903.758715pt;}
.y156{bottom:904.758985pt;}
.y1df{bottom:904.759282pt;}
.y11d{bottom:904.759320pt;}
.y22{bottom:907.761473pt;}
.y6{bottom:907.761507pt;}
.yba{bottom:909.763407pt;}
.y2a1{bottom:909.763841pt;}
.y280{bottom:909.764075pt;}
.y9d{bottom:915.768026pt;}
.y8a{bottom:920.772458pt;}
.y43{bottom:920.772528pt;}
.y70{bottom:920.772559pt;}
.y55{bottom:920.772779pt;}
.y1ff{bottom:920.773788pt;}
.y221{bottom:921.775087pt;}
.y176{bottom:922.773865pt;}
.yda{bottom:922.774755pt;}
.y252{bottom:924.777138pt;}
.y197{bottom:925.776149pt;}
.y13e{bottom:925.776718pt;}
.y2c2{bottom:925.777041pt;}
.yfb{bottom:925.777186pt;}
.y236{bottom:925.778212pt;}
.y155{bottom:933.783335pt;}
.y1de{bottom:933.783631pt;}
.y11c{bottom:933.783669pt;}
.y220{bottom:937.788521pt;}
.y9c{bottom:938.787337pt;}
.yb9{bottom:938.787756pt;}
.y2a0{bottom:938.788190pt;}
.y27f{bottom:938.788424pt;}
.y21{bottom:941.790021pt;}
.y5{bottom:941.790055pt;}
.y89{bottom:949.796807pt;}
.y42{bottom:949.796877pt;}
.y6f{bottom:949.796908pt;}
.y54{bottom:949.797129pt;}
.y1fe{bottom:949.798137pt;}
.y196{bottom:954.800499pt;}
.y175{bottom:954.800733pt;}
.y13d{bottom:954.801067pt;}
.y2c1{bottom:954.801390pt;}
.yfa{bottom:954.801536pt;}
.yd9{bottom:954.801623pt;}
.y251{bottom:954.802327pt;}
.y235{bottom:954.802561pt;}
.y21f{bottom:954.802795pt;}
.y154{bottom:964.809363pt;}
.y1dd{bottom:964.809659pt;}
.y11b{bottom:964.809698pt;}
.yb8{bottom:967.812106pt;}
.y29f{bottom:967.812540pt;}
.y27e{bottom:967.812774pt;}
.y9b{bottom:975.818403pt;}
.y20{bottom:975.818568pt;}
.y4{bottom:975.818602pt;}
.y88{bottom:978.821156pt;}
.y41{bottom:978.821226pt;}
.y6e{bottom:978.821257pt;}
.y53{bottom:978.821478pt;}
.y1fd{bottom:978.822487pt;}
.y195{bottom:983.824848pt;}
.y174{bottom:983.825082pt;}
.y13c{bottom:983.825417pt;}
.y2c0{bottom:983.825740pt;}
.yf9{bottom:983.825885pt;}
.yd8{bottom:983.825972pt;}
.y250{bottom:983.826676pt;}
.y234{bottom:983.826910pt;}
.y21e{bottom:983.827144pt;}
.y9a{bottom:1009.846951pt;}
.y4f{bottom:1009.847087pt;}
.y1f{bottom:1009.847115pt;}
.y153{bottom:1009.847146pt;}
.y3{bottom:1009.847149pt;}
.y87{bottom:1009.847185pt;}
.y40{bottom:1009.847254pt;}
.y6d{bottom:1009.847285pt;}
.yb7{bottom:1009.847370pt;}
.y1dc{bottom:1009.847442pt;}
.y11a{bottom:1009.847481pt;}
.y52{bottom:1009.847506pt;}
.y29e{bottom:1009.847804pt;}
.y27d{bottom:1009.848038pt;}
.y1fc{bottom:1009.848515pt;}
.y194{bottom:1012.849197pt;}
.y173{bottom:1012.849431pt;}
.y13b{bottom:1012.849766pt;}
.y2bf{bottom:1012.850089pt;}
.yf8{bottom:1012.850234pt;}
.yd7{bottom:1012.850321pt;}
.y24f{bottom:1012.851025pt;}
.y233{bottom:1012.851259pt;}
.y21d{bottom:1012.851493pt;}
.y1cc{bottom:1014.851875pt;}
.y1b7{bottom:1014.852082pt;}
.y269{bottom:1014.852470pt;}
.y2{bottom:1060.889970pt;}
.y193{bottom:1062.891178pt;}
.y172{bottom:1062.891412pt;}
.y152{bottom:1062.891646pt;}
.y13a{bottom:1062.891747pt;}
.yb6{bottom:1062.891870pt;}
.y1db{bottom:1062.891943pt;}
.y119{bottom:1062.891981pt;}
.y2be{bottom:1062.892070pt;}
.y1cb{bottom:1062.892177pt;}
.yf7{bottom:1062.892215pt;}
.yd6{bottom:1062.892303pt;}
.y29d{bottom:1062.892304pt;}
.y1b6{bottom:1062.892384pt;}
.y27c{bottom:1062.892538pt;}
.y268{bottom:1062.892772pt;}
.y24e{bottom:1062.893006pt;}
.y1fb{bottom:1062.893015pt;}
.y232{bottom:1062.893240pt;}
.y21c{bottom:1062.893475pt;}
.hd{height:28.711587pt;}
.hc{height:38.258189pt;}
.ha{height:44.005974pt;}
.h9{height:47.840681pt;}
.h2{height:57.423174pt;}
.h5{height:57.829765pt;}
.h4{height:66.969776pt;}
.h3{height:67.443963pt;}
.h7{height:1123.942707pt;}
.h1{height:1123.942867pt;}
.h6{height:1123.943040pt;}
.h8{height:1123.943360pt;}
.hb{height:1123.944013pt;}
.h0{height:1124.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x7{left:96.080604pt;}
.x9{left:100.083963pt;}
.x8{left:102.085642pt;}
.x4{left:104.087321pt;}
.x24{left:105.088161pt;}
.x27{left:111.093199pt;}
.x5{left:113.094878pt;}
.x16{left:120.100755pt;}
.x1d{left:136.114189pt;}
.x1{left:144.120906pt;}
.x23{left:146.122585pt;}
.x1a{left:156.130982pt;}
.x30{left:183.153652pt;}
.x11{left:192.161208pt;}
.x3{left:194.162888pt;}
.x2e{left:199.167086pt;}
.x2c{left:205.172123pt;}
.x20{left:217.182199pt;}
.xf{left:240.201510pt;}
.x2{left:252.211586pt;}
.xc{left:290.243492pt;}
.x10{left:307.257765pt;}
.x14{left:309.259445pt;}
.x1c{left:314.263643pt;}
.x28{left:315.264482pt;}
.x22{left:318.267001pt;}
.xd{left:340.285473pt;}
.x2a{left:342.287152pt;}
.x13{left:345.289671pt;}
.x25{left:351.294709pt;}
.x15{left:352.295549pt;}
.x12{left:355.298067pt;}
.xa{left:365.306464pt;}
.xe{left:379.318219pt;}
.x6{left:396.332492pt;}
.x1f{left:411.618716pt;}
.xb{left:420.352643pt;}
.x19{left:541.102343pt;}
.x2d{left:616.517210pt;}
.x1b{left:662.555833pt;}
.x1e{left:663.556672pt;}
.x29{left:664.557512pt;}
.x2b{left:671.563389pt;}
.x26{left:672.564229pt;}
.x18{left:682.572625pt;}
.x31{left:688.577663pt;}
.x17{left:690.579342pt;}
.x2f{left:691.580182pt;}
.x21{left:702.589418pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  