
    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_e69fd13680fb1445d3112070.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_cbe267b34df12a9da5cf773e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1b83b64d0d6a1ee54434e249.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_461c360f0b785dfffb8c1cc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a1683722740562ddbbdd3e87.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_b1cde85fa806f97c3c33718d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_3593796de72cf74180aab2ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.878000;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);}
.v2{vertical-align:-16.800000px;}
.v6{vertical-align:-14.401800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.782200px;}
.v4{vertical-align:16.500000px;}
.v8{vertical-align:18.900000px;}
.v3{vertical-align:23.100000px;}
.v1{vertical-align:27.300000px;}
.v7{vertical-align:54.000000px;}
.ls11{letter-spacing:-3.630000px;}
.ls1b{letter-spacing:-2.208000px;}
.ls34{letter-spacing:-1.968000px;}
.ls4{letter-spacing:-1.320000px;}
.ls1a{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.672000px;}
.ls1c{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.576000px;}
.ls31{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.330000px;}
.ls33{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.002400px;}
.ls9{letter-spacing:0.003000px;}
.lsc{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.330000px;}
.ls35{letter-spacing:0.384000px;}
.ls30{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.660000px;}
.ls32{letter-spacing:0.768000px;}
.ls19{letter-spacing:1.320000px;}
.lsb{letter-spacing:3.887400px;}
.ls24{letter-spacing:4.579800px;}
.lsd{letter-spacing:9.716400px;}
.ls15{letter-spacing:17.999550px;}
.ls25{letter-spacing:18.626400px;}
.ls14{letter-spacing:18.671533px;}
.ls6{letter-spacing:96.000000px;}
.lsf{letter-spacing:113.325167px;}
.ls1f{letter-spacing:119.231400px;}
.ls20{letter-spacing:124.575000px;}
.ls1d{letter-spacing:143.231400px;}
.ls1e{letter-spacing:148.575000px;}
.ls16{letter-spacing:151.940201px;}
.ls21{letter-spacing:153.895200px;}
.ls10{letter-spacing:157.268068px;}
.ls22{letter-spacing:159.216000px;}
.ls13{letter-spacing:161.323967px;}
.ls23{letter-spacing:169.359600px;}
.ls18{letter-spacing:198.667033px;}
.ls12{letter-spacing:235.914102px;}
.ls26{letter-spacing:250.129800px;}
.ls2e{letter-spacing:253.200000px;}
.ls17{letter-spacing:289.288768px;}
.ls2f{letter-spacing:328.575000px;}
.ls2d{letter-spacing:347.231400px;}
.ls2c{letter-spacing:352.575000px;}
.ls2a{letter-spacing:371.231400px;}
.ls2b{letter-spacing:376.575000px;}
.ls29{letter-spacing:381.895200px;}
.ls27{letter-spacing:387.215400px;}
.ls28{letter-spacing:405.895200px;}
.lse{letter-spacing:630.524796px;}
.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;}
}
.ws2c{word-spacing:-289.288768px;}
.ws1e{word-spacing:-247.913802px;}
.ws2d{word-spacing:-198.667033px;}
.ws20{word-spacing:-173.323667px;}
.ws23{word-spacing:-163.267918px;}
.ws2b{word-spacing:-151.940201px;}
.ws21{word-spacing:-30.671233px;}
.ws22{word-spacing:-29.999250px;}
.ws2f{word-spacing:-17.820000px;}
.ws58{word-spacing:-16.830000px;}
.ws19{word-spacing:-16.500000px;}
.ws38{word-spacing:-16.170000px;}
.ws2{word-spacing:-13.500000px;}
.wsa9{word-spacing:-13.230000px;}
.ws7e{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.000000px;}
.ws39{word-spacing:-11.550000px;}
.wsc{word-spacing:-11.328000px;}
.ws4e{word-spacing:-10.992000px;}
.ws1c{word-spacing:-10.725000px;}
.wsbd{word-spacing:-10.032000px;}
.ws34{word-spacing:-9.792000px;}
.ws1{word-spacing:-8.400000px;}
.ws4d{word-spacing:-6.000000px;}
.ws26{word-spacing:-5.775000px;}
.ws88{word-spacing:-4.266000px;}
.ws5d{word-spacing:-4.158000px;}
.ws9f{word-spacing:-3.618000px;}
.ws7f{word-spacing:-3.234000px;}
.wsc0{word-spacing:-3.186000px;}
.ws60{word-spacing:-3.036000px;}
.ws96{word-spacing:-2.862000px;}
.ws7a{word-spacing:-2.772000px;}
.ws32{word-spacing:-2.640000px;}
.wsb0{word-spacing:-2.538000px;}
.wsb1{word-spacing:-2.268000px;}
.wsca{word-spacing:-2.160000px;}
.wsc9{word-spacing:-1.998000px;}
.ws50{word-spacing:-1.980000px;}
.ws85{word-spacing:-1.944000px;}
.ws90{word-spacing:-1.782000px;}
.wsa1{word-spacing:-1.674000px;}
.ws71{word-spacing:-1.650000px;}
.wsa5{word-spacing:-1.620000px;}
.wsba{word-spacing:-1.512000px;}
.ws12{word-spacing:-1.452000px;}
.wsa6{word-spacing:-1.404000px;}
.ws4a{word-spacing:-1.386000px;}
.ws33{word-spacing:-1.320000px;}
.ws6f{word-spacing:-1.188000px;}
.ws82{word-spacing:-1.134000px;}
.wsb2{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.056000px;}
.wsb7{word-spacing:-1.026000px;}
.wsb3{word-spacing:-0.756000px;}
.ws1b{word-spacing:-0.660000px;}
.ws95{word-spacing:-0.648000px;}
.wsad{word-spacing:-0.594000px;}
.ws86{word-spacing:-0.540000px;}
.ws97{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.330000px;}
.wsab{word-spacing:-0.270000px;}
.ws55{word-spacing:-0.198000px;}
.ws3{word-spacing:0.000000px;}
.wsb8{word-spacing:0.270000px;}
.ws11{word-spacing:0.330000px;}
.ws9a{word-spacing:0.432000px;}
.ws9e{word-spacing:0.540000px;}
.ws4{word-spacing:0.576000px;}
.ws9b{word-spacing:0.594000px;}
.ws36{word-spacing:0.660000px;}
.wsc7{word-spacing:0.702000px;}
.wscc{word-spacing:0.756000px;}
.ws79{word-spacing:0.792000px;}
.ws91{word-spacing:0.864000px;}
.ws51{word-spacing:0.924000px;}
.wsa2{word-spacing:0.972000px;}
.ws92{word-spacing:1.188000px;}
.wsc8{word-spacing:1.242000px;}
.wsf{word-spacing:1.320000px;}
.wsc1{word-spacing:1.350000px;}
.ws8a{word-spacing:1.404000px;}
.wsbc{word-spacing:1.458000px;}
.ws94{word-spacing:1.944000px;}
.ws2a{word-spacing:1.980000px;}
.wsc6{word-spacing:2.268000px;}
.ws61{word-spacing:2.442000px;}
.ws35{word-spacing:2.574000px;}
.ws9d{word-spacing:2.754000px;}
.ws7d{word-spacing:2.772000px;}
.wsa7{word-spacing:2.916000px;}
.ws99{word-spacing:2.970000px;}
.ws80{word-spacing:3.132000px;}
.wsae{word-spacing:3.240000px;}
.ws75{word-spacing:3.300000px;}
.ws5f{word-spacing:3.564000px;}
.ws53{word-spacing:3.696000px;}
.ws83{word-spacing:3.780000px;}
.ws5{word-spacing:3.960000px;}
.ws5a{word-spacing:4.158000px;}
.ws5c{word-spacing:4.224000px;}
.wscb{word-spacing:4.266000px;}
.ws62{word-spacing:4.356000px;}
.ws87{word-spacing:4.374000px;}
.ws56{word-spacing:4.560000px;}
.wsd{word-spacing:4.884000px;}
.ws76{word-spacing:4.950000px;}
.wsa0{word-spacing:5.076000px;}
.ws8d{word-spacing:5.130000px;}
.wsaf{word-spacing:5.346000px;}
.ws6{word-spacing:5.412000px;}
.ws54{word-spacing:5.808000px;}
.wsb{word-spacing:5.874000px;}
.ws9{word-spacing:6.072000px;}
.wsaa{word-spacing:6.210000px;}
.wsc4{word-spacing:6.534000px;}
.wsc3{word-spacing:6.642000px;}
.ws77{word-spacing:6.864000px;}
.ws13{word-spacing:7.128000px;}
.ws28{word-spacing:7.194000px;}
.wsac{word-spacing:7.560000px;}
.ws8f{word-spacing:7.614000px;}
.wsc2{word-spacing:7.668000px;}
.ws17{word-spacing:8.118000px;}
.wse{word-spacing:8.184000px;}
.ws8e{word-spacing:8.370000px;}
.ws1a{word-spacing:8.448000px;}
.wsb9{word-spacing:8.910000px;}
.ws5b{word-spacing:9.174000px;}
.ws93{word-spacing:9.396000px;}
.ws7c{word-spacing:9.504000px;}
.ws29{word-spacing:9.702000px;}
.ws8c{word-spacing:9.828000px;}
.ws5e{word-spacing:9.900000px;}
.ws70{word-spacing:9.966000px;}
.ws7{word-spacing:10.230000px;}
.ws7b{word-spacing:10.362000px;}
.ws89{word-spacing:10.422000px;}
.ws4b{word-spacing:10.560000px;}
.ws9c{word-spacing:10.692000px;}
.wsbf{word-spacing:11.394000px;}
.ws4c{word-spacing:11.682000px;}
.ws78{word-spacing:11.748000px;}
.ws52{word-spacing:12.144000px;}
.wsa3{word-spacing:12.204000px;}
.ws98{word-spacing:12.474000px;}
.wsb5{word-spacing:12.636000px;}
.wsbb{word-spacing:13.068000px;}
.ws81{word-spacing:13.824000px;}
.wsce{word-spacing:15.390000px;}
.ws1d{word-spacing:15.935602px;}
.ws25{word-spacing:15.983600px;}
.wsb6{word-spacing:16.524000px;}
.wsb4{word-spacing:17.334000px;}
.wsa4{word-spacing:17.928000px;}
.wscf{word-spacing:18.144000px;}
.ws59{word-spacing:18.612000px;}
.ws24{word-spacing:21.263468px;}
.ws73{word-spacing:22.770000px;}
.wsbe{word-spacing:23.544000px;}
.ws84{word-spacing:23.868000px;}
.ws1f{word-spacing:23.999400px;}
.wsd0{word-spacing:27.324000px;}
.wsc5{word-spacing:31.428000px;}
.ws15{word-spacing:37.344000px;}
.ws3d{word-spacing:38.688000px;}
.ws3b{word-spacing:40.704000px;}
.ws49{word-spacing:44.928000px;}
.ws3a{word-spacing:68.049600px;}
.ws3f{word-spacing:72.000000px;}
.ws31{word-spacing:91.620000px;}
.ws42{word-spacing:92.928000px;}
.ws40{word-spacing:96.000000px;}
.ws48{word-spacing:120.000000px;}
.ws43{word-spacing:124.032000px;}
.ws44{word-spacing:129.360000px;}
.ws3c{word-spacing:135.984000px;}
.ws3e{word-spacing:148.032000px;}
.ws30{word-spacing:152.964000px;}
.ws41{word-spacing:153.360000px;}
.ws46{word-spacing:158.688000px;}
.ws47{word-spacing:164.016000px;}
.ws45{word-spacing:182.688000px;}
.ws69{word-spacing:184.129800px;}
.ws6b{word-spacing:187.200000px;}
.ws6c{word-spacing:200.929800px;}
.ws6e{word-spacing:202.710600px;}
.ws67{word-spacing:204.000000px;}
.ws6d{word-spacing:208.129800px;}
.ws6a{word-spacing:211.200000px;}
.ws68{word-spacing:224.929800px;}
.ws65{word-spacing:228.000000px;}
.ws16{word-spacing:233.376000px;}
.ws64{word-spacing:234.000000px;}
.ws66{word-spacing:258.000000px;}
.wsa8{word-spacing:387.165600px;}
.wscd{word-spacing:388.908000px;}
.ws63{word-spacing:392.016000px;}
.ws10{word-spacing:392.052000px;}
.ws18{word-spacing:392.719200px;}
.ws14{word-spacing:392.815200px;}
.ws8{word-spacing:392.992800px;}
.ws2e{word-spacing:393.074400px;}
.ws57{word-spacing:393.328800px;}
.ws37{word-spacing:393.420000px;}
.ws72{word-spacing:393.554400px;}
.ws8b{word-spacing:393.986400px;}
.ws27{word-spacing:572.022000px;}
.ws4f{word-spacing:1437.360000px;}
._30{margin-left:-499.907502px;}
._2c{margin-left:-409.861753px;}
._25{margin-left:-337.239569px;}
._29{margin-left:-265.289368px;}
._2d{margin-left:-247.961801px;}
._31{margin-left:-175.963601px;}
._26{margin-left:-174.571636px;}
._35{margin-left:-125.324867px;}
._2a{margin-left:-97.341566px;}
._46{margin-left:-19.913400px;}
._2b{margin-left:-17.960983px;}
._16{margin-left:-16.723800px;}
._7{margin-left:-15.000000px;}
._5{margin-left:-9.348000px;}
._10{margin-left:-8.005200px;}
._3{margin-left:-6.710400px;}
._4{margin-left:-4.981800px;}
._0{margin-left:-3.091200px;}
._e{margin-left:-2.085600px;}
._1{margin-left:-1.032000px;}
._2{width:1.166400px;}
._d{width:2.392800px;}
._8{width:3.780000px;}
._a{width:5.610000px;}
._f{width:6.625800px;}
._9{width:8.112000px;}
._12{width:9.113400px;}
._b{width:10.243200px;}
._c{width:11.902800px;}
._6{width:13.416000px;}
._13{width:15.234600px;}
._48{width:16.545600px;}
._11{width:17.622000px;}
._15{width:18.724200px;}
._14{width:19.734000px;}
._2e{width:21.311467px;}
._17{width:22.743600px;}
._22{width:23.905200px;}
._21{width:24.961200px;}
._42{width:26.770301px;}
._34{width:28.031299px;}
._36{width:29.137967px;}
._2f{width:30.671233px;}
._49{width:32.155367px;}
._32{width:33.311167px;}
._24{width:35.951101px;}
._27{width:41.326967px;}
._28{width:53.326667px;}
._3a{width:73.747200px;}
._3c{width:77.328000px;}
._20{width:83.107200px;}
._41{width:86.419200px;}
._1a{width:89.376000px;}
._1d{width:96.000000px;}
._3d{width:107.328000px;}
._3f{width:110.085600px;}
._40{width:112.171200px;}
._39{width:130.372200px;}
._3b{width:164.016000px;}
._1b{width:174.117600px;}
._38{width:183.588000px;}
._3e{width:192.000000px;}
._19{width:210.672000px;}
._1f{width:262.128000px;}
._47{width:283.717800px;}
._37{width:405.936000px;}
._1e{width:410.064000px;}
._1c{width:428.688000px;}
._23{width:464.736000px;}
._18{width:607.344000px;}
._44{width:741.552000px;}
._43{width:848.160000px;}
._45{width:858.864000px;}
._33{width:975.628301px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:23.999400px;}
.fs4{font-size:33.600000px;}
.fsd{font-size:37.800000px;}
.fs8{font-size:42.900000px;}
.fs9{font-size:46.200000px;}
.fsb{font-size:47.998800px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:54.600000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:82.913400px;}
.y76{bottom:83.455350px;}
.yb8{bottom:83.675700px;}
.ye3{bottom:83.752800px;}
.y17a{bottom:83.877300px;}
.y19e{bottom:83.963700px;}
.y127{bottom:84.011850px;}
.y1da{bottom:84.026850px;}
.y55{bottom:84.028050px;}
.y213{bottom:84.474900px;}
.y24c{bottom:84.488100px;}
.y8c{bottom:84.573150px;}
.y6{bottom:97.913400px;}
.y1d9{bottom:100.421850px;}
.y212{bottom:100.869900px;}
.y24b{bottom:100.883100px;}
.yb7{bottom:103.175700px;}
.ye2{bottom:103.252800px;}
.y179{bottom:103.377300px;}
.y19d{bottom:103.463700px;}
.y126{bottom:103.511850px;}
.y54{bottom:103.528050px;}
.y8b{bottom:104.073150px;}
.y157{bottom:105.038400px;}
.y75{bottom:105.580350px;}
.y1d8{bottom:116.816850px;}
.y211{bottom:117.264900px;}
.y24a{bottom:117.278100px;}
.y74{bottom:120.580350px;}
.y156{bottom:120.870450px;}
.ye1{bottom:122.752800px;}
.y178{bottom:122.877300px;}
.y19c{bottom:122.963700px;}
.y125{bottom:123.011850px;}
.y53{bottom:123.028050px;}
.y8a{bottom:123.573150px;}
.y5{bottom:130.913400px;}
.y1d7{bottom:133.211850px;}
.y210{bottom:133.659900px;}
.y249{bottom:133.673100px;}
.y155{bottom:136.702350px;}
.yb6{bottom:142.175700px;}
.ye0{bottom:142.252800px;}
.y177{bottom:142.377300px;}
.y73{bottom:142.400700px;}
.y19b{bottom:142.463700px;}
.y124{bottom:142.511850px;}
.y52{bottom:142.528050px;}
.y89{bottom:143.073150px;}
.y1d6{bottom:149.606850px;}
.y20f{bottom:150.054900px;}
.y248{bottom:150.068100px;}
.y154{bottom:152.534400px;}
.y72{bottom:157.400700px;}
.ydf{bottom:161.752800px;}
.y176{bottom:161.877300px;}
.y19a{bottom:161.963700px;}
.y123{bottom:162.011850px;}
.y51{bottom:162.028050px;}
.y1d5{bottom:166.001850px;}
.y20e{bottom:166.449900px;}
.y247{bottom:166.463100px;}
.y153{bottom:168.366450px;}
.y71{bottom:172.400700px;}
.y24{bottom:180.732750px;}
.yb5{bottom:181.175700px;}
.yde{bottom:181.252800px;}
.y175{bottom:181.377300px;}
.y199{bottom:181.463700px;}
.y122{bottom:181.511850px;}
.y50{bottom:181.528050px;}
.y88{bottom:182.073150px;}
.y1d4{bottom:182.397000px;}
.y20d{bottom:182.844900px;}
.y246{bottom:182.858100px;}
.y152{bottom:184.198500px;}
.y70{bottom:194.221050px;}
.y1d3{bottom:198.792000px;}
.y20c{bottom:199.239900px;}
.y245{bottom:199.253100px;}
.y151{bottom:200.030550px;}
.y23{bottom:200.232750px;}
.yb4{bottom:200.675700px;}
.y174{bottom:200.877300px;}
.y198{bottom:200.963700px;}
.y121{bottom:201.011850px;}
.y4f{bottom:201.028050px;}
.y6f{bottom:209.221050px;}
.y1d2{bottom:215.186850px;}
.y20b{bottom:215.634900px;}
.y244{bottom:215.648100px;}
.y150{bottom:215.862600px;}
.y22{bottom:219.732750px;}
.yb3{bottom:220.175700px;}
.ydd{bottom:220.252800px;}
.y173{bottom:220.377300px;}
.y197{bottom:220.463700px;}
.y120{bottom:220.511850px;}
.y4e{bottom:220.528050px;}
.y87{bottom:221.073150px;}
.y6e{bottom:231.041250px;}
.y1d1{bottom:231.581850px;}
.y14f{bottom:231.694650px;}
.y20a{bottom:232.029900px;}
.y243{bottom:232.043100px;}
.yb2{bottom:239.675700px;}
.y172{bottom:239.877300px;}
.y196{bottom:239.963700px;}
.y11f{bottom:240.011850px;}
.y4d{bottom:240.028050px;}
.y86{bottom:240.573150px;}
.y6d{bottom:246.041250px;}
.y14e{bottom:247.526700px;}
.y1d0{bottom:247.976850px;}
.y209{bottom:248.424900px;}
.y242{bottom:248.438100px;}
.y21{bottom:258.732750px;}
.yb1{bottom:259.175700px;}
.ydc{bottom:259.252800px;}
.y171{bottom:259.377300px;}
.y195{bottom:259.463700px;}
.y11e{bottom:259.511850px;}
.y4c{bottom:259.528050px;}
.y85{bottom:260.073150px;}
.y14d{bottom:263.358600px;}
.y1cf{bottom:264.371850px;}
.y208{bottom:264.819900px;}
.y241{bottom:264.833100px;}
.y6c{bottom:267.861600px;}
.yb0{bottom:278.675700px;}
.ydb{bottom:278.752800px;}
.y170{bottom:278.877300px;}
.y194{bottom:278.963700px;}
.y11d{bottom:279.011850px;}
.y4b{bottom:279.028050px;}
.y14c{bottom:279.190650px;}
.y84{bottom:279.573150px;}
.y1ce{bottom:280.766850px;}
.y207{bottom:281.214900px;}
.y240{bottom:281.228100px;}
.y6b{bottom:282.861600px;}
.y14b{bottom:295.022700px;}
.y1cd{bottom:297.161850px;}
.y206{bottom:297.609900px;}
.y23f{bottom:297.623100px;}
.yaf{bottom:298.175700px;}
.yda{bottom:298.252800px;}
.y16f{bottom:298.377300px;}
.y193{bottom:298.463700px;}
.y11c{bottom:298.511850px;}
.y4a{bottom:298.528050px;}
.y83{bottom:299.073150px;}
.y6a{bottom:304.681950px;}
.y14a{bottom:310.854750px;}
.y1cc{bottom:313.556850px;}
.y205{bottom:314.004900px;}
.y23e{bottom:314.018100px;}
.yae{bottom:317.675700px;}
.yd9{bottom:317.752800px;}
.y16e{bottom:317.877300px;}
.y192{bottom:317.963700px;}
.y11b{bottom:318.011850px;}
.y49{bottom:318.028050px;}
.y82{bottom:318.573150px;}
.y69{bottom:319.681950px;}
.y149{bottom:326.686800px;}
.y20{bottom:327.732750px;}
.y1cb{bottom:329.951850px;}
.y204{bottom:330.399900px;}
.y23d{bottom:330.413100px;}
.y68{bottom:334.681950px;}
.yad{bottom:337.175700px;}
.yd8{bottom:337.252800px;}
.y16d{bottom:337.377300px;}
.y191{bottom:337.463700px;}
.y11a{bottom:337.511850px;}
.y48{bottom:337.528050px;}
.y81{bottom:338.073150px;}
.y148{bottom:342.518850px;}
.y1f{bottom:345.732750px;}
.y1ca{bottom:346.346850px;}
.y203{bottom:346.794900px;}
.y23c{bottom:346.808100px;}
.y67{bottom:356.502300px;}
.yd7{bottom:356.752800px;}
.y16c{bottom:356.877300px;}
.y190{bottom:356.963700px;}
.y119{bottom:357.011850px;}
.y47{bottom:357.028050px;}
.y80{bottom:357.573150px;}
.y147{bottom:358.350900px;}
.yac{bottom:362.675700px;}
.y1c9{bottom:362.741850px;}
.y202{bottom:363.189900px;}
.y23b{bottom:363.203100px;}
.y1e{bottom:363.732750px;}
.y66{bottom:371.502300px;}
.yaa{bottom:372.050700px;}
.y146{bottom:374.182950px;}
.ya9{bottom:376.175700px;}
.yd6{bottom:376.252800px;}
.y16b{bottom:376.377300px;}
.y18f{bottom:376.463700px;}
.y118{bottom:376.511850px;}
.y46{bottom:376.528050px;}
.y1c8{bottom:379.136850px;}
.y201{bottom:379.584900px;}
.y23a{bottom:379.598100px;}
.yab{bottom:384.439500px;}
.y145{bottom:390.014850px;}
.y65{bottom:393.322500px;}
.y1c7{bottom:395.531850px;}
.yd5{bottom:395.752800px;}
.y16a{bottom:395.877300px;}
.y18e{bottom:395.963700px;}
.y200{bottom:395.979900px;}
.y239{bottom:395.993100px;}
.y117{bottom:396.011850px;}
.y45{bottom:396.028050px;}
.y7f{bottom:396.573150px;}
.y1d{bottom:399.732750px;}
.y64{bottom:408.322500px;}
.y144{bottom:411.858600px;}
.y1c6{bottom:411.926850px;}
.y1ff{bottom:412.374900px;}
.y238{bottom:412.388100px;}
.ya8{bottom:415.175700px;}
.yd4{bottom:415.252800px;}
.y169{bottom:415.377300px;}
.y18d{bottom:415.463700px;}
.y116{bottom:415.511850px;}
.y44{bottom:415.528050px;}
.y1c{bottom:417.732750px;}
.y1c5{bottom:428.321850px;}
.y1fe{bottom:428.769900px;}
.y237{bottom:428.783100px;}
.y63{bottom:430.142850px;}
.ya7{bottom:434.675700px;}
.yd3{bottom:434.752800px;}
.y143{bottom:434.780400px;}
.y168{bottom:434.877300px;}
.y18c{bottom:434.963700px;}
.y115{bottom:435.011850px;}
.y43{bottom:435.028050px;}
.y7e{bottom:435.573150px;}
.y1b{bottom:435.732750px;}
.y1c4{bottom:444.716850px;}
.y62{bottom:445.142850px;}
.y1fd{bottom:445.164900px;}
.y236{bottom:445.178100px;}
.y142{bottom:449.780400px;}
.y1a{bottom:453.732750px;}
.ya6{bottom:454.175700px;}
.yd2{bottom:454.252800px;}
.y167{bottom:454.377300px;}
.y18b{bottom:454.463700px;}
.y114{bottom:454.511850px;}
.y42{bottom:454.528050px;}
.y7d{bottom:455.073150px;}
.y61{bottom:460.142850px;}
.y1c3{bottom:461.111850px;}
.y1fc{bottom:461.559900px;}
.y235{bottom:461.573100px;}
.y19{bottom:471.732750px;}
.ya5{bottom:473.675700px;}
.yd1{bottom:473.752800px;}
.y166{bottom:473.877300px;}
.y18a{bottom:473.963700px;}
.y113{bottom:474.011850px;}
.y41{bottom:474.028050px;}
.y7c{bottom:474.573150px;}
.y60{bottom:475.142850px;}
.y1c2{bottom:477.506850px;}
.y1fb{bottom:477.954900px;}
.y234{bottom:477.968100px;}
.y18{bottom:489.732750px;}
.y5f{bottom:490.142850px;}
.yd0{bottom:493.252800px;}
.y165{bottom:493.377300px;}
.y189{bottom:493.463700px;}
.y112{bottom:493.511850px;}
.y40{bottom:493.528050px;}
.y141{bottom:493.793850px;}
.y1c1{bottom:493.901850px;}
.y7b{bottom:494.073150px;}
.y1fa{bottom:494.349900px;}
.y233{bottom:494.363100px;}
.y5e{bottom:505.142850px;}
.y17{bottom:507.732750px;}
.y1c0{bottom:510.296850px;}
.y1f9{bottom:510.744900px;}
.y232{bottom:510.758100px;}
.ycf{bottom:512.752800px;}
.y188{bottom:512.963700px;}
.y111{bottom:513.011850px;}
.y3f{bottom:513.028050px;}
.y140{bottom:513.293850px;}
.y7a{bottom:513.573150px;}
.y5d{bottom:520.142850px;}
.ycc{bottom:522.616200px;}
.y16{bottom:525.732750px;}
.y1bf{bottom:526.691850px;}
.y1f8{bottom:527.139900px;}
.y231{bottom:527.153100px;}
.yce{bottom:532.252800px;}
.y164{bottom:532.377300px;}
.y187{bottom:532.463700px;}
.y110{bottom:532.511850px;}
.y3e{bottom:532.528050px;}
.y13f{bottom:532.793850px;}
.y79{bottom:533.073150px;}
.y5c{bottom:535.142850px;}
.ycb{bottom:542.116200px;}
.y1be{bottom:543.086850px;}
.y1f7{bottom:543.534900px;}
.y230{bottom:543.548100px;}
.y15{bottom:543.732750px;}
.y5b{bottom:550.142850px;}
.ycd{bottom:551.752800px;}
.y186{bottom:551.963700px;}
.y10f{bottom:552.011850px;}
.y3d{bottom:552.028050px;}
.y13e{bottom:552.293850px;}
.y78{bottom:552.573150px;}
.y1bd{bottom:559.481850px;}
.y1f6{bottom:559.929900px;}
.y22f{bottom:559.943100px;}
.y14{bottom:561.732750px;}
.y5a{bottom:565.142850px;}
.y163{bottom:571.377300px;}
.y185{bottom:571.463700px;}
.y10e{bottom:571.511850px;}
.y3c{bottom:571.528050px;}
.y13d{bottom:571.793850px;}
.y77{bottom:572.073150px;}
.y1bc{bottom:575.876850px;}
.y1f5{bottom:576.324900px;}
.y22e{bottom:576.338100px;}
.y13{bottom:579.732750px;}
.yc9{bottom:579.979650px;}
.y59{bottom:586.963200px;}
.y162{bottom:590.877300px;}
.y184{bottom:590.963700px;}
.y10d{bottom:591.011850px;}
.y3b{bottom:591.028050px;}
.y13c{bottom:591.293850px;}
.y1bb{bottom:592.271850px;}
.y1f4{bottom:592.719900px;}
.y22d{bottom:592.733100px;}
.y12{bottom:597.732750px;}
.yf8{bottom:606.693300px;}
.y1ba{bottom:608.666850px;}
.y1f3{bottom:609.114900px;}
.y22c{bottom:609.128100px;}
.y58{bottom:609.884850px;}
.y161{bottom:610.377300px;}
.y183{bottom:610.463700px;}
.y10c{bottom:610.511850px;}
.y3a{bottom:610.528050px;}
.y13b{bottom:610.793850px;}
.ya4{bottom:613.513650px;}
.y11{bottom:615.732750px;}
.y57{bottom:624.884850px;}
.y1b9{bottom:625.061850px;}
.y1f2{bottom:625.509900px;}
.y22b{bottom:625.523100px;}
.yf7{bottom:628.818300px;}
.y160{bottom:629.877300px;}
.y182{bottom:629.963700px;}
.y10b{bottom:630.011850px;}
.y39{bottom:630.028050px;}
.y13a{bottom:630.293850px;}
.yc8{bottom:632.840432px;}
.y10{bottom:633.732750px;}
.ya3{bottom:635.638650px;}
.y1b8{bottom:641.456850px;}
.y1f1{bottom:641.904900px;}
.y22a{bottom:641.918100px;}
.yf6{bottom:643.818300px;}
.yc7{bottom:646.136100px;}
.y15f{bottom:649.377300px;}
.y181{bottom:649.463700px;}
.y10a{bottom:649.511850px;}
.y38{bottom:649.528050px;}
.y139{bottom:649.793850px;}
.ya2{bottom:650.638650px;}
.yf{bottom:651.732750px;}
.y1b7{bottom:657.851850px;}
.y1f0{bottom:658.299900px;}
.y229{bottom:658.313100px;}
.yf5{bottom:658.818300px;}
.ya1{bottom:665.638650px;}
.y15e{bottom:668.877300px;}
.y180{bottom:668.963700px;}
.y109{bottom:669.011850px;}
.y37{bottom:669.028050px;}
.y138{bottom:669.293850px;}
.ye{bottom:669.732750px;}
.yf4{bottom:673.818300px;}
.y1b6{bottom:674.246850px;}
.y1ef{bottom:674.694900px;}
.y228{bottom:674.708100px;}
.y15d{bottom:688.377300px;}
.y108{bottom:688.511850px;}
.y36{bottom:688.528050px;}
.y137{bottom:688.793850px;}
.yf3{bottom:688.818300px;}
.ya0{bottom:688.959000px;}
.y1b5{bottom:690.641850px;}
.y1ee{bottom:691.089900px;}
.y227{bottom:691.103100px;}
.yc6{bottom:691.152332px;}
.yf2{bottom:703.818300px;}
.y9f{bottom:703.959000px;}
.yc5{bottom:704.436000px;}
.yd{bottom:705.732750px;}
.y1b4{bottom:707.036850px;}
.y1ed{bottom:707.484900px;}
.y226{bottom:707.498100px;}
.y15c{bottom:707.877300px;}
.y107{bottom:708.011850px;}
.y35{bottom:708.028050px;}
.y136{bottom:708.293850px;}
.yf1{bottom:718.818300px;}
.y9e{bottom:718.959000px;}
.y1b3{bottom:723.431850px;}
.y1ec{bottom:723.879900px;}
.y225{bottom:723.893100px;}
.y1ae{bottom:723.904200px;}
.y15b{bottom:727.377300px;}
.y106{bottom:727.511850px;}
.y34{bottom:727.528050px;}
.y135{bottom:727.793850px;}
.y1ad{bottom:738.904200px;}
.y1b2{bottom:739.827000px;}
.y1eb{bottom:740.274900px;}
.y224{bottom:740.288100px;}
.y9d{bottom:742.279200px;}
.y15a{bottom:746.877300px;}
.y105{bottom:747.011850px;}
.y33{bottom:747.028050px;}
.y134{bottom:747.293850px;}
.yf0{bottom:748.959000px;}
.yc4{bottom:749.417432px;}
.y1ac{bottom:753.904200px;}
.y1b1{bottom:756.221850px;}
.y1ea{bottom:756.669900px;}
.y223{bottom:756.683100px;}
.y9c{bottom:757.279200px;}
.yc3{bottom:762.713100px;}
.yef{bottom:763.959000px;}
.y159{bottom:766.377300px;}
.y104{bottom:766.511850px;}
.y32{bottom:766.528050px;}
.y133{bottom:766.793850px;}
.yc{bottom:766.932750px;}
.y9b{bottom:772.279200px;}
.y1b0{bottom:772.616850px;}
.y1e9{bottom:773.064900px;}
.y222{bottom:773.078100px;}
.y1ab{bottom:776.029200px;}
.yee{bottom:778.959000px;}
.yb{bottom:781.932750px;}
.y103{bottom:786.011850px;}
.y31{bottom:786.028050px;}
.y132{bottom:786.293850px;}
.y9a{bottom:787.279200px;}
.y1e8{bottom:789.459900px;}
.y221{bottom:789.473100px;}
.y1aa{bottom:791.111250px;}
.yed{bottom:793.959000px;}
.y99{bottom:802.279200px;}
.ya{bottom:804.732750px;}
.y158{bottom:805.377300px;}
.y102{bottom:805.511850px;}
.y30{bottom:805.528050px;}
.y131{bottom:805.793850px;}
.y1e7{bottom:805.854900px;}
.y220{bottom:805.868100px;}
.y1a9{bottom:806.193300px;}
.yec{bottom:808.959000px;}
.yc2{bottom:814.367550px;}
.yc1{bottom:814.379250px;}
.y1a8{bottom:821.275350px;}
.y1e6{bottom:822.249900px;}
.y21f{bottom:822.263100px;}
.y101{bottom:825.011850px;}
.y2f{bottom:825.028050px;}
.y130{bottom:825.293850px;}
.y98{bottom:825.599550px;}
.y1a7{bottom:836.357400px;}
.y1e5{bottom:838.644900px;}
.y21e{bottom:838.658100px;}
.yeb{bottom:839.099550px;}
.y97{bottom:840.599550px;}
.y100{bottom:844.511850px;}
.y2e{bottom:844.528050px;}
.y12f{bottom:844.793850px;}
.y9{bottom:845.232750px;}
.y1a6{bottom:851.439450px;}
.yea{bottom:854.099550px;}
.y1e4{bottom:855.039900px;}
.y21d{bottom:855.053100px;}
.y96{bottom:855.599550px;}
.y17f{bottom:861.834000px;}
.yff{bottom:864.011850px;}
.y2d{bottom:864.028050px;}
.y12e{bottom:864.293850px;}
.y1a5{bottom:866.521500px;}
.ye9{bottom:869.099550px;}
.y95{bottom:870.599550px;}
.y1e3{bottom:871.434900px;}
.y21c{bottom:871.448100px;}
.yca{bottom:872.667150px;}
.y8{bottom:875.232750px;}
.y17e{bottom:876.834000px;}
.y1a4{bottom:881.603550px;}
.yfe{bottom:883.511850px;}
.y2c{bottom:883.528050px;}
.y12d{bottom:883.793850px;}
.ye8{bottom:884.099550px;}
.y94{bottom:885.599550px;}
.y1e2{bottom:887.829900px;}
.y21b{bottom:887.843100px;}
.y17d{bottom:891.834000px;}
.y1a3{bottom:896.685450px;}
.ye7{bottom:899.099550px;}
.y93{bottom:900.599550px;}
.yfd{bottom:903.011850px;}
.y2b{bottom:903.028050px;}
.y12c{bottom:903.293850px;}
.y1e1{bottom:904.224900px;}
.y21a{bottom:904.238100px;}
.y1a2{bottom:911.767500px;}
.y17c{bottom:913.959000px;}
.ye6{bottom:914.099550px;}
.y92{bottom:915.599550px;}
.y1e0{bottom:920.619900px;}
.y219{bottom:920.633100px;}
.ybf{bottom:921.608850px;}
.yfc{bottom:922.511850px;}
.y2a{bottom:922.528050px;}
.y12b{bottom:922.793850px;}
.ybe{bottom:924.006499px;}
.y17b{bottom:929.029200px;}
.ye5{bottom:929.099550px;}
.yc0{bottom:930.008640px;}
.y91{bottom:930.599550px;}
.y1a1{bottom:933.599550px;}
.y1df{bottom:937.014900px;}
.y218{bottom:937.028100px;}
.ybd{bottom:937.950150px;}
.yfb{bottom:942.011850px;}
.y29{bottom:942.028050px;}
.y12a{bottom:942.293850px;}
.ye4{bottom:944.099550px;}
.y90{bottom:945.599550px;}
.y1a0{bottom:948.599550px;}
.y1{bottom:950.314950px;}
.y1de{bottom:953.409900px;}
.y217{bottom:953.423100px;}
.y1af{bottom:961.511850px;}
.y28{bottom:961.528050px;}
.y129{bottom:961.793850px;}
.y8f{bottom:965.919900px;}
.y19f{bottom:968.919900px;}
.y1dd{bottom:969.804900px;}
.y216{bottom:969.818100px;}
.y4{bottom:973.648200px;}
.ybc{bottom:980.222700px;}
.yfa{bottom:981.011850px;}
.y27{bottom:981.028050px;}
.yba{bottom:982.628582px;}
.y1dc{bottom:986.199900px;}
.y215{bottom:986.213100px;}
.y3{bottom:988.648200px;}
.y8e{bottom:988.841550px;}
.yb9{bottom:989.267250px;}
.ybb{bottom:995.912250px;}
.yf9{bottom:1000.511850px;}
.y26{bottom:1000.528050px;}
.y128{bottom:1000.793850px;}
.y1db{bottom:1002.594900px;}
.y214{bottom:1002.608100px;}
.y2{bottom:1003.648200px;}
.y8d{bottom:1003.841550px;}
.y56{bottom:1033.218450px;}
.y25{bottom:1033.230150px;}
.h1a{height:16.655584px;}
.h6{height:23.346094px;}
.h19{height:31.775206px;}
.h14{height:32.078320px;}
.h11{height:32.531250px;}
.h18{height:33.311167px;}
.h10{height:33.328125px;}
.h2{height:33.351562px;}
.h1d{height:33.398363px;}
.h1b{height:33.398962px;}
.hf{height:34.008525px;}
.hb{height:37.520508px;}
.h1c{height:40.146094px;}
.h20{height:40.192894px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.117188px;}
.h1e{height:42.163987px;}
.h1f{height:42.164587px;}
.hc{height:44.730469px;}
.h16{height:45.826172px;}
.hd{height:45.858398px;}
.ha{height:47.381836px;}
.h8{height:52.646484px;}
.h12{height:55.200879px;}
.he{height:57.911133px;}
.h17{height:59.891167px;}
.h5{height:65.237402px;}
.h13{height:88.487278px;}
.h4{height:89.499023px;}
.h15{height:99.858398px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x5{left:76.535400px;}
.xb{left:94.535400px;}
.x36{left:99.935400px;}
.x34{left:106.535400px;}
.xc{left:111.543300px;}
.x37{left:116.943300px;}
.x15{left:122.043300px;}
.x2b{left:130.633849px;}
.xf{left:134.043300px;}
.x2a{left:138.601650px;}
.x1b{left:145.156050px;}
.x29{left:152.955646px;}
.x25{left:159.698550px;}
.x2c{left:170.280858px;}
.x26{left:173.990193px;}
.x28{left:178.779000px;}
.x9{left:186.147750px;}
.xe{left:195.242400px;}
.x6{left:198.516000px;}
.x7{left:200.315250px;}
.x31{left:204.768300px;}
.x27{left:211.357258px;}
.xa{left:220.362150px;}
.x2{left:222.546750px;}
.x4{left:255.937800px;}
.x3{left:268.407900px;}
.x8{left:276.862800px;}
.x20{left:286.832400px;}
.x18{left:287.956350px;}
.x30{left:289.410450px;}
.x16{left:296.043300px;}
.x21{left:301.160042px;}
.x17{left:306.543300px;}
.x22{left:307.831650px;}
.x10{left:314.043300px;}
.x2f{left:318.281700px;}
.x11{left:324.543300px;}
.x19{left:330.097500px;}
.x1a{left:354.097500px;}
.x32{left:389.268300px;}
.x23{left:391.469559px;}
.x33{left:407.268300px;}
.x12{left:410.043300px;}
.x13{left:420.543300px;}
.x2d{left:426.199633px;}
.x24{left:440.314050px;}
.x1c{left:450.743550px;}
.x2e{left:452.526975px;}
.x1e{left:464.075217px;}
.x1f{left:471.399300px;}
.x1d{left:478.414858px;}
.x35{left:507.035400px;}
.x1{left:523.643550px;}
.x14{left:536.043300px;}
.xd{left:590.284800px;}
@media print{
.v2{vertical-align:-14.933333pt;}
.v6{vertical-align:-12.801600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.139733pt;}
.v4{vertical-align:14.666667pt;}
.v8{vertical-align:16.800000pt;}
.v3{vertical-align:20.533333pt;}
.v1{vertical-align:24.266667pt;}
.v7{vertical-align:48.000000pt;}
.ls11{letter-spacing:-3.226667pt;}
.ls1b{letter-spacing:-1.962667pt;}
.ls34{letter-spacing:-1.749333pt;}
.ls4{letter-spacing:-1.173333pt;}
.ls1a{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.597333pt;}
.ls1c{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.512000pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls33{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.002133pt;}
.ls9{letter-spacing:0.002667pt;}
.lsc{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.293333pt;}
.ls35{letter-spacing:0.341333pt;}
.ls30{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.586667pt;}
.ls32{letter-spacing:0.682667pt;}
.ls19{letter-spacing:1.173333pt;}
.lsb{letter-spacing:3.455467pt;}
.ls24{letter-spacing:4.070933pt;}
.lsd{letter-spacing:8.636800pt;}
.ls15{letter-spacing:15.999600pt;}
.ls25{letter-spacing:16.556800pt;}
.ls14{letter-spacing:16.596918pt;}
.ls6{letter-spacing:85.333333pt;}
.lsf{letter-spacing:100.733482pt;}
.ls1f{letter-spacing:105.983467pt;}
.ls20{letter-spacing:110.733333pt;}
.ls1d{letter-spacing:127.316800pt;}
.ls1e{letter-spacing:132.066667pt;}
.ls16{letter-spacing:135.057957pt;}
.ls21{letter-spacing:136.795733pt;}
.ls10{letter-spacing:139.793838pt;}
.ls22{letter-spacing:141.525333pt;}
.ls13{letter-spacing:143.399082pt;}
.ls23{letter-spacing:150.541867pt;}
.ls18{letter-spacing:176.592918pt;}
.ls12{letter-spacing:209.701424pt;}
.ls26{letter-spacing:222.337600pt;}
.ls2e{letter-spacing:225.066667pt;}
.ls17{letter-spacing:257.145571pt;}
.ls2f{letter-spacing:292.066667pt;}
.ls2d{letter-spacing:308.650133pt;}
.ls2c{letter-spacing:313.400000pt;}
.ls2a{letter-spacing:329.983467pt;}
.ls2b{letter-spacing:334.733333pt;}
.ls29{letter-spacing:339.462400pt;}
.ls27{letter-spacing:344.191467pt;}
.ls28{letter-spacing:360.795733pt;}
.lse{letter-spacing:560.466485pt;}
.ws2c{word-spacing:-257.145571pt;}
.ws1e{word-spacing:-220.367824pt;}
.ws2d{word-spacing:-176.592918pt;}
.ws20{word-spacing:-154.065482pt;}
.ws23{word-spacing:-145.127038pt;}
.ws2b{word-spacing:-135.057957pt;}
.ws21{word-spacing:-27.263318pt;}
.ws22{word-spacing:-26.666000pt;}
.ws2f{word-spacing:-15.840000pt;}
.ws58{word-spacing:-14.960000pt;}
.ws19{word-spacing:-14.666667pt;}
.ws38{word-spacing:-14.373333pt;}
.ws2{word-spacing:-12.000000pt;}
.wsa9{word-spacing:-11.760000pt;}
.ws7e{word-spacing:-11.520000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws39{word-spacing:-10.266667pt;}
.wsc{word-spacing:-10.069333pt;}
.ws4e{word-spacing:-9.770667pt;}
.ws1c{word-spacing:-9.533333pt;}
.wsbd{word-spacing:-8.917333pt;}
.ws34{word-spacing:-8.704000pt;}
.ws1{word-spacing:-7.466667pt;}
.ws4d{word-spacing:-5.333333pt;}
.ws26{word-spacing:-5.133333pt;}
.ws88{word-spacing:-3.792000pt;}
.ws5d{word-spacing:-3.696000pt;}
.ws9f{word-spacing:-3.216000pt;}
.ws7f{word-spacing:-2.874667pt;}
.wsc0{word-spacing:-2.832000pt;}
.ws60{word-spacing:-2.698667pt;}
.ws96{word-spacing:-2.544000pt;}
.ws7a{word-spacing:-2.464000pt;}
.ws32{word-spacing:-2.346667pt;}
.wsb0{word-spacing:-2.256000pt;}
.wsb1{word-spacing:-2.016000pt;}
.wsca{word-spacing:-1.920000pt;}
.wsc9{word-spacing:-1.776000pt;}
.ws50{word-spacing:-1.760000pt;}
.ws85{word-spacing:-1.728000pt;}
.ws90{word-spacing:-1.584000pt;}
.wsa1{word-spacing:-1.488000pt;}
.ws71{word-spacing:-1.466667pt;}
.wsa5{word-spacing:-1.440000pt;}
.wsba{word-spacing:-1.344000pt;}
.ws12{word-spacing:-1.290667pt;}
.wsa6{word-spacing:-1.248000pt;}
.ws4a{word-spacing:-1.232000pt;}
.ws33{word-spacing:-1.173333pt;}
.ws6f{word-spacing:-1.056000pt;}
.ws82{word-spacing:-1.008000pt;}
.wsb2{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.938667pt;}
.wsb7{word-spacing:-0.912000pt;}
.wsb3{word-spacing:-0.672000pt;}
.ws1b{word-spacing:-0.586667pt;}
.ws95{word-spacing:-0.576000pt;}
.wsad{word-spacing:-0.528000pt;}
.ws86{word-spacing:-0.480000pt;}
.ws97{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.293333pt;}
.wsab{word-spacing:-0.240000pt;}
.ws55{word-spacing:-0.176000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.240000pt;}
.ws11{word-spacing:0.293333pt;}
.ws9a{word-spacing:0.384000pt;}
.ws9e{word-spacing:0.480000pt;}
.ws4{word-spacing:0.512000pt;}
.ws9b{word-spacing:0.528000pt;}
.ws36{word-spacing:0.586667pt;}
.wsc7{word-spacing:0.624000pt;}
.wscc{word-spacing:0.672000pt;}
.ws79{word-spacing:0.704000pt;}
.ws91{word-spacing:0.768000pt;}
.ws51{word-spacing:0.821333pt;}
.wsa2{word-spacing:0.864000pt;}
.ws92{word-spacing:1.056000pt;}
.wsc8{word-spacing:1.104000pt;}
.wsf{word-spacing:1.173333pt;}
.wsc1{word-spacing:1.200000pt;}
.ws8a{word-spacing:1.248000pt;}
.wsbc{word-spacing:1.296000pt;}
.ws94{word-spacing:1.728000pt;}
.ws2a{word-spacing:1.760000pt;}
.wsc6{word-spacing:2.016000pt;}
.ws61{word-spacing:2.170667pt;}
.ws35{word-spacing:2.288000pt;}
.ws9d{word-spacing:2.448000pt;}
.ws7d{word-spacing:2.464000pt;}
.wsa7{word-spacing:2.592000pt;}
.ws99{word-spacing:2.640000pt;}
.ws80{word-spacing:2.784000pt;}
.wsae{word-spacing:2.880000pt;}
.ws75{word-spacing:2.933333pt;}
.ws5f{word-spacing:3.168000pt;}
.ws53{word-spacing:3.285333pt;}
.ws83{word-spacing:3.360000pt;}
.ws5{word-spacing:3.520000pt;}
.ws5a{word-spacing:3.696000pt;}
.ws5c{word-spacing:3.754667pt;}
.wscb{word-spacing:3.792000pt;}
.ws62{word-spacing:3.872000pt;}
.ws87{word-spacing:3.888000pt;}
.ws56{word-spacing:4.053333pt;}
.wsd{word-spacing:4.341333pt;}
.ws76{word-spacing:4.400000pt;}
.wsa0{word-spacing:4.512000pt;}
.ws8d{word-spacing:4.560000pt;}
.wsaf{word-spacing:4.752000pt;}
.ws6{word-spacing:4.810667pt;}
.ws54{word-spacing:5.162667pt;}
.wsb{word-spacing:5.221333pt;}
.ws9{word-spacing:5.397333pt;}
.wsaa{word-spacing:5.520000pt;}
.wsc4{word-spacing:5.808000pt;}
.wsc3{word-spacing:5.904000pt;}
.ws77{word-spacing:6.101333pt;}
.ws13{word-spacing:6.336000pt;}
.ws28{word-spacing:6.394667pt;}
.wsac{word-spacing:6.720000pt;}
.ws8f{word-spacing:6.768000pt;}
.wsc2{word-spacing:6.816000pt;}
.ws17{word-spacing:7.216000pt;}
.wse{word-spacing:7.274667pt;}
.ws8e{word-spacing:7.440000pt;}
.ws1a{word-spacing:7.509333pt;}
.wsb9{word-spacing:7.920000pt;}
.ws5b{word-spacing:8.154667pt;}
.ws93{word-spacing:8.352000pt;}
.ws7c{word-spacing:8.448000pt;}
.ws29{word-spacing:8.624000pt;}
.ws8c{word-spacing:8.736000pt;}
.ws5e{word-spacing:8.800000pt;}
.ws70{word-spacing:8.858667pt;}
.ws7{word-spacing:9.093333pt;}
.ws7b{word-spacing:9.210667pt;}
.ws89{word-spacing:9.264000pt;}
.ws4b{word-spacing:9.386667pt;}
.ws9c{word-spacing:9.504000pt;}
.wsbf{word-spacing:10.128000pt;}
.ws4c{word-spacing:10.384000pt;}
.ws78{word-spacing:10.442667pt;}
.ws52{word-spacing:10.794667pt;}
.wsa3{word-spacing:10.848000pt;}
.ws98{word-spacing:11.088000pt;}
.wsb5{word-spacing:11.232000pt;}
.wsbb{word-spacing:11.616000pt;}
.ws81{word-spacing:12.288000pt;}
.wsce{word-spacing:13.680000pt;}
.ws1d{word-spacing:14.164979pt;}
.ws25{word-spacing:14.207645pt;}
.wsb6{word-spacing:14.688000pt;}
.wsb4{word-spacing:15.408000pt;}
.wsa4{word-spacing:15.936000pt;}
.wscf{word-spacing:16.128000pt;}
.ws59{word-spacing:16.544000pt;}
.ws24{word-spacing:18.900861pt;}
.ws73{word-spacing:20.240000pt;}
.wsbe{word-spacing:20.928000pt;}
.ws84{word-spacing:21.216000pt;}
.ws1f{word-spacing:21.332800pt;}
.wsd0{word-spacing:24.288000pt;}
.wsc5{word-spacing:27.936000pt;}
.ws15{word-spacing:33.194667pt;}
.ws3d{word-spacing:34.389333pt;}
.ws3b{word-spacing:36.181333pt;}
.ws49{word-spacing:39.936000pt;}
.ws3a{word-spacing:60.488533pt;}
.ws3f{word-spacing:64.000000pt;}
.ws31{word-spacing:81.440000pt;}
.ws42{word-spacing:82.602667pt;}
.ws40{word-spacing:85.333333pt;}
.ws48{word-spacing:106.666667pt;}
.ws43{word-spacing:110.250667pt;}
.ws44{word-spacing:114.986667pt;}
.ws3c{word-spacing:120.874667pt;}
.ws3e{word-spacing:131.584000pt;}
.ws30{word-spacing:135.968000pt;}
.ws41{word-spacing:136.320000pt;}
.ws46{word-spacing:141.056000pt;}
.ws47{word-spacing:145.792000pt;}
.ws45{word-spacing:162.389333pt;}
.ws69{word-spacing:163.670933pt;}
.ws6b{word-spacing:166.400000pt;}
.ws6c{word-spacing:178.604267pt;}
.ws6e{word-spacing:180.187200pt;}
.ws67{word-spacing:181.333333pt;}
.ws6d{word-spacing:185.004267pt;}
.ws6a{word-spacing:187.733333pt;}
.ws68{word-spacing:199.937600pt;}
.ws65{word-spacing:202.666667pt;}
.ws16{word-spacing:207.445333pt;}
.ws64{word-spacing:208.000000pt;}
.ws66{word-spacing:229.333333pt;}
.wsa8{word-spacing:344.147200pt;}
.wscd{word-spacing:345.696000pt;}
.ws63{word-spacing:348.458667pt;}
.ws10{word-spacing:348.490667pt;}
.ws18{word-spacing:349.083733pt;}
.ws14{word-spacing:349.169067pt;}
.ws8{word-spacing:349.326933pt;}
.ws2e{word-spacing:349.399467pt;}
.ws57{word-spacing:349.625600pt;}
.ws37{word-spacing:349.706667pt;}
.ws72{word-spacing:349.826133pt;}
.ws8b{word-spacing:350.210133pt;}
.ws27{word-spacing:508.464000pt;}
.ws4f{word-spacing:1277.653333pt;}
._30{margin-left:-444.362224pt;}
._2c{margin-left:-364.321558pt;}
._25{margin-left:-299.768506pt;}
._29{margin-left:-235.812771pt;}
._2d{margin-left:-220.410490pt;}
._31{margin-left:-156.412090pt;}
._26{margin-left:-155.174787pt;}
._35{margin-left:-111.399882pt;}
._2a{margin-left:-86.525837pt;}
._46{margin-left:-17.700800pt;}
._2b{margin-left:-15.965318pt;}
._16{margin-left:-14.865600pt;}
._7{margin-left:-13.333333pt;}
._5{margin-left:-8.309333pt;}
._10{margin-left:-7.115733pt;}
._3{margin-left:-5.964800pt;}
._4{margin-left:-4.428267pt;}
._0{margin-left:-2.747733pt;}
._e{margin-left:-1.853867pt;}
._1{margin-left:-0.917333pt;}
._2{width:1.036800pt;}
._d{width:2.126933pt;}
._8{width:3.360000pt;}
._a{width:4.986667pt;}
._f{width:5.889600pt;}
._9{width:7.210667pt;}
._12{width:8.100800pt;}
._b{width:9.105067pt;}
._c{width:10.580267pt;}
._6{width:11.925333pt;}
._13{width:13.541867pt;}
._48{width:14.707200pt;}
._11{width:15.664000pt;}
._15{width:16.643733pt;}
._14{width:17.541333pt;}
._2e{width:18.943526pt;}
._17{width:20.216533pt;}
._22{width:21.249067pt;}
._21{width:22.187733pt;}
._42{width:23.795823pt;}
._34{width:24.916710pt;}
._36{width:25.900415pt;}
._2f{width:27.263318pt;}
._49{width:28.582548pt;}
._32{width:29.609926pt;}
._24{width:31.956534pt;}
._27{width:36.735082pt;}
._28{width:47.401482pt;}
._3a{width:65.553067pt;}
._3c{width:68.736000pt;}
._20{width:73.873067pt;}
._41{width:76.817067pt;}
._1a{width:79.445333pt;}
._1d{width:85.333333pt;}
._3d{width:95.402667pt;}
._3f{width:97.853867pt;}
._40{width:99.707733pt;}
._39{width:115.886400pt;}
._3b{width:145.792000pt;}
._1b{width:154.771200pt;}
._38{width:163.189333pt;}
._3e{width:170.666667pt;}
._19{width:187.264000pt;}
._1f{width:233.002667pt;}
._47{width:252.193600pt;}
._37{width:360.832000pt;}
._1e{width:364.501333pt;}
._1c{width:381.056000pt;}
._23{width:413.098667pt;}
._18{width:539.861333pt;}
._44{width:659.157333pt;}
._43{width:753.920000pt;}
._45{width:763.434667pt;}
._33{width:867.225156pt;}
.fsc{font-size:21.332800pt;}
.fs4{font-size:29.866667pt;}
.fsd{font-size:33.600000pt;}
.fs8{font-size:38.133333pt;}
.fs9{font-size:41.066667pt;}
.fsb{font-size:42.665600pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:48.533333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:73.700800pt;}
.y76{bottom:74.182533pt;}
.yb8{bottom:74.378400pt;}
.ye3{bottom:74.446933pt;}
.y17a{bottom:74.557600pt;}
.y19e{bottom:74.634400pt;}
.y127{bottom:74.677200pt;}
.y1da{bottom:74.690533pt;}
.y55{bottom:74.691600pt;}
.y213{bottom:75.088800pt;}
.y24c{bottom:75.100533pt;}
.y8c{bottom:75.176133pt;}
.y6{bottom:87.034133pt;}
.y1d9{bottom:89.263867pt;}
.y212{bottom:89.662133pt;}
.y24b{bottom:89.673867pt;}
.yb7{bottom:91.711733pt;}
.ye2{bottom:91.780267pt;}
.y179{bottom:91.890933pt;}
.y19d{bottom:91.967733pt;}
.y126{bottom:92.010533pt;}
.y54{bottom:92.024933pt;}
.y8b{bottom:92.509467pt;}
.y157{bottom:93.367467pt;}
.y75{bottom:93.849200pt;}
.y1d8{bottom:103.837200pt;}
.y211{bottom:104.235467pt;}
.y24a{bottom:104.247200pt;}
.y74{bottom:107.182533pt;}
.y156{bottom:107.440400pt;}
.ye1{bottom:109.113600pt;}
.y178{bottom:109.224267pt;}
.y19c{bottom:109.301067pt;}
.y125{bottom:109.343867pt;}
.y53{bottom:109.358267pt;}
.y8a{bottom:109.842800pt;}
.y5{bottom:116.367467pt;}
.y1d7{bottom:118.410533pt;}
.y210{bottom:118.808800pt;}
.y249{bottom:118.820533pt;}
.y155{bottom:121.513200pt;}
.yb6{bottom:126.378400pt;}
.ye0{bottom:126.446933pt;}
.y177{bottom:126.557600pt;}
.y73{bottom:126.578400pt;}
.y19b{bottom:126.634400pt;}
.y124{bottom:126.677200pt;}
.y52{bottom:126.691600pt;}
.y89{bottom:127.176133pt;}
.y1d6{bottom:132.983867pt;}
.y20f{bottom:133.382133pt;}
.y248{bottom:133.393867pt;}
.y154{bottom:135.586133pt;}
.y72{bottom:139.911733pt;}
.ydf{bottom:143.780267pt;}
.y176{bottom:143.890933pt;}
.y19a{bottom:143.967733pt;}
.y123{bottom:144.010533pt;}
.y51{bottom:144.024933pt;}
.y1d5{bottom:147.557200pt;}
.y20e{bottom:147.955467pt;}
.y247{bottom:147.967200pt;}
.y153{bottom:149.659067pt;}
.y71{bottom:153.245067pt;}
.y24{bottom:160.651333pt;}
.yb5{bottom:161.045067pt;}
.yde{bottom:161.113600pt;}
.y175{bottom:161.224267pt;}
.y199{bottom:161.301067pt;}
.y122{bottom:161.343867pt;}
.y50{bottom:161.358267pt;}
.y88{bottom:161.842800pt;}
.y1d4{bottom:162.130667pt;}
.y20d{bottom:162.528800pt;}
.y246{bottom:162.540533pt;}
.y152{bottom:163.732000pt;}
.y70{bottom:172.640933pt;}
.y1d3{bottom:176.704000pt;}
.y20c{bottom:177.102133pt;}
.y245{bottom:177.113867pt;}
.y151{bottom:177.804933pt;}
.y23{bottom:177.984667pt;}
.yb4{bottom:178.378400pt;}
.y174{bottom:178.557600pt;}
.y198{bottom:178.634400pt;}
.y121{bottom:178.677200pt;}
.y4f{bottom:178.691600pt;}
.y6f{bottom:185.974267pt;}
.y1d2{bottom:191.277200pt;}
.y20b{bottom:191.675467pt;}
.y244{bottom:191.687200pt;}
.y150{bottom:191.877867pt;}
.y22{bottom:195.318000pt;}
.yb3{bottom:195.711733pt;}
.ydd{bottom:195.780267pt;}
.y173{bottom:195.890933pt;}
.y197{bottom:195.967733pt;}
.y120{bottom:196.010533pt;}
.y4e{bottom:196.024933pt;}
.y87{bottom:196.509467pt;}
.y6e{bottom:205.370000pt;}
.y1d1{bottom:205.850533pt;}
.y14f{bottom:205.950800pt;}
.y20a{bottom:206.248800pt;}
.y243{bottom:206.260533pt;}
.yb2{bottom:213.045067pt;}
.y172{bottom:213.224267pt;}
.y196{bottom:213.301067pt;}
.y11f{bottom:213.343867pt;}
.y4d{bottom:213.358267pt;}
.y86{bottom:213.842800pt;}
.y6d{bottom:218.703333pt;}
.y14e{bottom:220.023733pt;}
.y1d0{bottom:220.423867pt;}
.y209{bottom:220.822133pt;}
.y242{bottom:220.833867pt;}
.y21{bottom:229.984667pt;}
.yb1{bottom:230.378400pt;}
.ydc{bottom:230.446933pt;}
.y171{bottom:230.557600pt;}
.y195{bottom:230.634400pt;}
.y11e{bottom:230.677200pt;}
.y4c{bottom:230.691600pt;}
.y85{bottom:231.176133pt;}
.y14d{bottom:234.096533pt;}
.y1cf{bottom:234.997200pt;}
.y208{bottom:235.395467pt;}
.y241{bottom:235.407200pt;}
.y6c{bottom:238.099200pt;}
.yb0{bottom:247.711733pt;}
.ydb{bottom:247.780267pt;}
.y170{bottom:247.890933pt;}
.y194{bottom:247.967733pt;}
.y11d{bottom:248.010533pt;}
.y4b{bottom:248.024933pt;}
.y14c{bottom:248.169467pt;}
.y84{bottom:248.509467pt;}
.y1ce{bottom:249.570533pt;}
.y207{bottom:249.968800pt;}
.y240{bottom:249.980533pt;}
.y6b{bottom:251.432533pt;}
.y14b{bottom:262.242400pt;}
.y1cd{bottom:264.143867pt;}
.y206{bottom:264.542133pt;}
.y23f{bottom:264.553867pt;}
.yaf{bottom:265.045067pt;}
.yda{bottom:265.113600pt;}
.y16f{bottom:265.224267pt;}
.y193{bottom:265.301067pt;}
.y11c{bottom:265.343867pt;}
.y4a{bottom:265.358267pt;}
.y83{bottom:265.842800pt;}
.y6a{bottom:270.828400pt;}
.y14a{bottom:276.315333pt;}
.y1cc{bottom:278.717200pt;}
.y205{bottom:279.115467pt;}
.y23e{bottom:279.127200pt;}
.yae{bottom:282.378400pt;}
.yd9{bottom:282.446933pt;}
.y16e{bottom:282.557600pt;}
.y192{bottom:282.634400pt;}
.y11b{bottom:282.677200pt;}
.y49{bottom:282.691600pt;}
.y82{bottom:283.176133pt;}
.y69{bottom:284.161733pt;}
.y149{bottom:290.388267pt;}
.y20{bottom:291.318000pt;}
.y1cb{bottom:293.290533pt;}
.y204{bottom:293.688800pt;}
.y23d{bottom:293.700533pt;}
.y68{bottom:297.495067pt;}
.yad{bottom:299.711733pt;}
.yd8{bottom:299.780267pt;}
.y16d{bottom:299.890933pt;}
.y191{bottom:299.967733pt;}
.y11a{bottom:300.010533pt;}
.y48{bottom:300.024933pt;}
.y81{bottom:300.509467pt;}
.y148{bottom:304.461200pt;}
.y1f{bottom:307.318000pt;}
.y1ca{bottom:307.863867pt;}
.y203{bottom:308.262133pt;}
.y23c{bottom:308.273867pt;}
.y67{bottom:316.890933pt;}
.yd7{bottom:317.113600pt;}
.y16c{bottom:317.224267pt;}
.y190{bottom:317.301067pt;}
.y119{bottom:317.343867pt;}
.y47{bottom:317.358267pt;}
.y80{bottom:317.842800pt;}
.y147{bottom:318.534133pt;}
.yac{bottom:322.378400pt;}
.y1c9{bottom:322.437200pt;}
.y202{bottom:322.835467pt;}
.y23b{bottom:322.847200pt;}
.y1e{bottom:323.318000pt;}
.y66{bottom:330.224267pt;}
.yaa{bottom:330.711733pt;}
.y146{bottom:332.607067pt;}
.ya9{bottom:334.378400pt;}
.yd6{bottom:334.446933pt;}
.y16b{bottom:334.557600pt;}
.y18f{bottom:334.634400pt;}
.y118{bottom:334.677200pt;}
.y46{bottom:334.691600pt;}
.y1c8{bottom:337.010533pt;}
.y201{bottom:337.408800pt;}
.y23a{bottom:337.420533pt;}
.yab{bottom:341.724000pt;}
.y145{bottom:346.679867pt;}
.y65{bottom:349.620000pt;}
.y1c7{bottom:351.583867pt;}
.yd5{bottom:351.780267pt;}
.y16a{bottom:351.890933pt;}
.y18e{bottom:351.967733pt;}
.y200{bottom:351.982133pt;}
.y239{bottom:351.993867pt;}
.y117{bottom:352.010533pt;}
.y45{bottom:352.024933pt;}
.y7f{bottom:352.509467pt;}
.y1d{bottom:355.318000pt;}
.y64{bottom:362.953333pt;}
.y144{bottom:366.096533pt;}
.y1c6{bottom:366.157200pt;}
.y1ff{bottom:366.555467pt;}
.y238{bottom:366.567200pt;}
.ya8{bottom:369.045067pt;}
.yd4{bottom:369.113600pt;}
.y169{bottom:369.224267pt;}
.y18d{bottom:369.301067pt;}
.y116{bottom:369.343867pt;}
.y44{bottom:369.358267pt;}
.y1c{bottom:371.318000pt;}
.y1c5{bottom:380.730533pt;}
.y1fe{bottom:381.128800pt;}
.y237{bottom:381.140533pt;}
.y63{bottom:382.349200pt;}
.ya7{bottom:386.378400pt;}
.yd3{bottom:386.446933pt;}
.y143{bottom:386.471467pt;}
.y168{bottom:386.557600pt;}
.y18c{bottom:386.634400pt;}
.y115{bottom:386.677200pt;}
.y43{bottom:386.691600pt;}
.y7e{bottom:387.176133pt;}
.y1b{bottom:387.318000pt;}
.y1c4{bottom:395.303867pt;}
.y62{bottom:395.682533pt;}
.y1fd{bottom:395.702133pt;}
.y236{bottom:395.713867pt;}
.y142{bottom:399.804800pt;}
.y1a{bottom:403.318000pt;}
.ya6{bottom:403.711733pt;}
.yd2{bottom:403.780267pt;}
.y167{bottom:403.890933pt;}
.y18b{bottom:403.967733pt;}
.y114{bottom:404.010533pt;}
.y42{bottom:404.024933pt;}
.y7d{bottom:404.509467pt;}
.y61{bottom:409.015867pt;}
.y1c3{bottom:409.877200pt;}
.y1fc{bottom:410.275467pt;}
.y235{bottom:410.287200pt;}
.y19{bottom:419.318000pt;}
.ya5{bottom:421.045067pt;}
.yd1{bottom:421.113600pt;}
.y166{bottom:421.224267pt;}
.y18a{bottom:421.301067pt;}
.y113{bottom:421.343867pt;}
.y41{bottom:421.358267pt;}
.y7c{bottom:421.842800pt;}
.y60{bottom:422.349200pt;}
.y1c2{bottom:424.450533pt;}
.y1fb{bottom:424.848800pt;}
.y234{bottom:424.860533pt;}
.y18{bottom:435.318000pt;}
.y5f{bottom:435.682533pt;}
.yd0{bottom:438.446933pt;}
.y165{bottom:438.557600pt;}
.y189{bottom:438.634400pt;}
.y112{bottom:438.677200pt;}
.y40{bottom:438.691600pt;}
.y141{bottom:438.927867pt;}
.y1c1{bottom:439.023867pt;}
.y7b{bottom:439.176133pt;}
.y1fa{bottom:439.422133pt;}
.y233{bottom:439.433867pt;}
.y5e{bottom:449.015867pt;}
.y17{bottom:451.318000pt;}
.y1c0{bottom:453.597200pt;}
.y1f9{bottom:453.995467pt;}
.y232{bottom:454.007200pt;}
.ycf{bottom:455.780267pt;}
.y188{bottom:455.967733pt;}
.y111{bottom:456.010533pt;}
.y3f{bottom:456.024933pt;}
.y140{bottom:456.261200pt;}
.y7a{bottom:456.509467pt;}
.y5d{bottom:462.349200pt;}
.ycc{bottom:464.547733pt;}
.y16{bottom:467.318000pt;}
.y1bf{bottom:468.170533pt;}
.y1f8{bottom:468.568800pt;}
.y231{bottom:468.580533pt;}
.yce{bottom:473.113600pt;}
.y164{bottom:473.224267pt;}
.y187{bottom:473.301067pt;}
.y110{bottom:473.343867pt;}
.y3e{bottom:473.358267pt;}
.y13f{bottom:473.594533pt;}
.y79{bottom:473.842800pt;}
.y5c{bottom:475.682533pt;}
.ycb{bottom:481.881067pt;}
.y1be{bottom:482.743867pt;}
.y1f7{bottom:483.142133pt;}
.y230{bottom:483.153867pt;}
.y15{bottom:483.318000pt;}
.y5b{bottom:489.015867pt;}
.ycd{bottom:490.446933pt;}
.y186{bottom:490.634400pt;}
.y10f{bottom:490.677200pt;}
.y3d{bottom:490.691600pt;}
.y13e{bottom:490.927867pt;}
.y78{bottom:491.176133pt;}
.y1bd{bottom:497.317200pt;}
.y1f6{bottom:497.715467pt;}
.y22f{bottom:497.727200pt;}
.y14{bottom:499.318000pt;}
.y5a{bottom:502.349200pt;}
.y163{bottom:507.890933pt;}
.y185{bottom:507.967733pt;}
.y10e{bottom:508.010533pt;}
.y3c{bottom:508.024933pt;}
.y13d{bottom:508.261200pt;}
.y77{bottom:508.509467pt;}
.y1bc{bottom:511.890533pt;}
.y1f5{bottom:512.288800pt;}
.y22e{bottom:512.300533pt;}
.y13{bottom:515.318000pt;}
.yc9{bottom:515.537467pt;}
.y59{bottom:521.745067pt;}
.y162{bottom:525.224267pt;}
.y184{bottom:525.301067pt;}
.y10d{bottom:525.343867pt;}
.y3b{bottom:525.358267pt;}
.y13c{bottom:525.594533pt;}
.y1bb{bottom:526.463867pt;}
.y1f4{bottom:526.862133pt;}
.y22d{bottom:526.873867pt;}
.y12{bottom:531.318000pt;}
.yf8{bottom:539.282933pt;}
.y1ba{bottom:541.037200pt;}
.y1f3{bottom:541.435467pt;}
.y22c{bottom:541.447200pt;}
.y58{bottom:542.119867pt;}
.y161{bottom:542.557600pt;}
.y183{bottom:542.634400pt;}
.y10c{bottom:542.677200pt;}
.y3a{bottom:542.691600pt;}
.y13b{bottom:542.927867pt;}
.ya4{bottom:545.345467pt;}
.y11{bottom:547.318000pt;}
.y57{bottom:555.453200pt;}
.y1b9{bottom:555.610533pt;}
.y1f2{bottom:556.008800pt;}
.y22b{bottom:556.020533pt;}
.yf7{bottom:558.949600pt;}
.y160{bottom:559.890933pt;}
.y182{bottom:559.967733pt;}
.y10b{bottom:560.010533pt;}
.y39{bottom:560.024933pt;}
.y13a{bottom:560.261200pt;}
.yc8{bottom:562.524829pt;}
.y10{bottom:563.318000pt;}
.ya3{bottom:565.012133pt;}
.y1b8{bottom:570.183867pt;}
.y1f1{bottom:570.582133pt;}
.y22a{bottom:570.593867pt;}
.yf6{bottom:572.282933pt;}
.yc7{bottom:574.343200pt;}
.y15f{bottom:577.224267pt;}
.y181{bottom:577.301067pt;}
.y10a{bottom:577.343867pt;}
.y38{bottom:577.358267pt;}
.y139{bottom:577.594533pt;}
.ya2{bottom:578.345467pt;}
.yf{bottom:579.318000pt;}
.y1b7{bottom:584.757200pt;}
.y1f0{bottom:585.155467pt;}
.y229{bottom:585.167200pt;}
.yf5{bottom:585.616267pt;}
.ya1{bottom:591.678800pt;}
.y15e{bottom:594.557600pt;}
.y180{bottom:594.634400pt;}
.y109{bottom:594.677200pt;}
.y37{bottom:594.691600pt;}
.y138{bottom:594.927867pt;}
.ye{bottom:595.318000pt;}
.yf4{bottom:598.949600pt;}
.y1b6{bottom:599.330533pt;}
.y1ef{bottom:599.728800pt;}
.y228{bottom:599.740533pt;}
.y15d{bottom:611.890933pt;}
.y108{bottom:612.010533pt;}
.y36{bottom:612.024933pt;}
.y137{bottom:612.261200pt;}
.yf3{bottom:612.282933pt;}
.ya0{bottom:612.408000pt;}
.y1b5{bottom:613.903867pt;}
.y1ee{bottom:614.302133pt;}
.y227{bottom:614.313867pt;}
.yc6{bottom:614.357629pt;}
.yf2{bottom:625.616267pt;}
.y9f{bottom:625.741333pt;}
.yc5{bottom:626.165333pt;}
.yd{bottom:627.318000pt;}
.y1b4{bottom:628.477200pt;}
.y1ed{bottom:628.875467pt;}
.y226{bottom:628.887200pt;}
.y15c{bottom:629.224267pt;}
.y107{bottom:629.343867pt;}
.y35{bottom:629.358267pt;}
.y136{bottom:629.594533pt;}
.yf1{bottom:638.949600pt;}
.y9e{bottom:639.074667pt;}
.y1b3{bottom:643.050533pt;}
.y1ec{bottom:643.448800pt;}
.y225{bottom:643.460533pt;}
.y1ae{bottom:643.470400pt;}
.y15b{bottom:646.557600pt;}
.y106{bottom:646.677200pt;}
.y34{bottom:646.691600pt;}
.y135{bottom:646.927867pt;}
.y1ad{bottom:656.803733pt;}
.y1b2{bottom:657.624000pt;}
.y1eb{bottom:658.022133pt;}
.y224{bottom:658.033867pt;}
.y9d{bottom:659.803733pt;}
.y15a{bottom:663.890933pt;}
.y105{bottom:664.010533pt;}
.y33{bottom:664.024933pt;}
.y134{bottom:664.261200pt;}
.yf0{bottom:665.741333pt;}
.yc4{bottom:666.148829pt;}
.y1ac{bottom:670.137067pt;}
.y1b1{bottom:672.197200pt;}
.y1ea{bottom:672.595467pt;}
.y223{bottom:672.607200pt;}
.y9c{bottom:673.137067pt;}
.yc3{bottom:677.967200pt;}
.yef{bottom:679.074667pt;}
.y159{bottom:681.224267pt;}
.y104{bottom:681.343867pt;}
.y32{bottom:681.358267pt;}
.y133{bottom:681.594533pt;}
.yc{bottom:681.718000pt;}
.y9b{bottom:686.470400pt;}
.y1b0{bottom:686.770533pt;}
.y1e9{bottom:687.168800pt;}
.y222{bottom:687.180533pt;}
.y1ab{bottom:689.803733pt;}
.yee{bottom:692.408000pt;}
.yb{bottom:695.051333pt;}
.y103{bottom:698.677200pt;}
.y31{bottom:698.691600pt;}
.y132{bottom:698.927867pt;}
.y9a{bottom:699.803733pt;}
.y1e8{bottom:701.742133pt;}
.y221{bottom:701.753867pt;}
.y1aa{bottom:703.210000pt;}
.yed{bottom:705.741333pt;}
.y99{bottom:713.137067pt;}
.ya{bottom:715.318000pt;}
.y158{bottom:715.890933pt;}
.y102{bottom:716.010533pt;}
.y30{bottom:716.024933pt;}
.y131{bottom:716.261200pt;}
.y1e7{bottom:716.315467pt;}
.y220{bottom:716.327200pt;}
.y1a9{bottom:716.616267pt;}
.yec{bottom:719.074667pt;}
.yc2{bottom:723.882267pt;}
.yc1{bottom:723.892667pt;}
.y1a8{bottom:730.022533pt;}
.y1e6{bottom:730.888800pt;}
.y21f{bottom:730.900533pt;}
.y101{bottom:733.343867pt;}
.y2f{bottom:733.358267pt;}
.y130{bottom:733.594533pt;}
.y98{bottom:733.866267pt;}
.y1a7{bottom:743.428800pt;}
.y1e5{bottom:745.462133pt;}
.y21e{bottom:745.473867pt;}
.yeb{bottom:745.866267pt;}
.y97{bottom:747.199600pt;}
.y100{bottom:750.677200pt;}
.y2e{bottom:750.691600pt;}
.y12f{bottom:750.927867pt;}
.y9{bottom:751.318000pt;}
.y1a6{bottom:756.835067pt;}
.yea{bottom:759.199600pt;}
.y1e4{bottom:760.035467pt;}
.y21d{bottom:760.047200pt;}
.y96{bottom:760.532933pt;}
.y17f{bottom:766.074667pt;}
.yff{bottom:768.010533pt;}
.y2d{bottom:768.024933pt;}
.y12e{bottom:768.261200pt;}
.y1a5{bottom:770.241333pt;}
.ye9{bottom:772.532933pt;}
.y95{bottom:773.866267pt;}
.y1e3{bottom:774.608800pt;}
.y21c{bottom:774.620533pt;}
.yca{bottom:775.704133pt;}
.y8{bottom:777.984667pt;}
.y17e{bottom:779.408000pt;}
.y1a4{bottom:783.647600pt;}
.yfe{bottom:785.343867pt;}
.y2c{bottom:785.358267pt;}
.y12d{bottom:785.594533pt;}
.ye8{bottom:785.866267pt;}
.y94{bottom:787.199600pt;}
.y1e2{bottom:789.182133pt;}
.y21b{bottom:789.193867pt;}
.y17d{bottom:792.741333pt;}
.y1a3{bottom:797.053733pt;}
.ye7{bottom:799.199600pt;}
.y93{bottom:800.532933pt;}
.yfd{bottom:802.677200pt;}
.y2b{bottom:802.691600pt;}
.y12c{bottom:802.927867pt;}
.y1e1{bottom:803.755467pt;}
.y21a{bottom:803.767200pt;}
.y1a2{bottom:810.460000pt;}
.y17c{bottom:812.408000pt;}
.ye6{bottom:812.532933pt;}
.y92{bottom:813.866267pt;}
.y1e0{bottom:818.328800pt;}
.y219{bottom:818.340533pt;}
.ybf{bottom:819.207867pt;}
.yfc{bottom:820.010533pt;}
.y2a{bottom:820.024933pt;}
.y12b{bottom:820.261200pt;}
.ybe{bottom:821.339110pt;}
.y17b{bottom:825.803733pt;}
.ye5{bottom:825.866267pt;}
.yc0{bottom:826.674347pt;}
.y91{bottom:827.199600pt;}
.y1a1{bottom:829.866267pt;}
.y1df{bottom:832.902133pt;}
.y218{bottom:832.913867pt;}
.ybd{bottom:833.733467pt;}
.yfb{bottom:837.343867pt;}
.y29{bottom:837.358267pt;}
.y12a{bottom:837.594533pt;}
.ye4{bottom:839.199600pt;}
.y90{bottom:840.532933pt;}
.y1a0{bottom:843.199600pt;}
.y1{bottom:844.724400pt;}
.y1de{bottom:847.475467pt;}
.y217{bottom:847.487200pt;}
.y1af{bottom:854.677200pt;}
.y28{bottom:854.691600pt;}
.y129{bottom:854.927867pt;}
.y8f{bottom:858.595467pt;}
.y19f{bottom:861.262133pt;}
.y1dd{bottom:862.048800pt;}
.y216{bottom:862.060533pt;}
.y4{bottom:865.465067pt;}
.ybc{bottom:871.309067pt;}
.yfa{bottom:872.010533pt;}
.y27{bottom:872.024933pt;}
.yba{bottom:873.447629pt;}
.y1dc{bottom:876.622133pt;}
.y215{bottom:876.633867pt;}
.y3{bottom:878.798400pt;}
.y8e{bottom:878.970267pt;}
.yb9{bottom:879.348667pt;}
.ybb{bottom:885.255333pt;}
.yf9{bottom:889.343867pt;}
.y26{bottom:889.358267pt;}
.y128{bottom:889.594533pt;}
.y1db{bottom:891.195467pt;}
.y214{bottom:891.207200pt;}
.y2{bottom:892.131733pt;}
.y8d{bottom:892.303600pt;}
.y56{bottom:918.416400pt;}
.y25{bottom:918.426800pt;}
.h1a{height:14.804963pt;}
.h6{height:20.752083pt;}
.h19{height:28.244627pt;}
.h14{height:28.514063pt;}
.h11{height:28.916667pt;}
.h18{height:29.609926pt;}
.h10{height:29.625000pt;}
.h2{height:29.645833pt;}
.h1d{height:29.687433pt;}
.h1b{height:29.687967pt;}
.hf{height:30.229800pt;}
.hb{height:33.351562pt;}
.h1c{height:35.685417pt;}
.h20{height:35.727017pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.437500pt;}
.h1e{height:37.479100pt;}
.h1f{height:37.479633pt;}
.hc{height:39.760417pt;}
.h16{height:40.734375pt;}
.hd{height:40.763021pt;}
.ha{height:42.117188pt;}
.h8{height:46.796875pt;}
.h12{height:49.067448pt;}
.he{height:51.476562pt;}
.h17{height:53.236593pt;}
.h5{height:57.988802pt;}
.h13{height:78.655358pt;}
.h4{height:79.554688pt;}
.h15{height:88.763021pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x5{left:68.031467pt;}
.xb{left:84.031467pt;}
.x36{left:88.831467pt;}
.x34{left:94.698133pt;}
.xc{left:99.149600pt;}
.x37{left:103.949600pt;}
.x15{left:108.482933pt;}
.x2b{left:116.118977pt;}
.xf{left:119.149600pt;}
.x2a{left:123.201467pt;}
.x1b{left:129.027600pt;}
.x29{left:135.960574pt;}
.x25{left:141.954267pt;}
.x2c{left:151.360763pt;}
.x26{left:154.657949pt;}
.x28{left:158.914667pt;}
.x9{left:165.464667pt;}
.xe{left:173.548800pt;}
.x6{left:176.458667pt;}
.x7{left:178.058000pt;}
.x31{left:182.016267pt;}
.x27{left:187.873119pt;}
.xa{left:195.877467pt;}
.x2{left:197.819333pt;}
.x4{left:227.500267pt;}
.x3{left:238.584800pt;}
.x8{left:246.100267pt;}
.x20{left:254.962133pt;}
.x18{left:255.961200pt;}
.x30{left:257.253733pt;}
.x16{left:263.149600pt;}
.x21{left:267.697815pt;}
.x17{left:272.482933pt;}
.x22{left:273.628133pt;}
.x10{left:279.149600pt;}
.x2f{left:282.917067pt;}
.x11{left:288.482933pt;}
.x19{left:293.420000pt;}
.x1a{left:314.753333pt;}
.x32{left:346.016267pt;}
.x23{left:347.972941pt;}
.x33{left:362.016267pt;}
.x12{left:364.482933pt;}
.x13{left:373.816267pt;}
.x2d{left:378.844118pt;}
.x24{left:391.390267pt;}
.x1c{left:400.660933pt;}
.x2e{left:402.246200pt;}
.x1e{left:412.511304pt;}
.x1f{left:419.021600pt;}
.x1d{left:425.257652pt;}
.x35{left:450.698133pt;}
.x1{left:465.460933pt;}
.x14{left:476.482933pt;}
.xd{left:524.697600pt;}
}




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