
    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_d0b859eab1295879863718d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.158203;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_828a0373b1d434512128eb81.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_28674b84a46482feed677f3c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_682df6b82b63b4cd28adf378.woff')format("woff");}.ff4{font-family:ff4;line-height:1.166016;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_d773ab5420aa8d929c02d3c7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.166016;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_a680c6f35d8896f1b62c9e54.woff')format("woff");}.ff6{font-family:ff6;line-height:1.158203;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_6f31e000af2960486559e976.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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:ff8;src:url('chunks/assets/font_4814036a1f0f4530821ddfce.woff')format("woff");}.ff8{font-family:ff8;line-height:1.166016;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:ff9;src:url('chunks/assets/font_5e7c7a64308627e4e5c93e05.woff')format("woff");}.ff9{font-family:ff9;line-height:1.158203;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:ffa;src:url('chunks/assets/font_28f27b3b54dad7d2e35a4d42.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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:ffb;src:url('chunks/assets/font_b532e3cc73a3aa87d06dd967.woff')format("woff");}.ffb{font-family:ffb;line-height:1.122070;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:ffc;src:url('chunks/assets/font_b81a31b26e4f5eb4c6cbcd0b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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:ffd;src:url('chunks/assets/font_c458b784cf40fcb034c07f50.woff')format("woff");}.ffd{font-family:ffd;line-height:0.678711;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:ffe;src:url('chunks/assets/font_449cb1d63bbdf4f1b7e44490.woff')format("woff");}.ffe{font-family:ffe;line-height:1.406333;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;}
.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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.050800px;}
.v2{vertical-align:17.050800px;}
.ls6{letter-spacing:-2.700000px;}
.ls29{letter-spacing:-2.415000px;}
.lse{letter-spacing:-2.277000px;}
.lsf{letter-spacing:-1.587000px;}
.ls2a{letter-spacing:-1.518000px;}
.ls7{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-1.260000px;}
.ls15{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.855000px;}
.ls1e{letter-spacing:-0.627000px;}
.ls2f{letter-spacing:-0.621000px;}
.ls10{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.171000px;}
.ls1b{letter-spacing:-0.138000px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000300px;}
.ls30{letter-spacing:0.441000px;}
.ls18{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.828000px;}
.ls1f{letter-spacing:1.134000px;}
.ls13{letter-spacing:1.587000px;}
.ls2c{letter-spacing:2.025000px;}
.lsb{letter-spacing:2.400000px;}
.ls2e{letter-spacing:3.105000px;}
.ls12{letter-spacing:3.159000px;}
.lsa{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.104000px;}
.ls1{letter-spacing:4.200000px;}
.ls2d{letter-spacing:4.326300px;}
.ls1d{letter-spacing:4.950000px;}
.ls11{letter-spacing:5.475000px;}
.ls9{letter-spacing:5.760000px;}
.lsc{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls31{letter-spacing:6.300000px;}
.ls28{letter-spacing:7.350000px;}
.ls21{letter-spacing:7.725000px;}
.ls1a{letter-spacing:7.950000px;}
.ls19{letter-spacing:8.100000px;}
.ls20{letter-spacing:8.250000px;}
.ls17{letter-spacing:8.325000px;}
.ls4{letter-spacing:8.400000px;}
.ls33{letter-spacing:8.700000px;}
.ls32{letter-spacing:8.820000px;}
.ls16{letter-spacing:8.925000px;}
.ls25{letter-spacing:76.260000px;}
.ls23{letter-spacing:79.980000px;}
.ls24{letter-spacing:84.780000px;}
.ls22{letter-spacing:92.400000px;}
.ls1c{letter-spacing:502.620000px;}
.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:-77.544000px;}
.ws2c{word-spacing:-62.775000px;}
.ws7b{word-spacing:-62.550000px;}
.ws11{word-spacing:-62.250000px;}
.ws3b{word-spacing:-62.175000px;}
.ws51{word-spacing:-62.100000px;}
.ws3e{word-spacing:-61.950000px;}
.ws40{word-spacing:-61.800000px;}
.ws53{word-spacing:-61.575000px;}
.ws5e{word-spacing:-61.200000px;}
.ws8{word-spacing:-60.312000px;}
.ws66{word-spacing:-60.183000px;}
.ws25{word-spacing:-59.325000px;}
.ws4d{word-spacing:-59.292000px;}
.ws44{word-spacing:-58.800000px;}
.ws18{word-spacing:-58.158000px;}
.ws29{word-spacing:-56.862000px;}
.ws74{word-spacing:-54.054000px;}
.ws76{word-spacing:-51.534000px;}
.ws3{word-spacing:-51.480000px;}
.ws5d{word-spacing:-50.370000px;}
.ws19{word-spacing:-49.542000px;}
.ws60{word-spacing:-49.404000px;}
.ws2{word-spacing:-49.080000px;}
.ws14{word-spacing:-48.960000px;}
.ws9{word-spacing:-48.840000px;}
.ws1{word-spacing:-45.234000px;}
.ws4{word-spacing:-43.080000px;}
.ws5{word-spacing:-42.840000px;}
.ws78{word-spacing:-39.488400px;}
.ws34{word-spacing:-38.772000px;}
.ws13{word-spacing:-38.064000px;}
.ws2e{word-spacing:-37.494600px;}
.ws6a{word-spacing:-37.446300px;}
.ws5c{word-spacing:-37.260000px;}
.ws10{word-spacing:-36.864000px;}
.ws2b{word-spacing:-36.604500px;}
.ws72{word-spacing:-36.432000px;}
.ws31{word-spacing:-36.087000px;}
.ws67{word-spacing:-35.949000px;}
.ws2f{word-spacing:-35.535000px;}
.ws1a{word-spacing:-34.182600px;}
.ws75{word-spacing:-34.146000px;}
.ws79{word-spacing:-33.201000px;}
.ws7d{word-spacing:-31.920000px;}
.ws81{word-spacing:-31.800000px;}
.ws55{word-spacing:-30.567000px;}
.ws1c{word-spacing:-29.808000px;}
.ws73{word-spacing:-29.801100px;}
.ws50{word-spacing:-29.442000px;}
.ws32{word-spacing:-28.882986px;}
.ws7e{word-spacing:-28.644000px;}
.ws82{word-spacing:-26.640000px;}
.ws6b{word-spacing:-25.392000px;}
.ws6{word-spacing:-25.164000px;}
.ws15{word-spacing:-25.115640px;}
.ws39{word-spacing:-24.495000px;}
.ws80{word-spacing:-22.980000px;}
.ws7f{word-spacing:-22.974000px;}
.ws35{word-spacing:-22.563000px;}
.ws36{word-spacing:-22.535400px;}
.ws6c{word-spacing:-21.617700px;}
.ws6d{word-spacing:-21.597000px;}
.ws2a{word-spacing:-19.035000px;}
.ws56{word-spacing:-18.630000px;}
.ws28{word-spacing:-17.932200px;}
.ws65{word-spacing:-17.391900px;}
.ws20{word-spacing:-17.043000px;}
.ws4c{word-spacing:-16.152300px;}
.ws17{word-spacing:-15.713700px;}
.ws77{word-spacing:-15.561000px;}
.ws62{word-spacing:-15.525000px;}
.ws1d{word-spacing:-15.456000px;}
.wsc{word-spacing:-14.820000px;}
.ws1b{word-spacing:-14.766000px;}
.ws61{word-spacing:-14.628000px;}
.ws33{word-spacing:-14.450238px;}
.ws6e{word-spacing:-14.007000px;}
.ws42{word-spacing:-13.338000px;}
.ws1f{word-spacing:-12.171600px;}
.ws30{word-spacing:-12.033600px;}
.wsb{word-spacing:-9.792000px;}
.ws7a{word-spacing:-8.190000px;}
.ws21{word-spacing:-3.732900px;}
.ws22{word-spacing:-3.726000px;}
.ws64{word-spacing:-2.415000px;}
.ws3d{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.420000px;}
.ws57{word-spacing:-0.069000px;}
.ws68{word-spacing:-0.006900px;}
.wsd{word-spacing:0.000000px;}
.ws43{word-spacing:0.138000px;}
.ws24{word-spacing:0.420000px;}
.ws6f{word-spacing:0.621000px;}
.ws27{word-spacing:0.759000px;}
.wsf{word-spacing:1.260000px;}
.wse{word-spacing:2.700000px;}
.ws1e{word-spacing:3.036000px;}
.ws70{word-spacing:4.761000px;}
.ws4e{word-spacing:8.153838px;}
.ws83{word-spacing:8.460000px;}
.ws63{word-spacing:9.177000px;}
.ws23{word-spacing:19.803000px;}
.wsa{word-spacing:47.010600px;}
.ws59{word-spacing:47.700000px;}
.ws58{word-spacing:48.120000px;}
.ws5a{word-spacing:71.580000px;}
.ws5b{word-spacing:83.340000px;}
.ws16{word-spacing:222.054000px;}
.ws48{word-spacing:230.424000px;}
.ws46{word-spacing:263.262000px;}
.ws4b{word-spacing:309.780000px;}
.ws4a{word-spacing:311.520000px;}
.ws49{word-spacing:364.920000px;}
.ws47{word-spacing:405.852000px;}
.ws7c{word-spacing:431.760000px;}
.ws69{word-spacing:432.120000px;}
.ws2d{word-spacing:434.280000px;}
.ws12{word-spacing:434.820000px;}
.ws3c{word-spacing:434.880000px;}
.ws71{word-spacing:435.000000px;}
.ws3f{word-spacing:435.060000px;}
.ws52{word-spacing:435.300000px;}
.ws41{word-spacing:435.600000px;}
.ws54{word-spacing:435.840000px;}
.ws5f{word-spacing:436.260000px;}
.ws26{word-spacing:437.760000px;}
.ws45{word-spacing:438.660000px;}
.ws0{word-spacing:535.320000px;}
.ws37{word-spacing:786.960000px;}
.ws4f{word-spacing:940.920000px;}
.ws38{word-spacing:948.180000px;}
._2e{margin-left:-24.228600px;}
._2d{margin-left:-18.491400px;}
._32{margin-left:-10.474800px;}
._16{margin-left:-9.318900px;}
._17{margin-left:-8.308200px;}
._c{margin-left:-7.036800px;}
._6{margin-left:-5.466000px;}
._4{margin-left:-4.182000px;}
._3{margin-left:-2.496000px;}
._5{margin-left:-1.362000px;}
._2{width:1.241400px;}
._0{width:2.400000px;}
._b{width:3.447000px;}
._a{width:4.748400px;}
._7{width:5.952000px;}
._8{width:7.338000px;}
._9{width:8.490000px;}
._15{width:9.514200px;}
._d{width:11.040000px;}
._f{width:12.770400px;}
._e{width:14.090700px;}
._2f{width:15.207600px;}
._2b{width:16.656600px;}
._12{width:18.057300px;}
._30{width:19.921200px;}
._31{width:21.353100px;}
._1a{width:22.867800px;}
._2c{width:24.108000px;}
._11{width:32.974200px;}
._22{width:35.291322px;}
._13{width:40.605300px;}
._18{width:43.445160px;}
._14{width:60.714300px;}
._2a{width:75.060000px;}
._25{width:76.320000px;}
._24{width:78.240000px;}
._28{width:82.320000px;}
._29{width:83.400000px;}
._27{width:87.180000px;}
._26{width:89.460000px;}
._23{width:92.640000px;}
._21{width:398.040000px;}
._20{width:421.020000px;}
._1e{width:464.640000px;}
._1d{width:506.400000px;}
._1f{width:513.660000px;}
._1{width:993.211200px;}
._19{width:996.331200px;}
._1c{width:1000.381200px;}
._10{width:1002.361200px;}
._1b{width:1215.327000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.ya8{bottom:106.115700px;}
.y5e{bottom:106.165350px;}
.y16e{bottom:106.266450px;}
.y84{bottom:106.268850px;}
.y14c{bottom:106.287450px;}
.yce{bottom:106.296300px;}
.y18c{bottom:106.296450px;}
.y29a{bottom:106.304400px;}
.y204{bottom:106.327800px;}
.y3b{bottom:106.346400px;}
.yeb{bottom:106.374900px;}
.y1db{bottom:106.399800px;}
.y224{bottom:109.294800px;}
.y25c{bottom:112.892850px;}
.y14b{bottom:123.540450px;}
.y18b{bottom:123.549450px;}
.y299{bottom:126.179400px;}
.ya7{bottom:126.384450px;}
.ycd{bottom:126.544800px;}
.y18a{bottom:126.544950px;}
.y5d{bottom:126.589350px;}
.yea{bottom:126.729900px;}
.y16d{bottom:127.052700px;}
.y83{bottom:127.227600px;}
.y1da{bottom:127.427550px;}
.y3a{bottom:127.684650px;}
.y25b{bottom:133.144350px;}
.y203{bottom:136.204800px;}
.y14a{bottom:140.793450px;}
.y298{bottom:146.054400px;}
.ya6{bottom:146.653200px;}
.y5c{bottom:147.013350px;}
.ye9{bottom:147.084900px;}
.y16c{bottom:147.838950px;}
.y82{bottom:148.186350px;}
.y1d9{bottom:148.455300px;}
.y39{bottom:149.022900px;}
.y223{bottom:153.364500px;}
.y25a{bottom:153.395850px;}
.y202{bottom:156.766800px;}
.y149{bottom:158.046450px;}
.y277{bottom:162.510600px;}
.y297{bottom:165.929400px;}
.ya5{bottom:166.921950px;}
.y5b{bottom:167.437350px;}
.ye8{bottom:167.439900px;}
.y16b{bottom:168.625200px;}
.y81{bottom:169.145100px;}
.y1d8{bottom:169.483050px;}
.ycc{bottom:170.560800px;}
.y222{bottom:173.616000px;}
.y259{bottom:173.647350px;}
.y240{bottom:174.700650px;}
.y201{bottom:177.328800px;}
.y148{bottom:178.294950px;}
.y276{bottom:182.765100px;}
.y296{bottom:185.804400px;}
.y1ad{bottom:186.016050px;}
.ya4{bottom:187.190700px;}
.ye7{bottom:187.794900px;}
.y5a{bottom:187.861350px;}
.y16a{bottom:189.411450px;}
.y80{bottom:190.103850px;}
.y1d7{bottom:190.510800px;}
.ycb{bottom:190.898550px;}
.y189{bottom:191.650650px;}
.y38{bottom:191.699400px;}
.y221{bottom:193.867500px;}
.y258{bottom:193.898850px;}
.y23f{bottom:196.021650px;}
.y1ac{bottom:204.016050px;}
.y1c{bottom:204.143850px;}
.y295{bottom:205.679400px;}
.y200{bottom:207.205800px;}
.ya3{bottom:207.459450px;}
.ye6{bottom:208.149900px;}
.y59{bottom:208.285350px;}
.y169{bottom:210.197700px;}
.y7f{bottom:211.062600px;}
.yca{bottom:211.236300px;}
.y275{bottom:211.524600px;}
.y188{bottom:212.712900px;}
.y37{bottom:213.037650px;}
.y220{bottom:214.119000px;}
.y257{bottom:214.150350px;}
.y23e{bottom:217.342650px;}
.y1ab{bottom:222.016050px;}
.y147{bottom:222.346950px;}
.y1b{bottom:225.143850px;}
.y294{bottom:225.554400px;}
.ya2{bottom:227.728200px;}
.y1ff{bottom:227.767800px;}
.ye5{bottom:228.504900px;}
.y58{bottom:228.709350px;}
.y1ca{bottom:230.544750px;}
.y168{bottom:230.983950px;}
.yc9{bottom:231.574050px;}
.y274{bottom:231.779100px;}
.y7e{bottom:232.021350px;}
.y1d6{bottom:232.583550px;}
.y187{bottom:233.775150px;}
.y21f{bottom:234.370500px;}
.y36{bottom:234.375900px;}
.y256{bottom:234.401850px;}
.y23d{bottom:238.663650px;}
.y1aa{bottom:240.016050px;}
.y146{bottom:243.943950px;}
.y293{bottom:245.429400px;}
.y1a{bottom:246.149700px;}
.ya1{bottom:247.996950px;}
.y1fe{bottom:248.329800px;}
.y1c9{bottom:248.544750px;}
.ye4{bottom:248.859900px;}
.y57{bottom:249.133350px;}
.y167{bottom:251.770200px;}
.yc8{bottom:251.893350px;}
.y7d{bottom:252.980100px;}
.y1d5{bottom:253.611300px;}
.y21e{bottom:254.622000px;}
.y255{bottom:254.653350px;}
.y186{bottom:254.837400px;}
.y35{bottom:255.714150px;}
.y1a9{bottom:258.016050px;}
.y273{bottom:260.538600px;}
.y10b{bottom:262.642050px;}
.y292{bottom:265.304400px;}
.y145{bottom:265.540950px;}
.y19{bottom:265.649700px;}
.y1c8{bottom:266.544750px;}
.ya0{bottom:268.265700px;}
.ye3{bottom:269.214900px;}
.y56{bottom:269.557350px;}
.yc7{bottom:272.231100px;}
.y166{bottom:272.556450px;}
.y7c{bottom:273.938850px;}
.y1d4{bottom:274.639050px;}
.y21d{bottom:274.873500px;}
.y254{bottom:274.904850px;}
.y185{bottom:275.899650px;}
.y1a8{bottom:276.016050px;}
.y10a{bottom:280.642050px;}
.y272{bottom:280.793100px;}
.y23c{bottom:281.305650px;}
.y1fd{bottom:283.410000px;}
.y1c7{bottom:284.544750px;}
.y18{bottom:285.149700px;}
.y291{bottom:285.179400px;}
.y144{bottom:287.137950px;}
.y9f{bottom:288.534450px;}
.ye2{bottom:289.569900px;}
.y55{bottom:289.981350px;}
.yc6{bottom:292.568850px;}
.y165{bottom:293.342700px;}
.y1a7{bottom:294.016050px;}
.y7b{bottom:294.897600px;}
.y21c{bottom:295.125000px;}
.y253{bottom:295.156350px;}
.y1d3{bottom:295.666800px;}
.y184{bottom:296.961900px;}
.y34{bottom:298.390650px;}
.y109{bottom:298.642050px;}
.y1c6{bottom:302.544750px;}
.y17{bottom:304.649700px;}
.y290{bottom:305.054400px;}
.y1fc{bottom:306.135000px;}
.y143{bottom:308.734950px;}
.y9e{bottom:308.803200px;}
.y271{bottom:309.552600px;}
.ye1{bottom:309.924900px;}
.y54{bottom:310.405350px;}
.y1a6{bottom:312.016050px;}
.yc5{bottom:312.906600px;}
.y164{bottom:314.128950px;}
.y21b{bottom:315.376500px;}
.y252{bottom:315.407850px;}
.y7a{bottom:315.856350px;}
.y108{bottom:316.642050px;}
.y1d2{bottom:316.694550px;}
.y183{bottom:318.024150px;}
.y33{bottom:319.728900px;}
.y1c5{bottom:320.544750px;}
.y23b{bottom:323.947650px;}
.y16{bottom:324.149700px;}
.y1fb{bottom:328.860000px;}
.y9d{bottom:329.071950px;}
.y270{bottom:329.807100px;}
.y1a5{bottom:330.016050px;}
.ye0{bottom:330.279900px;}
.y142{bottom:330.331950px;}
.y53{bottom:330.829350px;}
.yc4{bottom:333.244350px;}
.y107{bottom:334.642050px;}
.y163{bottom:334.915200px;}
.y21a{bottom:335.628000px;}
.y251{bottom:335.659350px;}
.y79{bottom:336.815100px;}
.y1d1{bottom:337.722300px;}
.y1c4{bottom:338.544750px;}
.y182{bottom:339.086400px;}
.y32{bottom:341.067150px;}
.y15{bottom:343.649700px;}
.y28f{bottom:344.804400px;}
.y23a{bottom:345.268650px;}
.y9c{bottom:349.340700px;}
.y52{bottom:351.253350px;}
.y141{bottom:351.928950px;}
.y106{bottom:352.642050px;}
.y1a4{bottom:352.741050px;}
.yc3{bottom:353.582100px;}
.y162{bottom:355.701450px;}
.y219{bottom:355.879500px;}
.y250{bottom:355.910850px;}
.y1c3{bottom:356.544750px;}
.y78{bottom:357.773850px;}
.y26f{bottom:358.566600px;}
.y1d0{bottom:358.750050px;}
.y1fa{bottom:358.774350px;}
.y181{bottom:360.148650px;}
.y31{bottom:362.405400px;}
.y14{bottom:363.149700px;}
.y28e{bottom:364.679400px;}
.y239{bottom:366.589650px;}
.y9b{bottom:369.609450px;}
.y105{bottom:370.642050px;}
.y1a3{bottom:370.741050px;}
.y51{bottom:371.677350px;}
.y140{bottom:373.525950px;}
.yc2{bottom:373.919850px;}
.y1c2{bottom:374.544750px;}
.y218{bottom:376.131000px;}
.y24f{bottom:376.162350px;}
.y77{bottom:378.732600px;}
.y26e{bottom:378.821100px;}
.y1f9{bottom:379.336350px;}
.y1cf{bottom:379.777800px;}
.y180{bottom:381.210900px;}
.y13{bottom:382.649700px;}
.y30{bottom:383.743650px;}
.y28d{bottom:384.554400px;}
.y238{bottom:387.910650px;}
.y104{bottom:388.642050px;}
.y1a2{bottom:388.741050px;}
.y9a{bottom:389.878200px;}
.y50{bottom:392.101350px;}
.yc1{bottom:394.257600px;}
.y13f{bottom:395.122950px;}
.y24e{bottom:396.413850px;}
.y1c1{bottom:397.269750px;}
.y26d{bottom:399.075600px;}
.y76{bottom:399.691350px;}
.y1f8{bottom:399.898350px;}
.y1ce{bottom:400.805550px;}
.y12{bottom:402.149700px;}
.y17f{bottom:402.273150px;}
.y28c{bottom:404.429400px;}
.y161{bottom:404.497800px;}
.y2f{bottom:405.081900px;}
.y103{bottom:406.642050px;}
.y1a1{bottom:406.741050px;}
.y99{bottom:410.146950px;}
.y241{bottom:412.525350px;}
.yc0{bottom:414.595350px;}
.y1c0{bottom:415.269750px;}
.y217{bottom:416.634000px;}
.y24d{bottom:416.665350px;}
.y1f7{bottom:420.460350px;}
.y75{bottom:420.650100px;}
.y11{bottom:421.649700px;}
.y15e{bottom:422.497800px;}
.y17e{bottom:423.335400px;}
.y13e{bottom:424.344750px;}
.y102{bottom:424.642050px;}
.y1a0{bottom:424.741050px;}
.y26c{bottom:427.835100px;}
.y98{bottom:430.415700px;}
.y237{bottom:430.552650px;}
.y4f{bottom:432.949350px;}
.y1bf{bottom:433.269750px;}
.ybf{bottom:434.933100px;}
.y216{bottom:436.885500px;}
.y24c{bottom:436.916850px;}
.y15d{bottom:440.497800px;}
.y1f6{bottom:441.022350px;}
.y10{bottom:441.149700px;}
.y74{bottom:441.608850px;}
.y13d{bottom:442.344750px;}
.y101{bottom:442.642050px;}
.y19f{bottom:442.741050px;}
.y28b{bottom:444.179400px;}
.y17d{bottom:444.397650px;}
.y2e{bottom:447.685200px;}
.y26b{bottom:448.089600px;}
.y97{bottom:450.684450px;}
.y1be{bottom:451.269750px;}
.y236{bottom:451.873650px;}
.y4e{bottom:453.373350px;}
.ybe{bottom:455.270850px;}
.y215{bottom:457.137000px;}
.y24b{bottom:457.168350px;}
.y15c{bottom:458.497800px;}
.y13b{bottom:460.344750px;}
.y100{bottom:460.642050px;}
.yf{bottom:460.649700px;}
.y19e{bottom:460.741050px;}
.y1f5{bottom:461.584350px;}
.y73{bottom:462.567600px;}
.y1cd{bottom:463.906050px;}
.y1bd{bottom:469.269750px;}
.y96{bottom:470.953200px;}
.y2d{bottom:472.774950px;}
.y235{bottom:473.194650px;}
.y4d{bottom:473.797350px;}
.ybd{bottom:475.608600px;}
.ydf{bottom:475.693800px;}
.y15b{bottom:476.497800px;}
.y26a{bottom:476.849100px;}
.y214{bottom:477.388500px;}
.y24a{bottom:477.419850px;}
.y123{bottom:478.344600px;}
.y13a{bottom:478.344750px;}
.yff{bottom:478.642050px;}
.y19d{bottom:478.741050px;}
.y1f4{bottom:482.146350px;}
.y72{bottom:483.526350px;}
.y28a{bottom:483.929400px;}
.y1cc{bottom:484.933800px;}
.y17c{bottom:486.729600px;}
.y1bc{bottom:487.269750px;}
.y95{bottom:491.221950px;}
.ye{bottom:492.899700px;}
.y4c{bottom:494.221350px;}
.y160{bottom:494.497800px;}
.y234{bottom:494.515650px;}
.ybc{bottom:495.946350px;}
.y122{bottom:496.344600px;}
.y139{bottom:496.344750px;}
.yfe{bottom:496.642050px;}
.y19c{bottom:496.741050px;}
.y269{bottom:497.103600px;}
.y213{bottom:497.640000px;}
.y249{bottom:497.671350px;}
.y1f3{bottom:502.708350px;}
.yde{bottom:502.999500px;}
.y289{bottom:503.814300px;}
.y71{bottom:504.485100px;}
.y1bb{bottom:505.269750px;}
.y94{bottom:511.490700px;}
.y17b{bottom:511.535850px;}
.y15a{bottom:512.497800px;}
.y121{bottom:514.344600px;}
.y138{bottom:514.344750px;}
.y1e0{bottom:514.645350px;}
.y233{bottom:515.836650px;}
.ybb{bottom:516.284100px;}
.y212{bottom:517.891500px;}
.y248{bottom:517.922850px;}
.y19b{bottom:519.466050px;}
.y1ba{bottom:523.269750px;}
.y1f2{bottom:523.270350px;}
.y288{bottom:523.689300px;}
.y70{bottom:525.443850px;}
.y268{bottom:525.863100px;}
.y159{bottom:530.497800px;}
.y93{bottom:531.759450px;}
.y120{bottom:532.344600px;}
.y137{bottom:532.344750px;}
.y4b{bottom:535.069350px;}
.yba{bottom:536.621850px;}
.y232{bottom:537.157650px;}
.yfd{bottom:537.367050px;}
.y211{bottom:538.143000px;}
.y247{bottom:538.174350px;}
.y1b9{bottom:541.269750px;}
.y287{bottom:543.564300px;}
.y1f1{bottom:543.832350px;}
.y1cb{bottom:545.994750px;}
.y267{bottom:546.117600px;}
.y6f{bottom:546.402600px;}
.y158{bottom:548.497800px;}
.y19a{bottom:548.941500px;}
.y11f{bottom:550.344600px;}
.y136{bottom:550.344750px;}
.yd{bottom:550.661400px;}
.y92{bottom:552.028200px;}
.yfc{bottom:555.367050px;}
.y4a{bottom:555.493350px;}
.yb9{bottom:556.959600px;}
.y210{bottom:558.394500px;}
.y246{bottom:558.425850px;}
.y231{bottom:558.478650px;}
.y286{bottom:563.439300px;}
.y1b8{bottom:563.994750px;}
.y1f0{bottom:564.394350px;}
.y157{bottom:566.497800px;}
.y6e{bottom:567.361350px;}
.y11e{bottom:568.344600px;}
.y135{bottom:568.344750px;}
.y199{bottom:569.193000px;}
.yfb{bottom:573.367050px;}
.y17a{bottom:574.625550px;}
.y266{bottom:574.877100px;}
.y49{bottom:575.917350px;}
.yb8{bottom:577.297350px;}
.yc{bottom:577.667400px;}
.y20f{bottom:578.646000px;}
.y245{bottom:578.677350px;}
.y230{bottom:579.799650px;}
.y1b7{bottom:581.994750px;}
.y285{bottom:583.314300px;}
.y15f{bottom:584.497800px;}
.y1ef{bottom:584.956350px;}
.y11d{bottom:586.344600px;}
.y134{bottom:586.344750px;}
.ydd{bottom:588.038850px;}
.y6d{bottom:588.320100px;}
.y198{bottom:589.444500px;}
.yfa{bottom:591.367050px;}
.y91{bottom:593.542350px;}
.y265{bottom:595.131600px;}
.y179{bottom:595.687800px;}
.y1df{bottom:596.341350px;}
.yb7{bottom:597.635100px;}
.y244{bottom:598.928850px;}
.y1b6{bottom:599.994750px;}
.y2c{bottom:600.155850px;}
.y22f{bottom:601.120650px;}
.y156{bottom:602.497800px;}
.y284{bottom:603.189300px;}
.y11c{bottom:604.344600px;}
.y133{bottom:604.344750px;}
.y1ee{bottom:605.518350px;}
.y6c{bottom:609.278850px;}
.yf8{bottom:609.367050px;}
.y197{bottom:609.696000px;}
.y178{bottom:616.750050px;}
.y48{bottom:616.765350px;}
.y90{bottom:617.558850px;}
.ydc{bottom:617.731350px;}
.yb6{bottom:617.972850px;}
.y1b5{bottom:617.994750px;}
.y20e{bottom:619.180350px;}
.y2b{bottom:622.250850px;}
.y11b{bottom:622.344600px;}
.y132{bottom:622.344750px;}
.y22e{bottom:622.441650px;}
.y283{bottom:623.064300px;}
.y264{bottom:623.891100px;}
.yb{bottom:625.900350px;}
.y1ed{bottom:626.080350px;}
.yf7{bottom:627.367050px;}
.y196{bottom:629.947500px;}
.y6b{bottom:630.237600px;}
.y1b4{bottom:635.994750px;}
.y47{bottom:637.189350px;}
.y177{bottom:637.812300px;}
.ydb{bottom:638.086350px;}
.yb5{bottom:638.310600px;}
.y243{bottom:639.431850px;}
.y11a{bottom:640.344600px;}
.y131{bottom:640.344750px;}
.y282{bottom:642.939300px;}
.y22d{bottom:643.762650px;}
.y263{bottom:644.145600px;}
.y2a{bottom:644.325450px;}
.yf9{bottom:645.367050px;}
.y1ec{bottom:646.642350px;}
.y195{bottom:650.199000px;}
.y6a{bottom:651.196350px;}
.y155{bottom:653.266350px;}
.y1b3{bottom:653.994750px;}
.ya{bottom:657.409350px;}
.y46{bottom:657.613350px;}
.y119{bottom:658.344600px;}
.y13c{bottom:658.344750px;}
.yda{bottom:658.441350px;}
.yb4{bottom:658.648350px;}
.y176{bottom:658.874550px;}
.y20d{bottom:659.683350px;}
.y281{bottom:662.814300px;}
.yf6{bottom:663.367050px;}
.y29{bottom:664.920450px;}
.y22c{bottom:665.083650px;}
.y1eb{bottom:667.204350px;}
.y194{bottom:670.450500px;}
.y2a4{bottom:671.442750px;}
.y1b2{bottom:671.994750px;}
.y69{bottom:672.155100px;}
.y262{bottom:672.905100px;}
.y154{bottom:674.052600px;}
.y118{bottom:676.344600px;}
.y130{bottom:676.344750px;}
.y1de{bottom:678.037350px;}
.yd9{bottom:678.796350px;}
.yb3{bottom:678.986100px;}
.y8f{bottom:679.745100px;}
.y242{bottom:679.934850px;}
.yf5{bottom:681.367050px;}
.y280{bottom:682.689300px;}
.y28{bottom:685.515450px;}
.y1ea{bottom:687.766350px;}
.y9{bottom:688.918350px;}
.y1b1{bottom:689.994750px;}
.y2a3{bottom:691.692750px;}
.y68{bottom:693.113850px;}
.y261{bottom:693.159600px;}
.y117{bottom:694.344600px;}
.y12f{bottom:694.344750px;}
.y153{bottom:694.838850px;}
.y45{bottom:698.461350px;}
.yd8{bottom:699.151350px;}
.yb2{bottom:699.323850px;}
.yf4{bottom:699.367050px;}
.y8e{bottom:700.013850px;}
.y20c{bottom:700.186350px;}
.y27f{bottom:702.564300px;}
.y27{bottom:706.110450px;}
.y22b{bottom:707.671500px;}
.y1b0{bottom:707.994750px;}
.y1e9{bottom:708.328350px;}
.y2a2{bottom:711.942750px;}
.y116{bottom:712.344600px;}
.y12e{bottom:712.344750px;}
.y67{bottom:714.072600px;}
.y152{bottom:715.625100px;}
.yf3{bottom:717.367050px;}
.y44{bottom:718.885350px;}
.yd7{bottom:719.506350px;}
.yb1{bottom:719.661600px;}
.y175{bottom:719.971050px;}
.y8d{bottom:720.282600px;}
.y8{bottom:720.427350px;}
.y20b{bottom:720.437850px;}
.y260{bottom:721.919100px;}
.y27e{bottom:722.439300px;}
.y26{bottom:726.705450px;}
.y115{bottom:730.344600px;}
.y12d{bottom:730.344750px;}
.y193{bottom:730.719750px;}
.y2a1{bottom:732.192750px;}
.y22a{bottom:732.741000px;}
.y66{bottom:735.031350px;}
.yf2{bottom:735.367050px;}
.y151{bottom:736.411350px;}
.y1e8{bottom:738.205350px;}
.y43{bottom:739.309350px;}
.yd6{bottom:739.861350px;}
.yb0{bottom:739.999350px;}
.y8c{bottom:740.551350px;}
.y20a{bottom:740.689350px;}
.y25f{bottom:742.173600px;}
.y27d{bottom:742.314300px;}
.y174{bottom:742.696050px;}
.y25{bottom:747.282750px;}
.y114{bottom:748.344600px;}
.y12c{bottom:748.344750px;}
.y1af{bottom:748.719750px;}
.yf1{bottom:753.367050px;}
.y65{bottom:755.990100px;}
.y1e7{bottom:758.767350px;}
.y42{bottom:759.733350px;}
.yd5{bottom:760.216350px;}
.yaf{bottom:760.337100px;}
.y8b{bottom:760.820100px;}
.y209{bottom:760.940850px;}
.y27c{bottom:762.189300px;}
.y25e{bottom:762.428100px;}
.y2a0{bottom:765.192750px;}
.y173{bottom:765.421050px;}
.y113{bottom:766.344600px;}
.y12b{bottom:766.344750px;}
.y192{bottom:766.719750px;}
.y24{bottom:767.877750px;}
.yf0{bottom:771.367050px;}
.y64{bottom:776.948850px;}
.y150{bottom:777.983850px;}
.y1e6{bottom:779.329350px;}
.y1dd{bottom:780.157350px;}
.yd4{bottom:780.571350px;}
.yae{bottom:780.674850px;}
.y8a{bottom:781.088850px;}
.y208{bottom:781.192350px;}
.y7{bottom:781.688850px;}
.y27b{bottom:782.064300px;}
.y112{bottom:784.344600px;}
.y12a{bottom:784.344750px;}
.y191{bottom:784.719750px;}
.y172{bottom:788.146050px;}
.y23{bottom:788.472750px;}
.y25d{bottom:791.187600px;}
.yef{bottom:794.467050px;}
.y229{bottom:796.096350px;}
.y63{bottom:797.907600px;}
.y1e5{bottom:799.891350px;}
.y41{bottom:800.581350px;}
.yd3{bottom:800.926350px;}
.yad{bottom:801.012600px;}
.y89{bottom:801.357600px;}
.y207{bottom:801.443850px;}
.y111{bottom:802.344600px;}
.y129{bottom:802.344750px;}
.y190{bottom:802.719750px;}
.y29f{bottom:806.697750px;}
.y22{bottom:809.067750px;}
.y6{bottom:811.193850px;}
.yee{bottom:812.467050px;}
.y27a{bottom:814.689300px;}
.y228{bottom:817.417350px;}
.y62{bottom:818.866350px;}
.y14f{bottom:819.556350px;}
.y110{bottom:820.344600px;}
.y128{bottom:820.344750px;}
.y1e4{bottom:820.453350px;}
.y18f{bottom:820.719750px;}
.y40{bottom:821.005350px;}
.yd2{bottom:821.281350px;}
.yac{bottom:821.350350px;}
.y88{bottom:821.626350px;}
.y206{bottom:821.695350px;}
.y29e{bottom:826.197750px;}
.y21{bottom:829.662750px;}
.y5{bottom:832.193850px;}
.y10f{bottom:838.344600px;}
.y127{bottom:838.344750px;}
.y18e{bottom:838.719750px;}
.y227{bottom:838.738350px;}
.y171{bottom:839.514600px;}
.y61{bottom:839.825100px;}
.y14e{bottom:840.342600px;}
.y1e3{bottom:841.015350px;}
.y3f{bottom:841.429350px;}
.yd1{bottom:841.636350px;}
.yab{bottom:841.688100px;}
.y87{bottom:841.895100px;}
.y205{bottom:841.946850px;}
.y29d{bottom:845.697750px;}
.y20{bottom:850.257750px;}
.y10e{bottom:856.344600px;}
.y126{bottom:856.344750px;}
.y18d{bottom:856.719750px;}
.y226{bottom:860.059350px;}
.y170{bottom:860.576850px;}
.y60{bottom:860.783850px;}
.y1e2{bottom:861.577350px;}
.y4{bottom:861.698850px;}
.y1dc{bottom:861.853350px;}
.yd0{bottom:861.991350px;}
.yaa{bottom:862.025850px;}
.y86{bottom:862.163850px;}
.yed{bottom:862.198350px;}
.y29c{bottom:865.197750px;}
.y1f{bottom:870.852750px;}
.y279{bottom:872.823450px;}
.y1ae{bottom:874.719750px;}
.y10d{bottom:879.444600px;}
.y125{bottom:879.444750px;}
.y225{bottom:881.380350px;}
.y16f{bottom:881.639100px;}
.y5f{bottom:881.742600px;}
.y14d{bottom:881.915100px;}
.y1e1{bottom:882.139350px;}
.y3e{bottom:882.277350px;}
.ycf{bottom:882.346350px;}
.ya9{bottom:882.363600px;}
.y85{bottom:882.432600px;}
.yec{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y29b{bottom:884.697750px;}
.y10c{bottom:897.444600px;}
.y124{bottom:897.444750px;}
.y278{bottom:900.207450px;}
.y3d{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1e{bottom:904.197750px;}
.y1d{bottom:948.189000px;}
.y3c{bottom:966.189000px;}
.h13{height:21.720735px;}
.hd{height:37.983820px;}
.h12{height:39.990234px;}
.hf{height:41.396484px;}
.h6{height:44.414062px;}
.h16{height:47.605957px;}
.he{height:49.965820px;}
.h10{height:53.173828px;}
.h11{height:55.488281px;}
.h2{height:55.517578px;}
.h8{height:55.588378px;}
.h3{height:58.293457px;}
.h14{height:61.149902px;}
.hb{height:63.811523px;}
.ha{height:63.845215px;}
.hc{height:63.919015px;}
.h7{height:69.396973px;}
.h15{height:72.059000px;}
.h9{height:74.948730px;}
.h5{height:77.724609px;}
.h4{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.929950px;}
.x5{left:82.980600px;}
.x8{left:84.018600px;}
.x1{left:85.039350px;}
.x55{left:86.120850px;}
.xa{left:91.842150px;}
.x25{left:93.832350px;}
.x43{left:102.173250px;}
.x7{left:103.706850px;}
.x52{left:104.968800px;}
.x4{left:105.990600px;}
.x26{left:107.407350px;}
.x44{left:108.815700px;}
.x4c{left:110.982000px;}
.xc{left:113.812350px;}
.x32{left:118.267350px;}
.x18{left:120.007350px;}
.x4e{left:121.052550px;}
.x4f{left:122.915550px;}
.x51{left:125.485800px;}
.x50{left:126.934800px;}
.x53{left:127.960650px;}
.xd{left:134.482350px;}
.x35{left:136.170900px;}
.x12{left:141.877350px;}
.x36{left:147.630900px;}
.x13{left:149.302350px;}
.x14{left:151.357350px;}
.x46{left:153.730200px;}
.x37{left:156.075900px;}
.x47{left:157.420200px;}
.x15{left:161.707350px;}
.x2b{left:162.802350px;}
.x2a{left:163.897350px;}
.x11{left:165.202350px;}
.x45{left:169.870200px;}
.x17{left:174.322350px;}
.x49{left:175.885200px;}
.xb{left:177.445950px;}
.x34{left:179.220900px;}
.x39{left:181.800900px;}
.x30{left:187.837350px;}
.x2f{left:188.872350px;}
.x16{left:192.637350px;}
.x48{left:195.355200px;}
.x2d{left:197.377350px;}
.x38{left:201.390900px;}
.x3a{left:202.545900px;}
.x24{left:204.187350px;}
.x6{left:212.664000px;}
.x3{left:231.879900px;}
.x2{left:233.415450px;}
.x54{left:236.976000px;}
.x23{left:323.812350px;}
.x10{left:325.972350px;}
.x28{left:368.692350px;}
.x21{left:369.817350px;}
.xf{left:385.027350px;}
.x4d{left:386.607000px;}
.x33{left:392.362350px;}
.x1b{left:419.167350px;}
.x4a{left:423.460200px;}
.x1e{left:432.262350px;}
.x3e{left:433.650900px;}
.xe{left:436.912350px;}
.x41{left:438.150900px;}
.x3f{left:442.650900px;}
.x1c{left:445.297350px;}
.x1d{left:447.127350px;}
.x4b{left:448.915200px;}
.x1a{left:453.232350px;}
.x2c{left:454.567350px;}
.x42{left:455.610900px;}
.x31{left:459.232350px;}
.x1f{left:464.317350px;}
.x3c{left:467.880900px;}
.x29{left:470.662350px;}
.x22{left:473.287350px;}
.x40{left:474.660900px;}
.x20{left:480.172350px;}
.x3b{left:481.200900px;}
.x2e{left:482.377350px;}
.x3d{left:498.675900px;}
.x27{left:599.827350px;}
.x19{left:601.987350px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.489600pt;}
.v2{vertical-align:15.156267pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls29{letter-spacing:-2.146667pt;}
.lse{letter-spacing:-2.024000pt;}
.lsf{letter-spacing:-1.410667pt;}
.ls2a{letter-spacing:-1.349333pt;}
.ls7{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls15{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.760000pt;}
.ls1e{letter-spacing:-0.557333pt;}
.ls2f{letter-spacing:-0.552000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.152000pt;}
.ls1b{letter-spacing:-0.122667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000267pt;}
.ls30{letter-spacing:0.392000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.736000pt;}
.ls1f{letter-spacing:1.008000pt;}
.ls13{letter-spacing:1.410667pt;}
.ls2c{letter-spacing:1.800000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls2e{letter-spacing:2.760000pt;}
.ls12{letter-spacing:2.808000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.648000pt;}
.ls1{letter-spacing:3.733333pt;}
.ls2d{letter-spacing:3.845600pt;}
.ls1d{letter-spacing:4.400000pt;}
.ls11{letter-spacing:4.866667pt;}
.ls9{letter-spacing:5.120000pt;}
.lsc{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls31{letter-spacing:5.600000pt;}
.ls28{letter-spacing:6.533333pt;}
.ls21{letter-spacing:6.866667pt;}
.ls1a{letter-spacing:7.066667pt;}
.ls19{letter-spacing:7.200000pt;}
.ls20{letter-spacing:7.333333pt;}
.ls17{letter-spacing:7.400000pt;}
.ls4{letter-spacing:7.466667pt;}
.ls33{letter-spacing:7.733333pt;}
.ls32{letter-spacing:7.840000pt;}
.ls16{letter-spacing:7.933333pt;}
.ls25{letter-spacing:67.786667pt;}
.ls23{letter-spacing:71.093333pt;}
.ls24{letter-spacing:75.360000pt;}
.ls22{letter-spacing:82.133333pt;}
.ls1c{letter-spacing:446.773333pt;}
.ws7{word-spacing:-68.928000pt;}
.ws2c{word-spacing:-55.800000pt;}
.ws7b{word-spacing:-55.600000pt;}
.ws11{word-spacing:-55.333333pt;}
.ws3b{word-spacing:-55.266667pt;}
.ws51{word-spacing:-55.200000pt;}
.ws3e{word-spacing:-55.066667pt;}
.ws40{word-spacing:-54.933333pt;}
.ws53{word-spacing:-54.733333pt;}
.ws5e{word-spacing:-54.400000pt;}
.ws8{word-spacing:-53.610667pt;}
.ws66{word-spacing:-53.496000pt;}
.ws25{word-spacing:-52.733333pt;}
.ws4d{word-spacing:-52.704000pt;}
.ws44{word-spacing:-52.266667pt;}
.ws18{word-spacing:-51.696000pt;}
.ws29{word-spacing:-50.544000pt;}
.ws74{word-spacing:-48.048000pt;}
.ws76{word-spacing:-45.808000pt;}
.ws3{word-spacing:-45.760000pt;}
.ws5d{word-spacing:-44.773333pt;}
.ws19{word-spacing:-44.037333pt;}
.ws60{word-spacing:-43.914667pt;}
.ws2{word-spacing:-43.626667pt;}
.ws14{word-spacing:-43.520000pt;}
.ws9{word-spacing:-43.413333pt;}
.ws1{word-spacing:-40.208000pt;}
.ws4{word-spacing:-38.293333pt;}
.ws5{word-spacing:-38.080000pt;}
.ws78{word-spacing:-35.100800pt;}
.ws34{word-spacing:-34.464000pt;}
.ws13{word-spacing:-33.834667pt;}
.ws2e{word-spacing:-33.328533pt;}
.ws6a{word-spacing:-33.285600pt;}
.ws5c{word-spacing:-33.120000pt;}
.ws10{word-spacing:-32.768000pt;}
.ws2b{word-spacing:-32.537333pt;}
.ws72{word-spacing:-32.384000pt;}
.ws31{word-spacing:-32.077333pt;}
.ws67{word-spacing:-31.954667pt;}
.ws2f{word-spacing:-31.586667pt;}
.ws1a{word-spacing:-30.384533pt;}
.ws75{word-spacing:-30.352000pt;}
.ws79{word-spacing:-29.512000pt;}
.ws7d{word-spacing:-28.373333pt;}
.ws81{word-spacing:-28.266667pt;}
.ws55{word-spacing:-27.170667pt;}
.ws1c{word-spacing:-26.496000pt;}
.ws73{word-spacing:-26.489867pt;}
.ws50{word-spacing:-26.170667pt;}
.ws32{word-spacing:-25.673765pt;}
.ws7e{word-spacing:-25.461333pt;}
.ws82{word-spacing:-23.680000pt;}
.ws6b{word-spacing:-22.570667pt;}
.ws6{word-spacing:-22.368000pt;}
.ws15{word-spacing:-22.325013pt;}
.ws39{word-spacing:-21.773333pt;}
.ws80{word-spacing:-20.426667pt;}
.ws7f{word-spacing:-20.421333pt;}
.ws35{word-spacing:-20.056000pt;}
.ws36{word-spacing:-20.031467pt;}
.ws6c{word-spacing:-19.215733pt;}
.ws6d{word-spacing:-19.197333pt;}
.ws2a{word-spacing:-16.920000pt;}
.ws56{word-spacing:-16.560000pt;}
.ws28{word-spacing:-15.939733pt;}
.ws65{word-spacing:-15.459467pt;}
.ws20{word-spacing:-15.149333pt;}
.ws4c{word-spacing:-14.357600pt;}
.ws17{word-spacing:-13.967733pt;}
.ws77{word-spacing:-13.832000pt;}
.ws62{word-spacing:-13.800000pt;}
.ws1d{word-spacing:-13.738667pt;}
.wsc{word-spacing:-13.173333pt;}
.ws1b{word-spacing:-13.125333pt;}
.ws61{word-spacing:-13.002667pt;}
.ws33{word-spacing:-12.844656pt;}
.ws6e{word-spacing:-12.450667pt;}
.ws42{word-spacing:-11.856000pt;}
.ws1f{word-spacing:-10.819200pt;}
.ws30{word-spacing:-10.696533pt;}
.wsb{word-spacing:-8.704000pt;}
.ws7a{word-spacing:-7.280000pt;}
.ws21{word-spacing:-3.318133pt;}
.ws22{word-spacing:-3.312000pt;}
.ws64{word-spacing:-2.146667pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.373333pt;}
.ws57{word-spacing:-0.061333pt;}
.ws68{word-spacing:-0.006133pt;}
.wsd{word-spacing:0.000000pt;}
.ws43{word-spacing:0.122667pt;}
.ws24{word-spacing:0.373333pt;}
.ws6f{word-spacing:0.552000pt;}
.ws27{word-spacing:0.674667pt;}
.wsf{word-spacing:1.120000pt;}
.wse{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.698667pt;}
.ws70{word-spacing:4.232000pt;}
.ws4e{word-spacing:7.247856pt;}
.ws83{word-spacing:7.520000pt;}
.ws63{word-spacing:8.157333pt;}
.ws23{word-spacing:17.602667pt;}
.wsa{word-spacing:41.787200pt;}
.ws59{word-spacing:42.400000pt;}
.ws58{word-spacing:42.773333pt;}
.ws5a{word-spacing:63.626667pt;}
.ws5b{word-spacing:74.080000pt;}
.ws16{word-spacing:197.381333pt;}
.ws48{word-spacing:204.821333pt;}
.ws46{word-spacing:234.010667pt;}
.ws4b{word-spacing:275.360000pt;}
.ws4a{word-spacing:276.906667pt;}
.ws49{word-spacing:324.373333pt;}
.ws47{word-spacing:360.757333pt;}
.ws7c{word-spacing:383.786667pt;}
.ws69{word-spacing:384.106667pt;}
.ws2d{word-spacing:386.026667pt;}
.ws12{word-spacing:386.506667pt;}
.ws3c{word-spacing:386.560000pt;}
.ws71{word-spacing:386.666667pt;}
.ws3f{word-spacing:386.720000pt;}
.ws52{word-spacing:386.933333pt;}
.ws41{word-spacing:387.200000pt;}
.ws54{word-spacing:387.413333pt;}
.ws5f{word-spacing:387.786667pt;}
.ws26{word-spacing:389.120000pt;}
.ws45{word-spacing:389.920000pt;}
.ws0{word-spacing:475.840000pt;}
.ws37{word-spacing:699.520000pt;}
.ws4f{word-spacing:836.373333pt;}
.ws38{word-spacing:842.826667pt;}
._2e{margin-left:-21.536533pt;}
._2d{margin-left:-16.436800pt;}
._32{margin-left:-9.310933pt;}
._16{margin-left:-8.283467pt;}
._17{margin-left:-7.385067pt;}
._c{margin-left:-6.254933pt;}
._6{margin-left:-4.858667pt;}
._4{margin-left:-3.717333pt;}
._3{margin-left:-2.218667pt;}
._5{margin-left:-1.210667pt;}
._2{width:1.103467pt;}
._0{width:2.133333pt;}
._b{width:3.064000pt;}
._a{width:4.220800pt;}
._7{width:5.290667pt;}
._8{width:6.522667pt;}
._9{width:7.546667pt;}
._15{width:8.457067pt;}
._d{width:9.813333pt;}
._f{width:11.351467pt;}
._e{width:12.525067pt;}
._2f{width:13.517867pt;}
._2b{width:14.805867pt;}
._12{width:16.050933pt;}
._30{width:17.707733pt;}
._31{width:18.980533pt;}
._1a{width:20.326933pt;}
._2c{width:21.429333pt;}
._11{width:29.310400pt;}
._22{width:31.370064pt;}
._13{width:36.093600pt;}
._18{width:38.617920pt;}
._14{width:53.968267pt;}
._2a{width:66.720000pt;}
._25{width:67.840000pt;}
._24{width:69.546667pt;}
._28{width:73.173333pt;}
._29{width:74.133333pt;}
._27{width:77.493333pt;}
._26{width:79.520000pt;}
._23{width:82.346667pt;}
._21{width:353.813333pt;}
._20{width:374.240000pt;}
._1e{width:413.013333pt;}
._1d{width:450.133333pt;}
._1f{width:456.586667pt;}
._1{width:882.854400pt;}
._19{width:885.627733pt;}
._1c{width:889.227733pt;}
._10{width:890.987733pt;}
._1b{width:1080.290667pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.ya8{bottom:94.325067pt;}
.y5e{bottom:94.369200pt;}
.y16e{bottom:94.459067pt;}
.y84{bottom:94.461200pt;}
.y14c{bottom:94.477733pt;}
.yce{bottom:94.485600pt;}
.y18c{bottom:94.485733pt;}
.y29a{bottom:94.492800pt;}
.y204{bottom:94.513600pt;}
.y3b{bottom:94.530133pt;}
.yeb{bottom:94.555467pt;}
.y1db{bottom:94.577600pt;}
.y224{bottom:97.150933pt;}
.y25c{bottom:100.349200pt;}
.y14b{bottom:109.813733pt;}
.y18b{bottom:109.821733pt;}
.y299{bottom:112.159467pt;}
.ya7{bottom:112.341733pt;}
.ycd{bottom:112.484267pt;}
.y18a{bottom:112.484400pt;}
.y5d{bottom:112.523867pt;}
.yea{bottom:112.648800pt;}
.y16d{bottom:112.935733pt;}
.y83{bottom:113.091200pt;}
.y1da{bottom:113.268933pt;}
.y3a{bottom:113.497467pt;}
.y25b{bottom:118.350533pt;}
.y203{bottom:121.070933pt;}
.y14a{bottom:125.149733pt;}
.y298{bottom:129.826133pt;}
.ya6{bottom:130.358400pt;}
.y5c{bottom:130.678533pt;}
.ye9{bottom:130.742133pt;}
.y16c{bottom:131.412400pt;}
.y82{bottom:131.721200pt;}
.y1d9{bottom:131.960267pt;}
.y39{bottom:132.464800pt;}
.y223{bottom:136.324000pt;}
.y25a{bottom:136.351867pt;}
.y202{bottom:139.348267pt;}
.y149{bottom:140.485733pt;}
.y277{bottom:144.453867pt;}
.y297{bottom:147.492800pt;}
.ya5{bottom:148.375067pt;}
.y5b{bottom:148.833200pt;}
.ye8{bottom:148.835467pt;}
.y16b{bottom:149.889067pt;}
.y81{bottom:150.351200pt;}
.y1d8{bottom:150.651600pt;}
.ycc{bottom:151.609600pt;}
.y222{bottom:154.325333pt;}
.y259{bottom:154.353200pt;}
.y240{bottom:155.289467pt;}
.y201{bottom:157.625600pt;}
.y148{bottom:158.484400pt;}
.y276{bottom:162.457867pt;}
.y296{bottom:165.159467pt;}
.y1ad{bottom:165.347600pt;}
.ya4{bottom:166.391733pt;}
.ye7{bottom:166.928800pt;}
.y5a{bottom:166.987867pt;}
.y16a{bottom:168.365733pt;}
.y80{bottom:168.981200pt;}
.y1d7{bottom:169.342933pt;}
.ycb{bottom:169.687600pt;}
.y189{bottom:170.356133pt;}
.y38{bottom:170.399467pt;}
.y221{bottom:172.326667pt;}
.y258{bottom:172.354533pt;}
.y23f{bottom:174.241467pt;}
.y1ac{bottom:181.347600pt;}
.y1c{bottom:181.461200pt;}
.y295{bottom:182.826133pt;}
.y200{bottom:184.182933pt;}
.ya3{bottom:184.408400pt;}
.ye6{bottom:185.022133pt;}
.y59{bottom:185.142533pt;}
.y169{bottom:186.842400pt;}
.y7f{bottom:187.611200pt;}
.yca{bottom:187.765600pt;}
.y275{bottom:188.021867pt;}
.y188{bottom:189.078133pt;}
.y37{bottom:189.366800pt;}
.y220{bottom:190.328000pt;}
.y257{bottom:190.355867pt;}
.y23e{bottom:193.193467pt;}
.y1ab{bottom:197.347600pt;}
.y147{bottom:197.641733pt;}
.y1b{bottom:200.127867pt;}
.y294{bottom:200.492800pt;}
.ya2{bottom:202.425067pt;}
.y1ff{bottom:202.460267pt;}
.ye5{bottom:203.115467pt;}
.y58{bottom:203.297200pt;}
.y1ca{bottom:204.928667pt;}
.y168{bottom:205.319067pt;}
.yc9{bottom:205.843600pt;}
.y274{bottom:206.025867pt;}
.y7e{bottom:206.241200pt;}
.y1d6{bottom:206.740933pt;}
.y187{bottom:207.800133pt;}
.y21f{bottom:208.329333pt;}
.y36{bottom:208.334133pt;}
.y256{bottom:208.357200pt;}
.y23d{bottom:212.145467pt;}
.y1aa{bottom:213.347600pt;}
.y146{bottom:216.839067pt;}
.y293{bottom:218.159467pt;}
.y1a{bottom:218.799733pt;}
.ya1{bottom:220.441733pt;}
.y1fe{bottom:220.737600pt;}
.y1c9{bottom:220.928667pt;}
.ye4{bottom:221.208800pt;}
.y57{bottom:221.451867pt;}
.y167{bottom:223.795733pt;}
.yc8{bottom:223.905200pt;}
.y7d{bottom:224.871200pt;}
.y1d5{bottom:225.432267pt;}
.y21e{bottom:226.330667pt;}
.y255{bottom:226.358533pt;}
.y186{bottom:226.522133pt;}
.y35{bottom:227.301467pt;}
.y1a9{bottom:229.347600pt;}
.y273{bottom:231.589867pt;}
.y10b{bottom:233.459600pt;}
.y292{bottom:235.826133pt;}
.y145{bottom:236.036400pt;}
.y19{bottom:236.133067pt;}
.y1c8{bottom:236.928667pt;}
.ya0{bottom:238.458400pt;}
.ye3{bottom:239.302133pt;}
.y56{bottom:239.606533pt;}
.yc7{bottom:241.983200pt;}
.y166{bottom:242.272400pt;}
.y7c{bottom:243.501200pt;}
.y1d4{bottom:244.123600pt;}
.y21d{bottom:244.332000pt;}
.y254{bottom:244.359867pt;}
.y185{bottom:245.244133pt;}
.y1a8{bottom:245.347600pt;}
.y10a{bottom:249.459600pt;}
.y272{bottom:249.593867pt;}
.y23c{bottom:250.049467pt;}
.y1fd{bottom:251.920000pt;}
.y1c7{bottom:252.928667pt;}
.y18{bottom:253.466400pt;}
.y291{bottom:253.492800pt;}
.y144{bottom:255.233733pt;}
.y9f{bottom:256.475067pt;}
.ye2{bottom:257.395467pt;}
.y55{bottom:257.761200pt;}
.yc6{bottom:260.061200pt;}
.y165{bottom:260.749067pt;}
.y1a7{bottom:261.347600pt;}
.y7b{bottom:262.131200pt;}
.y21c{bottom:262.333333pt;}
.y253{bottom:262.361200pt;}
.y1d3{bottom:262.814933pt;}
.y184{bottom:263.966133pt;}
.y34{bottom:265.236133pt;}
.y109{bottom:265.459600pt;}
.y1c6{bottom:268.928667pt;}
.y17{bottom:270.799733pt;}
.y290{bottom:271.159467pt;}
.y1fc{bottom:272.120000pt;}
.y143{bottom:274.431067pt;}
.y9e{bottom:274.491733pt;}
.y271{bottom:275.157867pt;}
.ye1{bottom:275.488800pt;}
.y54{bottom:275.915867pt;}
.y1a6{bottom:277.347600pt;}
.yc5{bottom:278.139200pt;}
.y164{bottom:279.225733pt;}
.y21b{bottom:280.334667pt;}
.y252{bottom:280.362533pt;}
.y7a{bottom:280.761200pt;}
.y108{bottom:281.459600pt;}
.y1d2{bottom:281.506267pt;}
.y183{bottom:282.688133pt;}
.y33{bottom:284.203467pt;}
.y1c5{bottom:284.928667pt;}
.y23b{bottom:287.953467pt;}
.y16{bottom:288.133067pt;}
.y1fb{bottom:292.320000pt;}
.y9d{bottom:292.508400pt;}
.y270{bottom:293.161867pt;}
.y1a5{bottom:293.347600pt;}
.ye0{bottom:293.582133pt;}
.y142{bottom:293.628400pt;}
.y53{bottom:294.070533pt;}
.yc4{bottom:296.217200pt;}
.y107{bottom:297.459600pt;}
.y163{bottom:297.702400pt;}
.y21a{bottom:298.336000pt;}
.y251{bottom:298.363867pt;}
.y79{bottom:299.391200pt;}
.y1d1{bottom:300.197600pt;}
.y1c4{bottom:300.928667pt;}
.y182{bottom:301.410133pt;}
.y32{bottom:303.170800pt;}
.y15{bottom:305.466400pt;}
.y28f{bottom:306.492800pt;}
.y23a{bottom:306.905467pt;}
.y9c{bottom:310.525067pt;}
.y52{bottom:312.225200pt;}
.y141{bottom:312.825733pt;}
.y106{bottom:313.459600pt;}
.y1a4{bottom:313.547600pt;}
.yc3{bottom:314.295200pt;}
.y162{bottom:316.179067pt;}
.y219{bottom:316.337333pt;}
.y250{bottom:316.365200pt;}
.y1c3{bottom:316.928667pt;}
.y78{bottom:318.021200pt;}
.y26f{bottom:318.725867pt;}
.y1d0{bottom:318.888933pt;}
.y1fa{bottom:318.910533pt;}
.y181{bottom:320.132133pt;}
.y31{bottom:322.138133pt;}
.y14{bottom:322.799733pt;}
.y28e{bottom:324.159467pt;}
.y239{bottom:325.857467pt;}
.y9b{bottom:328.541733pt;}
.y105{bottom:329.459600pt;}
.y1a3{bottom:329.547600pt;}
.y51{bottom:330.379867pt;}
.y140{bottom:332.023067pt;}
.yc2{bottom:332.373200pt;}
.y1c2{bottom:332.928667pt;}
.y218{bottom:334.338667pt;}
.y24f{bottom:334.366533pt;}
.y77{bottom:336.651200pt;}
.y26e{bottom:336.729867pt;}
.y1f9{bottom:337.187867pt;}
.y1cf{bottom:337.580267pt;}
.y180{bottom:338.854133pt;}
.y13{bottom:340.133067pt;}
.y30{bottom:341.105467pt;}
.y28d{bottom:341.826133pt;}
.y238{bottom:344.809467pt;}
.y104{bottom:345.459600pt;}
.y1a2{bottom:345.547600pt;}
.y9a{bottom:346.558400pt;}
.y50{bottom:348.534533pt;}
.yc1{bottom:350.451200pt;}
.y13f{bottom:351.220400pt;}
.y24e{bottom:352.367867pt;}
.y1c1{bottom:353.128667pt;}
.y26d{bottom:354.733867pt;}
.y76{bottom:355.281200pt;}
.y1f8{bottom:355.465200pt;}
.y1ce{bottom:356.271600pt;}
.y12{bottom:357.466400pt;}
.y17f{bottom:357.576133pt;}
.y28c{bottom:359.492800pt;}
.y161{bottom:359.553600pt;}
.y2f{bottom:360.072800pt;}
.y103{bottom:361.459600pt;}
.y1a1{bottom:361.547600pt;}
.y99{bottom:364.575067pt;}
.y241{bottom:366.689200pt;}
.yc0{bottom:368.529200pt;}
.y1c0{bottom:369.128667pt;}
.y217{bottom:370.341333pt;}
.y24d{bottom:370.369200pt;}
.y1f7{bottom:373.742533pt;}
.y75{bottom:373.911200pt;}
.y11{bottom:374.799733pt;}
.y15e{bottom:375.553600pt;}
.y17e{bottom:376.298133pt;}
.y13e{bottom:377.195333pt;}
.y102{bottom:377.459600pt;}
.y1a0{bottom:377.547600pt;}
.y26c{bottom:380.297867pt;}
.y98{bottom:382.591733pt;}
.y237{bottom:382.713467pt;}
.y4f{bottom:384.843867pt;}
.y1bf{bottom:385.128667pt;}
.ybf{bottom:386.607200pt;}
.y216{bottom:388.342667pt;}
.y24c{bottom:388.370533pt;}
.y15d{bottom:391.553600pt;}
.y1f6{bottom:392.019867pt;}
.y10{bottom:392.133067pt;}
.y74{bottom:392.541200pt;}
.y13d{bottom:393.195333pt;}
.y101{bottom:393.459600pt;}
.y19f{bottom:393.547600pt;}
.y28b{bottom:394.826133pt;}
.y17d{bottom:395.020133pt;}
.y2e{bottom:397.942400pt;}
.y26b{bottom:398.301867pt;}
.y97{bottom:400.608400pt;}
.y1be{bottom:401.128667pt;}
.y236{bottom:401.665467pt;}
.y4e{bottom:402.998533pt;}
.ybe{bottom:404.685200pt;}
.y215{bottom:406.344000pt;}
.y24b{bottom:406.371867pt;}
.y15c{bottom:407.553600pt;}
.y13b{bottom:409.195333pt;}
.y100{bottom:409.459600pt;}
.yf{bottom:409.466400pt;}
.y19e{bottom:409.547600pt;}
.y1f5{bottom:410.297200pt;}
.y73{bottom:411.171200pt;}
.y1cd{bottom:412.360933pt;}
.y1bd{bottom:417.128667pt;}
.y96{bottom:418.625067pt;}
.y2d{bottom:420.244400pt;}
.y235{bottom:420.617467pt;}
.y4d{bottom:421.153200pt;}
.ybd{bottom:422.763200pt;}
.ydf{bottom:422.838933pt;}
.y15b{bottom:423.553600pt;}
.y26a{bottom:423.865867pt;}
.y214{bottom:424.345333pt;}
.y24a{bottom:424.373200pt;}
.y123{bottom:425.195200pt;}
.y13a{bottom:425.195333pt;}
.yff{bottom:425.459600pt;}
.y19d{bottom:425.547600pt;}
.y1f4{bottom:428.574533pt;}
.y72{bottom:429.801200pt;}
.y28a{bottom:430.159467pt;}
.y1cc{bottom:431.052267pt;}
.y17c{bottom:432.648533pt;}
.y1bc{bottom:433.128667pt;}
.y95{bottom:436.641733pt;}
.ye{bottom:438.133067pt;}
.y4c{bottom:439.307867pt;}
.y160{bottom:439.553600pt;}
.y234{bottom:439.569467pt;}
.ybc{bottom:440.841200pt;}
.y122{bottom:441.195200pt;}
.y139{bottom:441.195333pt;}
.yfe{bottom:441.459600pt;}
.y19c{bottom:441.547600pt;}
.y269{bottom:441.869867pt;}
.y213{bottom:442.346667pt;}
.y249{bottom:442.374533pt;}
.y1f3{bottom:446.851867pt;}
.yde{bottom:447.110667pt;}
.y289{bottom:447.834933pt;}
.y71{bottom:448.431200pt;}
.y1bb{bottom:449.128667pt;}
.y94{bottom:454.658400pt;}
.y17b{bottom:454.698533pt;}
.y15a{bottom:455.553600pt;}
.y121{bottom:457.195200pt;}
.y138{bottom:457.195333pt;}
.y1e0{bottom:457.462533pt;}
.y233{bottom:458.521467pt;}
.ybb{bottom:458.919200pt;}
.y212{bottom:460.348000pt;}
.y248{bottom:460.375867pt;}
.y19b{bottom:461.747600pt;}
.y1ba{bottom:465.128667pt;}
.y1f2{bottom:465.129200pt;}
.y288{bottom:465.501600pt;}
.y70{bottom:467.061200pt;}
.y268{bottom:467.433867pt;}
.y159{bottom:471.553600pt;}
.y93{bottom:472.675067pt;}
.y120{bottom:473.195200pt;}
.y137{bottom:473.195333pt;}
.y4b{bottom:475.617200pt;}
.yba{bottom:476.997200pt;}
.y232{bottom:477.473467pt;}
.yfd{bottom:477.659600pt;}
.y211{bottom:478.349333pt;}
.y247{bottom:478.377200pt;}
.y1b9{bottom:481.128667pt;}
.y287{bottom:483.168267pt;}
.y1f1{bottom:483.406533pt;}
.y1cb{bottom:485.328667pt;}
.y267{bottom:485.437867pt;}
.y6f{bottom:485.691200pt;}
.y158{bottom:487.553600pt;}
.y19a{bottom:487.948000pt;}
.y11f{bottom:489.195200pt;}
.y136{bottom:489.195333pt;}
.yd{bottom:489.476800pt;}
.y92{bottom:490.691733pt;}
.yfc{bottom:493.659600pt;}
.y4a{bottom:493.771867pt;}
.yb9{bottom:495.075200pt;}
.y210{bottom:496.350667pt;}
.y246{bottom:496.378533pt;}
.y231{bottom:496.425467pt;}
.y286{bottom:500.834933pt;}
.y1b8{bottom:501.328667pt;}
.y1f0{bottom:501.683867pt;}
.y157{bottom:503.553600pt;}
.y6e{bottom:504.321200pt;}
.y11e{bottom:505.195200pt;}
.y135{bottom:505.195333pt;}
.y199{bottom:505.949333pt;}
.yfb{bottom:509.659600pt;}
.y17a{bottom:510.778267pt;}
.y266{bottom:511.001867pt;}
.y49{bottom:511.926533pt;}
.yb8{bottom:513.153200pt;}
.yc{bottom:513.482133pt;}
.y20f{bottom:514.352000pt;}
.y245{bottom:514.379867pt;}
.y230{bottom:515.377467pt;}
.y1b7{bottom:517.328667pt;}
.y285{bottom:518.501600pt;}
.y15f{bottom:519.553600pt;}
.y1ef{bottom:519.961200pt;}
.y11d{bottom:521.195200pt;}
.y134{bottom:521.195333pt;}
.ydd{bottom:522.701200pt;}
.y6d{bottom:522.951200pt;}
.y198{bottom:523.950667pt;}
.yfa{bottom:525.659600pt;}
.y91{bottom:527.593200pt;}
.y265{bottom:529.005867pt;}
.y179{bottom:529.500267pt;}
.y1df{bottom:530.081200pt;}
.yb7{bottom:531.231200pt;}
.y244{bottom:532.381200pt;}
.y1b6{bottom:533.328667pt;}
.y2c{bottom:533.471867pt;}
.y22f{bottom:534.329467pt;}
.y156{bottom:535.553600pt;}
.y284{bottom:536.168267pt;}
.y11c{bottom:537.195200pt;}
.y133{bottom:537.195333pt;}
.y1ee{bottom:538.238533pt;}
.y6c{bottom:541.581200pt;}
.yf8{bottom:541.659600pt;}
.y197{bottom:541.952000pt;}
.y178{bottom:548.222267pt;}
.y48{bottom:548.235867pt;}
.y90{bottom:548.941200pt;}
.ydc{bottom:549.094533pt;}
.yb6{bottom:549.309200pt;}
.y1b5{bottom:549.328667pt;}
.y20e{bottom:550.382533pt;}
.y2b{bottom:553.111867pt;}
.y11b{bottom:553.195200pt;}
.y132{bottom:553.195333pt;}
.y22e{bottom:553.281467pt;}
.y283{bottom:553.834933pt;}
.y264{bottom:554.569867pt;}
.yb{bottom:556.355867pt;}
.y1ed{bottom:556.515867pt;}
.yf7{bottom:557.659600pt;}
.y196{bottom:559.953333pt;}
.y6b{bottom:560.211200pt;}
.y1b4{bottom:565.328667pt;}
.y47{bottom:566.390533pt;}
.y177{bottom:566.944267pt;}
.ydb{bottom:567.187867pt;}
.yb5{bottom:567.387200pt;}
.y243{bottom:568.383867pt;}
.y11a{bottom:569.195200pt;}
.y131{bottom:569.195333pt;}
.y282{bottom:571.501600pt;}
.y22d{bottom:572.233467pt;}
.y263{bottom:572.573867pt;}
.y2a{bottom:572.733733pt;}
.yf9{bottom:573.659600pt;}
.y1ec{bottom:574.793200pt;}
.y195{bottom:577.954667pt;}
.y6a{bottom:578.841200pt;}
.y155{bottom:580.681200pt;}
.y1b3{bottom:581.328667pt;}
.ya{bottom:584.363867pt;}
.y46{bottom:584.545200pt;}
.y119{bottom:585.195200pt;}
.y13c{bottom:585.195333pt;}
.yda{bottom:585.281200pt;}
.yb4{bottom:585.465200pt;}
.y176{bottom:585.666267pt;}
.y20d{bottom:586.385200pt;}
.y281{bottom:589.168267pt;}
.yf6{bottom:589.659600pt;}
.y29{bottom:591.040400pt;}
.y22c{bottom:591.185467pt;}
.y1eb{bottom:593.070533pt;}
.y194{bottom:595.956000pt;}
.y2a4{bottom:596.838000pt;}
.y1b2{bottom:597.328667pt;}
.y69{bottom:597.471200pt;}
.y262{bottom:598.137867pt;}
.y154{bottom:599.157867pt;}
.y118{bottom:601.195200pt;}
.y130{bottom:601.195333pt;}
.y1de{bottom:602.699867pt;}
.yd9{bottom:603.374533pt;}
.yb3{bottom:603.543200pt;}
.y8f{bottom:604.217867pt;}
.y242{bottom:604.386533pt;}
.yf5{bottom:605.659600pt;}
.y280{bottom:606.834933pt;}
.y28{bottom:609.347067pt;}
.y1ea{bottom:611.347867pt;}
.y9{bottom:612.371867pt;}
.y1b1{bottom:613.328667pt;}
.y2a3{bottom:614.838000pt;}
.y68{bottom:616.101200pt;}
.y261{bottom:616.141867pt;}
.y117{bottom:617.195200pt;}
.y12f{bottom:617.195333pt;}
.y153{bottom:617.634533pt;}
.y45{bottom:620.854533pt;}
.yd8{bottom:621.467867pt;}
.yb2{bottom:621.621200pt;}
.yf4{bottom:621.659600pt;}
.y8e{bottom:622.234533pt;}
.y20c{bottom:622.387867pt;}
.y27f{bottom:624.501600pt;}
.y27{bottom:627.653733pt;}
.y22b{bottom:629.041333pt;}
.y1b0{bottom:629.328667pt;}
.y1e9{bottom:629.625200pt;}
.y2a2{bottom:632.838000pt;}
.y116{bottom:633.195200pt;}
.y12e{bottom:633.195333pt;}
.y67{bottom:634.731200pt;}
.y152{bottom:636.111200pt;}
.yf3{bottom:637.659600pt;}
.y44{bottom:639.009200pt;}
.yd7{bottom:639.561200pt;}
.yb1{bottom:639.699200pt;}
.y175{bottom:639.974267pt;}
.y8d{bottom:640.251200pt;}
.y8{bottom:640.379867pt;}
.y20b{bottom:640.389200pt;}
.y260{bottom:641.705867pt;}
.y27e{bottom:642.168267pt;}
.y26{bottom:645.960400pt;}
.y115{bottom:649.195200pt;}
.y12d{bottom:649.195333pt;}
.y193{bottom:649.528667pt;}
.y2a1{bottom:650.838000pt;}
.y22a{bottom:651.325333pt;}
.y66{bottom:653.361200pt;}
.yf2{bottom:653.659600pt;}
.y151{bottom:654.587867pt;}
.y1e8{bottom:656.182533pt;}
.y43{bottom:657.163867pt;}
.yd6{bottom:657.654533pt;}
.yb0{bottom:657.777200pt;}
.y8c{bottom:658.267867pt;}
.y20a{bottom:658.390533pt;}
.y25f{bottom:659.709867pt;}
.y27d{bottom:659.834933pt;}
.y174{bottom:660.174267pt;}
.y25{bottom:664.251333pt;}
.y114{bottom:665.195200pt;}
.y12c{bottom:665.195333pt;}
.y1af{bottom:665.528667pt;}
.yf1{bottom:669.659600pt;}
.y65{bottom:671.991200pt;}
.y1e7{bottom:674.459867pt;}
.y42{bottom:675.318533pt;}
.yd5{bottom:675.747867pt;}
.yaf{bottom:675.855200pt;}
.y8b{bottom:676.284533pt;}
.y209{bottom:676.391867pt;}
.y27c{bottom:677.501600pt;}
.y25e{bottom:677.713867pt;}
.y2a0{bottom:680.171333pt;}
.y173{bottom:680.374267pt;}
.y113{bottom:681.195200pt;}
.y12b{bottom:681.195333pt;}
.y192{bottom:681.528667pt;}
.y24{bottom:682.558000pt;}
.yf0{bottom:685.659600pt;}
.y64{bottom:690.621200pt;}
.y150{bottom:691.541200pt;}
.y1e6{bottom:692.737200pt;}
.y1dd{bottom:693.473200pt;}
.yd4{bottom:693.841200pt;}
.yae{bottom:693.933200pt;}
.y8a{bottom:694.301200pt;}
.y208{bottom:694.393200pt;}
.y7{bottom:694.834533pt;}
.y27b{bottom:695.168267pt;}
.y112{bottom:697.195200pt;}
.y12a{bottom:697.195333pt;}
.y191{bottom:697.528667pt;}
.y172{bottom:700.574267pt;}
.y23{bottom:700.864667pt;}
.y25d{bottom:703.277867pt;}
.yef{bottom:706.192933pt;}
.y229{bottom:707.641200pt;}
.y63{bottom:709.251200pt;}
.y1e5{bottom:711.014533pt;}
.y41{bottom:711.627867pt;}
.yd3{bottom:711.934533pt;}
.yad{bottom:712.011200pt;}
.y89{bottom:712.317867pt;}
.y207{bottom:712.394533pt;}
.y111{bottom:713.195200pt;}
.y129{bottom:713.195333pt;}
.y190{bottom:713.528667pt;}
.y29f{bottom:717.064667pt;}
.y22{bottom:719.171333pt;}
.y6{bottom:721.061200pt;}
.yee{bottom:722.192933pt;}
.y27a{bottom:724.168267pt;}
.y228{bottom:726.593200pt;}
.y62{bottom:727.881200pt;}
.y14f{bottom:728.494533pt;}
.y110{bottom:729.195200pt;}
.y128{bottom:729.195333pt;}
.y1e4{bottom:729.291867pt;}
.y18f{bottom:729.528667pt;}
.y40{bottom:729.782533pt;}
.yd2{bottom:730.027867pt;}
.yac{bottom:730.089200pt;}
.y88{bottom:730.334533pt;}
.y206{bottom:730.395867pt;}
.y29e{bottom:734.398000pt;}
.y21{bottom:737.478000pt;}
.y5{bottom:739.727867pt;}
.y10f{bottom:745.195200pt;}
.y127{bottom:745.195333pt;}
.y18e{bottom:745.528667pt;}
.y227{bottom:745.545200pt;}
.y171{bottom:746.235200pt;}
.y61{bottom:746.511200pt;}
.y14e{bottom:746.971200pt;}
.y1e3{bottom:747.569200pt;}
.y3f{bottom:747.937200pt;}
.yd1{bottom:748.121200pt;}
.yab{bottom:748.167200pt;}
.y87{bottom:748.351200pt;}
.y205{bottom:748.397200pt;}
.y29d{bottom:751.731333pt;}
.y20{bottom:755.784667pt;}
.y10e{bottom:761.195200pt;}
.y126{bottom:761.195333pt;}
.y18d{bottom:761.528667pt;}
.y226{bottom:764.497200pt;}
.y170{bottom:764.957200pt;}
.y60{bottom:765.141200pt;}
.y1e2{bottom:765.846533pt;}
.y4{bottom:765.954533pt;}
.y1dc{bottom:766.091867pt;}
.yd0{bottom:766.214533pt;}
.yaa{bottom:766.245200pt;}
.y86{bottom:766.367867pt;}
.yed{bottom:766.398533pt;}
.y29c{bottom:769.064667pt;}
.y1f{bottom:774.091333pt;}
.y279{bottom:775.843067pt;}
.y1ae{bottom:777.528667pt;}
.y10d{bottom:781.728533pt;}
.y125{bottom:781.728667pt;}
.y225{bottom:783.449200pt;}
.y16f{bottom:783.679200pt;}
.y5f{bottom:783.771200pt;}
.y14d{bottom:783.924533pt;}
.y1e1{bottom:784.123867pt;}
.y3e{bottom:784.246533pt;}
.ycf{bottom:784.307867pt;}
.ya9{bottom:784.323200pt;}
.y85{bottom:784.384533pt;}
.yec{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y29b{bottom:786.398000pt;}
.y10c{bottom:797.728533pt;}
.y124{bottom:797.728667pt;}
.y278{bottom:800.184400pt;}
.y3d{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1e{bottom:803.731333pt;}
.y1d{bottom:842.834667pt;}
.y3c{bottom:858.834667pt;}
.h13{height:19.307320pt;}
.hd{height:33.763396pt;}
.h12{height:35.546875pt;}
.hf{height:36.796875pt;}
.h6{height:39.479167pt;}
.h16{height:42.316406pt;}
.he{height:44.414062pt;}
.h10{height:47.265625pt;}
.h11{height:49.322917pt;}
.h2{height:49.348958pt;}
.h8{height:49.411892pt;}
.h3{height:51.816406pt;}
.h14{height:54.355469pt;}
.hb{height:56.721354pt;}
.ha{height:56.751302pt;}
.hc{height:56.816902pt;}
.h7{height:61.686198pt;}
.h15{height:64.052444pt;}
.h9{height:66.621094pt;}
.h5{height:69.088542pt;}
.h4{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.937733pt;}
.x5{left:73.760533pt;}
.x8{left:74.683200pt;}
.x1{left:75.590533pt;}
.x55{left:76.551867pt;}
.xa{left:81.637467pt;}
.x25{left:83.406533pt;}
.x43{left:90.820667pt;}
.x7{left:92.183867pt;}
.x52{left:93.305600pt;}
.x4{left:94.213867pt;}
.x26{left:95.473200pt;}
.x44{left:96.725067pt;}
.x4c{left:98.650667pt;}
.xc{left:101.166533pt;}
.x32{left:105.126533pt;}
.x18{left:106.673200pt;}
.x4e{left:107.602267pt;}
.x4f{left:109.258267pt;}
.x51{left:111.542933pt;}
.x50{left:112.830933pt;}
.x53{left:113.742800pt;}
.xd{left:119.539867pt;}
.x35{left:121.040800pt;}
.x12{left:126.113200pt;}
.x36{left:131.227467pt;}
.x13{left:132.713200pt;}
.x14{left:134.539867pt;}
.x46{left:136.649067pt;}
.x37{left:138.734133pt;}
.x47{left:139.929067pt;}
.x15{left:143.739867pt;}
.x2b{left:144.713200pt;}
.x2a{left:145.686533pt;}
.x11{left:146.846533pt;}
.x45{left:150.995733pt;}
.x17{left:154.953200pt;}
.x49{left:156.342400pt;}
.xb{left:157.729733pt;}
.x34{left:159.307467pt;}
.x39{left:161.600800pt;}
.x30{left:166.966533pt;}
.x2f{left:167.886533pt;}
.x16{left:171.233200pt;}
.x48{left:173.649067pt;}
.x2d{left:175.446533pt;}
.x38{left:179.014133pt;}
.x3a{left:180.040800pt;}
.x24{left:181.499867pt;}
.x6{left:189.034667pt;}
.x3{left:206.115467pt;}
.x2{left:207.480400pt;}
.x54{left:210.645333pt;}
.x23{left:287.833200pt;}
.x10{left:289.753200pt;}
.x28{left:327.726533pt;}
.x21{left:328.726533pt;}
.xf{left:342.246533pt;}
.x4d{left:343.650667pt;}
.x33{left:348.766533pt;}
.x1b{left:372.593200pt;}
.x4a{left:376.409067pt;}
.x1e{left:384.233200pt;}
.x3e{left:385.467467pt;}
.xe{left:388.366533pt;}
.x41{left:389.467467pt;}
.x3f{left:393.467467pt;}
.x1c{left:395.819867pt;}
.x1d{left:397.446533pt;}
.x4b{left:399.035733pt;}
.x1a{left:402.873200pt;}
.x2c{left:404.059867pt;}
.x42{left:404.987467pt;}
.x31{left:408.206533pt;}
.x1f{left:412.726533pt;}
.x3c{left:415.894133pt;}
.x29{left:418.366533pt;}
.x22{left:420.699867pt;}
.x40{left:421.920800pt;}
.x20{left:426.819867pt;}
.x3b{left:427.734133pt;}
.x2e{left:428.779867pt;}
.x3d{left:443.267467pt;}
.x27{left:533.179867pt;}
.x19{left:535.099867pt;}
}




    .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; }
  