
    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_e1dae2dade2142d527dc9fd6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_e3570f3fc0a9790c96aa3df0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_f19ceaec21c33ce229759b0b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.133301;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_d2bba0ec8ecbc7a9d4f966b1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.193848;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_77b6942aebc0c96ce638c993.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_372b4805009dc153a0b062ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.954200px;}
.v3{vertical-align:17.043600px;}
.v1{vertical-align:22.051800px;}
.v5{vertical-align:36.000000px;}
.ls10{letter-spacing:-7.371000px;}
.ls8{letter-spacing:-4.620000px;}
.ls23{letter-spacing:-3.159000px;}
.ls4b{letter-spacing:-2.898000px;}
.ls28{letter-spacing:-2.484000px;}
.ls3d{letter-spacing:-2.415000px;}
.ls53{letter-spacing:-2.079000px;}
.ls26{letter-spacing:-2.070000px;}
.ls4a{letter-spacing:-2.001000px;}
.ls37{letter-spacing:-1.932000px;}
.ls3c{letter-spacing:-1.863000px;}
.ls27{letter-spacing:-1.794000px;}
.ls3b{letter-spacing:-1.518000px;}
.ls39{letter-spacing:-1.449000px;}
.ls48{letter-spacing:-1.104000px;}
.ls47{letter-spacing:-1.035000px;}
.ls12{letter-spacing:-0.966000px;}
.ls24{letter-spacing:-0.897000px;}
.lsf{letter-spacing:-0.855000px;}
.ls31{letter-spacing:-0.840000px;}
.ls1a{letter-spacing:-0.690000px;}
.ls4e{letter-spacing:-0.627000px;}
.ls32{letter-spacing:-0.600000px;}
.ls38{letter-spacing:-0.552000px;}
.ls56{letter-spacing:-0.540000px;}
.ls55{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.345000px;}
.ls3a{letter-spacing:-0.276000px;}
.ls4{letter-spacing:-0.189000px;}
.ls4f{letter-spacing:-0.171000px;}
.ls50{letter-spacing:-0.081000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000300px;}
.ls42{letter-spacing:0.069000px;}
.ls9{letter-spacing:0.195888px;}
.ls46{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.783552px;}
.ls16{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.242000px;}
.ls6{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.322244px;}
.ls51{letter-spacing:1.518000px;}
.ls0{letter-spacing:1.686600px;}
.ls4c{letter-spacing:2.139000px;}
.ls40{letter-spacing:2.194200px;}
.ls11{letter-spacing:2.400000px;}
.ls44{letter-spacing:2.497800px;}
.ls43{letter-spacing:2.518500px;}
.ls21{letter-spacing:2.553000px;}
.ls45{letter-spacing:2.925600px;}
.ls15{letter-spacing:3.225000px;}
.ls52{letter-spacing:3.657000px;}
.lsd{letter-spacing:4.200000px;}
.ls1d{letter-spacing:4.436700px;}
.ls33{letter-spacing:4.754100px;}
.ls34{letter-spacing:4.836900px;}
.ls18{letter-spacing:5.325000px;}
.ls1c{letter-spacing:5.416500px;}
.lsc{letter-spacing:5.760000px;}
.ls19{letter-spacing:5.865000px;}
.lse{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.150000px;}
.ls3{letter-spacing:6.300000px;}
.ls49{letter-spacing:6.348000px;}
.ls3e{letter-spacing:6.417000px;}
.ls35{letter-spacing:6.430800px;}
.ls4d{letter-spacing:6.825000px;}
.ls13{letter-spacing:6.900000px;}
.ls1f{letter-spacing:7.452000px;}
.ls36{letter-spacing:7.950000px;}
.ls17{letter-spacing:8.160156px;}
.ls22{letter-spacing:8.160756px;}
.ls5{letter-spacing:8.400000px;}
.ls41{letter-spacing:9.453000px;}
.ls3f{letter-spacing:10.350000px;}
.ls54{letter-spacing:10.773000px;}
.ls20{letter-spacing:11.661000px;}
.ls1e{letter-spacing:13.662000px;}
.ls2d{letter-spacing:106.440000px;}
.ls2c{letter-spacing:108.060000px;}
.ls30{letter-spacing:116.220000px;}
.ls29{letter-spacing:124.200000px;}
.ls2a{letter-spacing:128.520000px;}
.ls2e{letter-spacing:132.900000px;}
.ls2f{letter-spacing:134.040000px;}
.ls2b{letter-spacing:140.940000px;}
.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;}
}
.ws31{word-spacing:-145.380000px;}
.ws41{word-spacing:-29.025000px;}
.ws59{word-spacing:-27.900000px;}
.ws0{word-spacing:-27.225000px;}
.ws1a{word-spacing:-26.400000px;}
.ws15{word-spacing:-24.300000px;}
.ws67{word-spacing:-22.860000px;}
.wsd{word-spacing:-22.740000px;}
.ws5b{word-spacing:-22.680000px;}
.ws6{word-spacing:-22.620000px;}
.ws21{word-spacing:-19.602000px;}
.ws25{word-spacing:-19.389000px;}
.ws2{word-spacing:-18.984000px;}
.ws4c{word-spacing:-18.354000px;}
.ws1{word-spacing:-18.102000px;}
.ws64{word-spacing:-17.703000px;}
.ws1b{word-spacing:-17.043000px;}
.ws2a{word-spacing:-16.860000px;}
.ws43{word-spacing:-16.767000px;}
.ws23{word-spacing:-16.698000px;}
.ws69{word-spacing:-16.500000px;}
.ws44{word-spacing:-16.491000px;}
.ws1c{word-spacing:-16.353000px;}
.ws6a{word-spacing:-16.320000px;}
.ws22{word-spacing:-16.146000px;}
.ws13{word-spacing:-16.077000px;}
.ws29{word-spacing:-16.002000px;}
.ws4e{word-spacing:-15.939000px;}
.ws42{word-spacing:-15.594000px;}
.ws63{word-spacing:-15.561000px;}
.ws50{word-spacing:-15.525000px;}
.wsf{word-spacing:-15.390000px;}
.ws46{word-spacing:-15.180000px;}
.ws4{word-spacing:-15.083376px;}
.ws51{word-spacing:-15.042000px;}
.ws24{word-spacing:-14.973000px;}
.ws2d{word-spacing:-14.820000px;}
.ws4d{word-spacing:-14.628000px;}
.ws45{word-spacing:-14.559000px;}
.ws5{word-spacing:-14.544684px;}
.ws2e{word-spacing:-14.220000px;}
.ws2c{word-spacing:-13.980000px;}
.ws3{word-spacing:-13.957020px;}
.ws65{word-spacing:-13.482000px;}
.ws52{word-spacing:-13.338000px;}
.ws10{word-spacing:-11.303787px;}
.ws4f{word-spacing:-9.936069px;}
.wse{word-spacing:-9.829380px;}
.ws9{word-spacing:-8.400000px;}
.ws16{word-spacing:-6.900000px;}
.ws55{word-spacing:-6.348000px;}
.ws66{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.000000px;}
.ws1d{word-spacing:-5.865000px;}
.ws11{word-spacing:-4.200000px;}
.ws61{word-spacing:-3.657000px;}
.ws14{word-spacing:-2.400000px;}
.ws56{word-spacing:-2.139000px;}
.ws47{word-spacing:-1.932000px;}
.ws5e{word-spacing:-1.656000px;}
.ws60{word-spacing:-1.518000px;}
.ws5f{word-spacing:-1.449000px;}
.wsa{word-spacing:-1.260000px;}
.ws26{word-spacing:-1.242000px;}
.ws17{word-spacing:-1.104000px;}
.wsb{word-spacing:0.000000px;}
.ws20{word-spacing:0.069000px;}
.ws5c{word-spacing:0.171000px;}
.ws8{word-spacing:0.189000px;}
.ws62{word-spacing:0.414000px;}
.ws49{word-spacing:0.552000px;}
.ws5a{word-spacing:0.627000px;}
.ws12{word-spacing:0.855000px;}
.ws19{word-spacing:1.104000px;}
.ws18{word-spacing:1.311000px;}
.ws5d{word-spacing:1.449000px;}
.ws4a{word-spacing:1.518000px;}
.ws27{word-spacing:1.794000px;}
.ws48{word-spacing:1.932000px;}
.ws57{word-spacing:2.139000px;}
.ws53{word-spacing:2.277000px;}
.ws4b{word-spacing:2.415000px;}
.ws28{word-spacing:2.484000px;}
.ws54{word-spacing:2.898000px;}
.wsc{word-spacing:4.620000px;}
.ws1e{word-spacing:4.899000px;}
.ws1f{word-spacing:5.589000px;}
.ws58{word-spacing:11.592000px;}
.ws3c{word-spacing:59.820000px;}
.ws40{word-spacing:60.360000px;}
.ws35{word-spacing:70.080000px;}
.ws37{word-spacing:71.700000px;}
.ws33{word-spacing:78.180000px;}
.ws3e{word-spacing:79.800000px;}
.ws36{word-spacing:82.380000px;}
.ws38{word-spacing:86.820000px;}
.ws3b{word-spacing:91.200000px;}
.ws32{word-spacing:92.100000px;}
.ws34{word-spacing:95.100000px;}
.ws3d{word-spacing:96.540000px;}
.ws2f{word-spacing:100.140000px;}
.ws30{word-spacing:100.200000px;}
.ws3a{word-spacing:104.640000px;}
.ws39{word-spacing:117.180000px;}
.ws3f{word-spacing:121.620000px;}
.ws68{word-spacing:438.180000px;}
.ws2b{word-spacing:634.500000px;}
._33{margin-left:-128.341200px;}
._2c{margin-left:-22.918800px;}
._3e{margin-left:-21.495600px;}
._29{margin-left:-20.460000px;}
._36{margin-left:-12.787800px;}
._16{margin-left:-9.609300px;}
._15{margin-left:-8.335200px;}
._1b{margin-left:-6.651600px;}
._a{margin-left:-5.429100px;}
._7{margin-left:-4.214700px;}
._5{margin-left:-2.463300px;}
._3{margin-left:-1.293000px;}
._0{width:1.612200px;}
._4{width:2.722200px;}
._8{width:3.901200px;}
._6{width:5.525400px;}
._2{width:6.817800px;}
._9{width:8.370000px;}
._b{width:10.362000px;}
._18{width:11.475600px;}
._20{width:12.495000px;}
._f{width:13.588200px;}
._13{width:15.194100px;}
._17{width:16.659000px;}
._43{width:17.844600px;}
._44{width:19.518300px;}
._12{width:20.976000px;}
._4a{width:22.614600px;}
._1d{width:23.624514px;}
._11{width:24.723000px;}
._1f{width:26.216400px;}
._21{width:27.704160px;}
._49{width:29.185500px;}
._4b{width:33.705600px;}
._46{width:39.678900px;}
._14{width:43.445160px;}
._45{width:45.486000px;}
._47{width:52.890000px;}
._48{width:60.045300px;}
._51{width:61.327800px;}
._23{width:74.655600px;}
._2b{width:78.121200px;}
._e{width:85.554000px;}
._3f{width:86.563200px;}
._2a{width:88.560000px;}
._28{width:99.240000px;}
._2e{width:101.347800px;}
._3b{width:102.787800px;}
._32{width:104.093400px;}
._3c{width:107.220000px;}
._3a{width:108.960000px;}
._31{width:112.507800px;}
._25{width:114.058800px;}
._2d{width:117.060000px;}
._3d{width:121.005600px;}
._40{width:122.503200px;}
._27{width:125.100000px;}
._35{width:126.247800px;}
._39{width:128.520000px;}
._2f{width:133.321200px;}
._37{width:134.878800px;}
._30{width:138.480000px;}
._26{width:142.507800px;}
._4e{width:149.115600px;}
._34{width:159.247800px;}
._38{width:166.920000px;}
._24{width:168.480000px;}
._4d{width:224.167800px;}
._10{width:260.610000px;}
._4c{width:273.180000px;}
._4f{width:305.253000px;}
._50{width:323.831100px;}
._52{width:347.887800px;}
._55{width:395.167800px;}
._56{width:396.847800px;}
._41{width:447.465000px;}
._42{width:449.235000px;}
._1{width:451.260000px;}
._1e{width:452.610000px;}
._1a{width:455.008800px;}
._53{width:486.003300px;}
._54{width:494.763300px;}
._c{width:578.400000px;}
._19{width:956.674800px;}
._1c{width:959.299800px;}
._22{width:963.349800px;}
._d{width:965.329800px;}
._57{width:974.587800px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fse{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1a3{bottom:95.170650px;}
.y1c8{bottom:102.926400px;}
.y1e{bottom:106.207500px;}
.y215{bottom:106.268700px;}
.y98{bottom:106.290450px;}
.y42{bottom:106.293450px;}
.y69{bottom:106.296450px;}
.y128{bottom:106.299150px;}
.y256{bottom:106.302300px;}
.y1f4{bottom:106.397550px;}
.y236{bottom:106.544100px;}
.yde{bottom:109.294950px;}
.y13e{bottom:110.145300px;}
.y103{bottom:110.591400px;}
.y12e{bottom:110.610300px;}
.y123{bottom:110.651400px;}
.y134{bottom:110.790300px;}
.y139{bottom:110.895300px;}
.y142{bottom:111.000300px;}
.y12f{bottom:111.015300px;}
.y11f{bottom:111.026400px;}
.y124{bottom:111.086400px;}
.y135{bottom:111.225300px;}
.y13a{bottom:111.330300px;}
.y13f{bottom:111.375300px;}
.y143{bottom:111.405300px;}
.y1a2{bottom:112.423650px;}
.y73{bottom:112.946850px;}
.y1c7{bottom:120.179400px;}
.y97{bottom:123.543450px;}
.y41{bottom:123.546450px;}
.y12c{bottom:123.725100px;}
.y255{bottom:125.907300px;}
.y12b{bottom:126.087600px;}
.y68{bottom:126.544950px;}
.y12a{bottom:126.803100px;}
.y214{bottom:126.901200px;}
.y1d{bottom:127.012500px;}
.y1f3{bottom:127.339050px;}
.y235{bottom:127.349850px;}
.y102{bottom:127.787250px;}
.ydd{bottom:127.798500px;}
.y129{bottom:127.842600px;}
.y12d{bottom:127.856100px;}
.y1a1{bottom:129.676650px;}
.y72{bottom:133.198350px;}
.y1c6{bottom:137.432400px;}
.y96{bottom:140.796450px;}
.y40{bottom:143.794950px;}
.y67{bottom:145.039500px;}
.ybc{bottom:145.048500px;}
.y254{bottom:145.512300px;}
.y1a0{bottom:146.929650px;}
.y213{bottom:147.533700px;}
.y1c{bottom:147.817500px;}
.ydc{bottom:148.047000px;}
.y1f2{bottom:148.280550px;}
.y294{bottom:151.784550px;}
.y101{bottom:153.296850px;}
.y18b{bottom:153.299250px;}
.y71{bottom:153.449850px;}
.y1d1{bottom:153.451350px;}
.y234{bottom:156.660600px;}
.y1c5{bottom:157.680900px;}
.y95{bottom:161.044950px;}
.y66{bottom:162.292500px;}
.y253{bottom:165.118350px;}
.ybb{bottom:165.297000px;}
.y19f{bottom:167.178150px;}
.y1b{bottom:168.622500px;}
.y1f1{bottom:169.222050px;}
.y293{bottom:169.784550px;}
.y169{bottom:170.561400px;}
.y2b4{bottom:172.064550px;}
.y70{bottom:173.701350px;}
.y100{bottom:174.548850px;}
.y18a{bottom:175.344750px;}
.y1c4{bottom:176.178600px;}
.y212{bottom:176.671200px;}
.y233{bottom:177.466350px;}
.y65{bottom:179.545500px;}
.yba{bottom:183.800700px;}
.y252{bottom:184.724250px;}
.y292{bottom:187.784550px;}
.y3f{bottom:187.804800px;}
.y1a{bottom:189.427500px;}
.y1f0{bottom:190.163550px;}
.y168{bottom:190.899150px;}
.ydb{bottom:192.056250px;}
.y2b3{bottom:192.314550px;}
.y1c3{bottom:193.431600px;}
.yff{bottom:195.800850px;}
.y64{bottom:196.798500px;}
.y211{bottom:197.303700px;}
.y189{bottom:197.390250px;}
.yb9{bottom:204.049200px;}
.y251{bottom:204.332400px;}
.y94{bottom:204.904200px;}
.y291{bottom:205.784550px;}
.y232{bottom:206.777100px;}
.y3e{bottom:208.574400px;}
.y19{bottom:210.232500px;}
.y1c2{bottom:210.684600px;}
.y1ef{bottom:211.105050px;}
.y19e{bottom:211.181400px;}
.y167{bottom:211.236900px;}
.y2b2{bottom:212.564550px;}
.y6f{bottom:214.201350px;}
.yda{bottom:214.981500px;}
.yfe{bottom:216.987600px;}
.y63{bottom:217.047000px;}
.y188{bottom:219.430950px;}
.y127{bottom:219.986400px;}
.y133{bottom:220.005300px;}
.y138{bottom:220.110300px;}
.y126{bottom:220.691400px;}
.y132{bottom:220.710300px;}
.y137{bottom:220.815300px;}
.yb8{bottom:222.552750px;}
.y104{bottom:222.611400px;}
.y290{bottom:223.784550px;}
.y250{bottom:223.937400px;}
.y93{bottom:226.052700px;}
.y210{bottom:226.441200px;}
.y121{bottom:227.396400px;}
.y131{bottom:227.415300px;}
.y122{bottom:227.501400px;}
.y231{bottom:227.582850px;}
.y13c{bottom:227.685300px;}
.y141{bottom:227.730300px;}
.y13d{bottom:227.790300px;}
.y145{bottom:227.880300px;}
.y3d{bottom:229.360650px;}
.y1c1{bottom:230.933100px;}
.y18{bottom:231.037500px;}
.y19d{bottom:231.432900px;}
.y166{bottom:231.570600px;}
.y1ee{bottom:232.046550px;}
.y2b1{bottom:232.814550px;}
.y6e{bottom:234.451350px;}
.y120{bottom:235.346400px;}
.y125{bottom:235.406400px;}
.y130{bottom:235.410300px;}
.y13b{bottom:235.425300px;}
.y140{bottom:235.515300px;}
.y144{bottom:235.590300px;}
.y136{bottom:235.920300px;}
.yd9{bottom:237.906750px;}
.yfd{bottom:238.239600px;}
.y187{bottom:241.471800px;}
.yb7{bottom:242.801250px;}
.y24f{bottom:243.542400px;}
.y28f{bottom:246.509550px;}
.y20f{bottom:247.073700px;}
.y92{bottom:247.201200px;}
.y3c{bottom:250.146900px;}
.y19c{bottom:251.684400px;}
.y17{bottom:251.842500px;}
.y165{bottom:251.908350px;}
.y1ed{bottom:252.988050px;}
.y6d{bottom:254.701350px;}
.y230{bottom:256.893600px;}
.yfc{bottom:259.491600px;}
.yd8{bottom:260.832000px;}
.y62{bottom:261.030300px;}
.y24e{bottom:263.150400px;}
.y186{bottom:263.503350px;}
.y28e{bottom:264.509550px;}
.y2b0{bottom:265.814550px;}
.y20e{bottom:267.706200px;}
.y91{bottom:268.349700px;}
.y19b{bottom:271.935900px;}
.y164{bottom:272.246100px;}
.y16{bottom:272.647500px;}
.y1ec{bottom:273.929550px;}
.y1c0{bottom:274.939350px;}
.y6c{bottom:274.951350px;}
.y22f{bottom:277.699350px;}
.yfb{bottom:280.743600px;}
.y61{bottom:281.730300px;}
.y28d{bottom:282.509550px;}
.y24d{bottom:282.755400px;}
.yd7{bottom:283.757250px;}
.y185{bottom:285.548850px;}
.yb6{bottom:286.855500px;}
.y20d{bottom:288.338700px;}
.y90{bottom:289.498200px;}
.y3b{bottom:292.184700px;}
.y19a{bottom:292.187400px;}
.y163{bottom:292.583850px;}
.y15{bottom:293.452500px;}
.y1eb{bottom:294.871050px;}
.y1bf{bottom:295.190850px;}
.y22e{bottom:298.505100px;}
.yfa{bottom:301.995600px;}
.y24c{bottom:302.360400px;}
.y60{bottom:302.430300px;}
.y28c{bottom:305.234550px;}
.yd6{bottom:306.682500px;}
.yb5{bottom:307.383000px;}
.y184{bottom:307.594350px;}
.y20c{bottom:308.971200px;}
.y8f{bottom:310.646700px;}
.y199{bottom:312.438900px;}
.y162{bottom:312.921600px;}
.y14{bottom:314.257500px;}
.y1be{bottom:315.442350px;}
.y1ea{bottom:315.812550px;}
.y22d{bottom:319.310850px;}
.y24b{bottom:321.985500px;}
.y5f{bottom:323.130300px;}
.y28b{bottom:323.234550px;}
.yf9{bottom:323.247600px;}
.y105{bottom:325.841400px;}
.yb4{bottom:327.910500px;}
.yd5{bottom:329.588100px;}
.y20b{bottom:329.603700px;}
.y183{bottom:329.625750px;}
.y8e{bottom:331.795200px;}
.y198{bottom:332.690400px;}
.y161{bottom:333.259350px;}
.y13{bottom:335.062500px;}
.y1bd{bottom:335.693850px;}
.y1e9{bottom:336.754050px;}
.y109{bottom:337.092450px;}
.y106{bottom:338.081400px;}
.y22c{bottom:340.116600px;}
.y28a{bottom:341.234550px;}
.y24a{bottom:341.590500px;}
.y5e{bottom:343.830300px;}
.yf8{bottom:344.499600px;}
.yb3{bottom:348.438000px;}
.y2af{bottom:350.339550px;}
.y182{bottom:351.671250px;}
.yd4{bottom:352.513350px;}
.y197{bottom:352.941900px;}
.y8d{bottom:352.943700px;}
.y160{bottom:353.597100px;}
.y3a{bottom:354.983250px;}
.y12{bottom:355.867500px;}
.y1bc{bottom:355.945350px;}
.y1e8{bottom:357.695550px;}
.y20a{bottom:358.741200px;}
.y289{bottom:359.234550px;}
.y249{bottom:361.195500px;}
.y5d{bottom:364.530300px;}
.yf7{bottom:365.751600px;}
.y2ae{bottom:368.339550px;}
.yb2{bottom:368.965500px;}
.y22b{bottom:369.427350px;}
.y10b{bottom:372.207450px;}
.y196{bottom:373.193400px;}
.y181{bottom:373.716750px;}
.y15f{bottom:373.926750px;}
.y8c{bottom:374.092200px;}
.yd3{bottom:375.438600px;}
.y1bb{bottom:376.196850px;}
.y39{bottom:376.508250px;}
.y11{bottom:376.672500px;}
.y288{bottom:377.234550px;}
.y1e7{bottom:378.637050px;}
.y209{bottom:379.373700px;}
.y248{bottom:380.800500px;}
.y5c{bottom:385.230300px;}
.yf6{bottom:387.003600px;}
.yb1{bottom:389.493000px;}
.y10a{bottom:390.207450px;}
.y22a{bottom:390.233100px;}
.y2ad{bottom:391.064550px;}
.y195{bottom:393.444900px;}
.y15e{bottom:394.264500px;}
.y287{bottom:395.234550px;}
.y8b{bottom:395.240700px;}
.y180{bottom:395.757600px;}
.y2ac{bottom:395.789550px;}
.y1ba{bottom:396.448350px;}
.y38{bottom:398.039100px;}
.yd2{bottom:398.363850px;}
.y1e6{bottom:399.578550px;}
.y208{bottom:400.006200px;}
.y247{bottom:400.405500px;}
.y5b{bottom:405.930300px;}
.yf5{bottom:408.255600px;}
.yb0{bottom:410.020500px;}
.y10{bottom:410.227500px;}
.y229{bottom:411.038850px;}
.y194{bottom:413.696400px;}
.y2ab{bottom:413.789550px;}
.y107{bottom:413.936400px;}
.y15d{bottom:414.602250px;}
.y8a{bottom:416.389200px;}
.y1b9{bottom:416.699850px;}
.y17f{bottom:417.765750px;}
.y286{bottom:417.959550px;}
.y37{bottom:418.069800px;}
.y246{bottom:420.010500px;}
.y1e5{bottom:420.520050px;}
.yd1{bottom:421.289100px;}
.y108{bottom:424.301400px;}
.y10c{bottom:425.322450px;}
.y5a{bottom:426.630300px;}
.y207{bottom:429.143700px;}
.yf4{bottom:429.507600px;}
.yaf{bottom:430.548000px;}
.y15c{bottom:434.940000px;}
.y285{bottom:435.959550px;}
.y2aa{bottom:436.514550px;}
.y1b8{bottom:436.924350px;}
.y89{bottom:437.537700px;}
.y36{bottom:438.094800px;}
.y245{bottom:439.615500px;}
.y17e{bottom:439.811250px;}
.y228{bottom:440.349600px;}
.y1e4{bottom:441.461550px;}
.yd0{bottom:444.214350px;}
.y59{bottom:447.330300px;}
.y206{bottom:449.776200px;}
.yf3{bottom:450.759600px;}
.yae{bottom:451.075500px;}
.y284{bottom:453.959550px;}
.y193{bottom:454.196400px;}
.y2a9{bottom:454.514550px;}
.y15b{bottom:455.277750px;}
.y1b7{bottom:457.175850px;}
.y35{bottom:458.137200px;}
.y10e{bottom:458.442450px;}
.y88{bottom:458.686200px;}
.y244{bottom:459.220500px;}
.y227{bottom:461.155350px;}
.y17d{bottom:461.856750px;}
.y1e3{bottom:462.403050px;}
.ycf{bottom:467.139600px;}
.y58{bottom:468.030300px;}
.yf{bottom:469.283100px;}
.yad{bottom:471.603000px;}
.y283{bottom:471.959550px;}
.yf2{bottom:471.979050px;}
.y15a{bottom:475.615500px;}
.y10d{bottom:476.442450px;}
.y2a8{bottom:477.239550px;}
.y1b6{bottom:477.427350px;}
.y1d0{bottom:477.442350px;}
.y34{bottom:478.162200px;}
.y243{bottom:478.825500px;}
.y205{bottom:478.913700px;}
.y87{bottom:479.834700px;}
.y226{bottom:481.961100px;}
.y2a7{bottom:481.964550px;}
.y1e2{bottom:483.344550px;}
.y17c{bottom:483.902250px;}
.y57{bottom:488.730300px;}
.y282{bottom:489.959550px;}
.yce{bottom:490.064850px;}
.yac{bottom:492.130500px;}
.yf1{bottom:493.231050px;}
.y26b{bottom:494.697750px;}
.y159{bottom:495.953250px;}
.ye{bottom:497.571150px;}
.y1b5{bottom:497.678850px;}
.y1cf{bottom:497.693850px;}
.y33{bottom:498.187200px;}
.y242{bottom:498.430500px;}
.y204{bottom:499.546200px;}
.y2a6{bottom:499.964550px;}
.y86{bottom:500.983200px;}
.y1e1{bottom:504.286050px;}
.y17b{bottom:505.947750px;}
.y281{bottom:507.959550px;}
.y56{bottom:509.430300px;}
.y10f{bottom:509.562450px;}
.y225{bottom:511.271850px;}
.yab{bottom:512.658000px;}
.ycd{bottom:512.990100px;}
.y26a{bottom:514.197750px;}
.yf0{bottom:514.483050px;}
.y158{bottom:516.291000px;}
.y1b4{bottom:517.930350px;}
.y1ce{bottom:517.945350px;}
.y241{bottom:518.035500px;}
.y32{bottom:518.212200px;}
.y85{bottom:522.131700px;}
.y2a5{bottom:522.689550px;}
.y1e0{bottom:525.227550px;}
.yd{bottom:525.879150px;}
.y17a{bottom:527.993250px;}
.y203{bottom:528.683700px;}
.y55{bottom:530.130300px;}
.y280{bottom:530.684550px;}
.y224{bottom:532.077600px;}
.yaa{bottom:533.185500px;}
.y269{bottom:533.697750px;}
.yef{bottom:535.735050px;}
.ycc{bottom:535.915350px;}
.y157{bottom:536.628750px;}
.y240{bottom:537.640500px;}
.y1b3{bottom:538.181850px;}
.y1cd{bottom:538.196850px;}
.y31{bottom:538.237200px;}
.y2a4{bottom:540.689550px;}
.y111{bottom:542.682450px;}
.y84{bottom:543.280200px;}
.y27f{bottom:548.684550px;}
.y202{bottom:549.316200px;}
.y179{bottom:550.038750px;}
.y54{bottom:550.830300px;}
.y223{bottom:552.883350px;}
.y268{bottom:553.197750px;}
.ya9{bottom:553.713000px;}
.yc{bottom:554.187150px;}
.y156{bottom:556.966500px;}
.yee{bottom:556.987050px;}
.y23f{bottom:557.245500px;}
.y30{bottom:558.262200px;}
.y1b2{bottom:558.433350px;}
.y1cc{bottom:558.448350px;}
.ycb{bottom:558.840600px;}
.y110{bottom:560.682450px;}
.y2a3{bottom:563.414550px;}
.y83{bottom:564.428700px;}
.y27e{bottom:566.684550px;}
.y1df{bottom:567.433800px;}
.y53{bottom:571.530300px;}
.y178{bottom:572.084250px;}
.y267{bottom:572.697750px;}
.ya8{bottom:574.240500px;}
.y23e{bottom:576.850500px;}
.y155{bottom:577.304250px;}
.yed{bottom:578.239050px;}
.y2f{bottom:578.298900px;}
.y201{bottom:578.453700px;}
.y1b1{bottom:578.684850px;}
.y1cb{bottom:578.699850px;}
.y2a2{bottom:581.414550px;}
.yca{bottom:581.765850px;}
.y222{bottom:582.194100px;}
.y27d{bottom:584.684550px;}
.y113{bottom:584.802450px;}
.y82{bottom:585.577200px;}
.y266{bottom:592.197750px;}
.y52{bottom:592.230300px;}
.y177{bottom:594.097050px;}
.ya7{bottom:594.768000px;}
.y154{bottom:597.642000px;}
.y2e{bottom:598.323900px;}
.y1b0{bottom:598.936350px;}
.y1ca{bottom:598.951350px;}
.y200{bottom:599.086200px;}
.yec{bottom:599.431350px;}
.y27c{bottom:602.684550px;}
.y112{bottom:602.802450px;}
.y221{bottom:602.999850px;}
.yb{bottom:603.717150px;}
.y2a1{bottom:604.139550px;}
.yc9{bottom:604.691100px;}
.y81{bottom:606.725700px;}
.y23d{bottom:609.205500px;}
.y265{bottom:611.697750px;}
.y51{bottom:612.913800px;}
.ya6{bottom:615.295500px;}
.y176{bottom:616.142550px;}
.y153{bottom:617.979750px;}
.y2d{bottom:618.348900px;}
.y1af{bottom:619.187850px;}
.yeb{bottom:620.683350px;}
.y27b{bottom:620.684550px;}
.y2a0{bottom:622.139550px;}
.y115{bottom:626.922450px;}
.yc8{bottom:627.598350px;}
.y80{bottom:627.770850px;}
.y1ff{bottom:628.223700px;}
.y1de{bottom:630.461850px;}
.y264{bottom:631.197750px;}
.y220{bottom:632.310600px;}
.y50{bottom:633.613800px;}
.ya5{bottom:635.823000px;}
.ya{bottom:636.522150px;}
.y175{bottom:638.188050px;}
.y152{bottom:638.317500px;}
.y2c{bottom:638.373900px;}
.y1ae{bottom:639.439350px;}
.y1c9{bottom:639.451350px;}
.yea{bottom:641.935350px;}
.y29f{bottom:644.864550px;}
.y114{bottom:644.922450px;}
.y27a{bottom:645.764550px;}
.y1fe{bottom:648.856200px;}
.y7f{bottom:648.919350px;}
.yc7{bottom:650.523600px;}
.y263{bottom:650.697750px;}
.y1dd{bottom:651.403350px;}
.y21f{bottom:653.116350px;}
.y4f{bottom:654.313800px;}
.ya4{bottom:656.350500px;}
.y2b{bottom:658.401750px;}
.y151{bottom:658.654800px;}
.y1ad{bottom:659.690850px;}
.y174{bottom:660.233550px;}
.y29e{bottom:662.864550px;}
.ye9{bottom:663.187350px;}
.y279{bottom:663.764550px;}
.y23c{bottom:667.074150px;}
.y117{bottom:669.042450px;}
.y9{bottom:669.327150px;}
.y7e{bottom:670.067850px;}
.y262{bottom:670.197750px;}
.y1dc{bottom:672.344850px;}
.yc6{bottom:673.448850px;}
.y4e{bottom:675.013800px;}
.ya3{bottom:676.881750px;}
.y1fd{bottom:677.993700px;}
.y2a{bottom:678.429750px;}
.y150{bottom:678.986100px;}
.y1ac{bottom:679.942350px;}
.y278{bottom:681.764550px;}
.y173{bottom:682.279050px;}
.y21e{bottom:682.427100px;}
.ye8{bottom:684.439350px;}
.y29d{bottom:685.589550px;}
.y116{bottom:687.042450px;}
.y261{bottom:689.697750px;}
.y7d{bottom:691.216350px;}
.y1db{bottom:693.286350px;}
.y23b{bottom:694.175250px;}
.y4d{bottom:695.713800px;}
.yc5{bottom:696.374100px;}
.ya2{bottom:697.409250px;}
.y29{bottom:698.460600px;}
.y1fc{bottom:698.626200px;}
.y14f{bottom:699.323850px;}
.y277{bottom:699.764550px;}
.y1ab{bottom:700.193850px;}
.y8{bottom:702.132150px;}
.y21d{bottom:703.232850px;}
.y29c{bottom:703.589550px;}
.y172{bottom:704.324550px;}
.ye7{bottom:705.691350px;}
.y260{bottom:709.197750px;}
.y7c{bottom:712.364850px;}
.y1da{bottom:714.227850px;}
.y4c{bottom:716.413800px;}
.y276{bottom:717.764550px;}
.ya1{bottom:717.938700px;}
.y28{bottom:718.485600px;}
.y1fb{bottom:719.258700px;}
.yc4{bottom:719.299350px;}
.y14e{bottom:719.661600px;}
.y118{bottom:720.162450px;}
.y1aa{bottom:720.445350px;}
.y23a{bottom:721.286250px;}
.y29b{bottom:726.314550px;}
.y171{bottom:726.370050px;}
.ye6{bottom:726.943350px;}
.y25f{bottom:728.697750px;}
.y21c{bottom:732.543600px;}
.y7b{bottom:733.513350px;}
.y7{bottom:734.937150px;}
.y1d9{bottom:735.169350px;}
.y275{bottom:735.764550px;}
.y4b{bottom:737.113800px;}
.y192{bottom:737.694900px;}
.ya0{bottom:738.481350px;}
.y27{bottom:738.516900px;}
.y1fa{bottom:739.891200px;}
.y14d{bottom:739.999350px;}
.y1a9{bottom:740.696850px;}
.yc3{bottom:742.224600px;}
.y29a{bottom:744.314550px;}
.ye5{bottom:748.195350px;}
.y25e{bottom:748.197750px;}
.y170{bottom:748.392150px;}
.y239{bottom:748.397250px;}
.y11a{bottom:753.282450px;}
.y21b{bottom:753.349350px;}
.y7a{bottom:754.661850px;}
.y1d8{bottom:756.110850px;}
.y4a{bottom:757.813800px;}
.y191{bottom:757.938900px;}
.y274{bottom:758.489550px;}
.y26{bottom:758.541900px;}
.y9f{bottom:759.008850px;}
.y14c{bottom:760.337100px;}
.y1a8{bottom:760.948350px;}
.yc2{bottom:765.149850px;}
.y299{bottom:767.039550px;}
.y25d{bottom:767.697750px;}
.y1f9{bottom:769.028700px;}
.ye4{bottom:769.447350px;}
.y16f{bottom:770.437650px;}
.y119{bottom:771.282450px;}
.y79{bottom:775.810350px;}
.y273{bottom:776.489550px;}
.y1d7{bottom:777.052350px;}
.y190{bottom:778.190400px;}
.y49{bottom:778.501350px;}
.y9e{bottom:779.536350px;}
.y14b{bottom:780.674850px;}
.y1a7{bottom:781.199850px;}
.y21a{bottom:782.660100px;}
.y298{bottom:785.039550px;}
.y25c{bottom:787.197750px;}
.yc1{bottom:788.075100px;}
.ye3{bottom:790.699350px;}
.y25{bottom:791.331900px;}
.y16e{bottom:792.483150px;}
.y272{bottom:794.489550px;}
.y78{bottom:796.958850px;}
.y6{bottom:797.505900px;}
.y1d6{bottom:797.993850px;}
.y18f{bottom:798.441900px;}
.y48{bottom:799.201350px;}
.y9d{bottom:800.063850px;}
.y14a{bottom:801.012600px;}
.y1a6{bottom:801.443850px;}
.y219{bottom:803.465850px;}
.y11b{bottom:804.402450px;}
.y25b{bottom:806.697750px;}
.y297{bottom:807.764550px;}
.yc0{bottom:811.000350px;}
.ye2{bottom:811.951350px;}
.y296{bottom:812.489550px;}
.y16d{bottom:814.528650px;}
.y271{bottom:817.214550px;}
.y77{bottom:818.107350px;}
.y18e{bottom:818.693400px;}
.y1d5{bottom:818.935350px;}
.y47{bottom:819.901350px;}
.y1f8{bottom:820.177350px;}
.y9c{bottom:820.591350px;}
.y149{bottom:821.350350px;}
.y1a5{bottom:821.695350px;}
.y25a{bottom:826.197750px;}
.y26e{bottom:826.214550px;}
.y5{bottom:828.300900px;}
.y295{bottom:830.489550px;}
.y218{bottom:832.776600px;}
.ye1{bottom:833.203350px;}
.ybf{bottom:833.925600px;}
.y270{bottom:835.214550px;}
.y16c{bottom:836.574150px;}
.y11d{bottom:837.522450px;}
.y18d{bottom:838.944900px;}
.y76{bottom:839.255850px;}
.y1d4{bottom:839.876850px;}
.y46{bottom:840.601350px;}
.y1f7{bottom:840.808350px;}
.y24{bottom:841.116900px;}
.y9b{bottom:841.118850px;}
.y148{bottom:841.688100px;}
.y1a4{bottom:841.946850px;}
.y26d{bottom:844.214550px;}
.y259{bottom:845.697750px;}
.y26f{bottom:853.214550px;}
.y238{bottom:854.495850px;}
.y11c{bottom:855.522450px;}
.ybe{bottom:856.850850px;}
.y16b{bottom:858.610350px;}
.y4{bottom:859.095900px;}
.y18c{bottom:859.196400px;}
.y75{bottom:860.404350px;}
.y1d3{bottom:860.818350px;}
.y45{bottom:861.301350px;}
.y1f6{bottom:861.439350px;}
.y9a{bottom:861.646350px;}
.y147{bottom:862.025850px;}
.y217{bottom:862.087350px;}
.y6b{bottom:862.198350px;}
.y23{bottom:862.641900px;}
.y258{bottom:865.197750px;}
.y237{bottom:874.844850px;}
.ye0{bottom:875.717700px;}
.ybd{bottom:879.776100px;}
.y16a{bottom:880.655850px;}
.y3{bottom:881.400900px;}
.y74{bottom:881.552850px;}
.y1d2{bottom:881.759850px;}
.y44{bottom:882.001350px;}
.y1f5{bottom:882.070350px;}
.y99{bottom:882.173850px;}
.y146{bottom:882.363600px;}
.y6a{bottom:882.449850px;}
.y26c{bottom:882.704100px;}
.y216{bottom:882.893100px;}
.y22{bottom:884.172750px;}
.y257{bottom:884.697750px;}
.y11e{bottom:888.642450px;}
.ydf{bottom:900.706200px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.he{height:35.347102px;}
.h14{height:38.590266px;}
.h10{height:42.070312px;}
.h29{height:46.992188px;}
.hf{height:47.329102px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h9{height:56.179406px;}
.h12{height:56.191406px;}
.h26{height:59.000977px;}
.hb{height:60.476074px;}
.h25{height:60.506074px;}
.h11{height:60.525874px;}
.hc{height:60.542674px;}
.h13{height:60.889474px;}
.hd{height:64.620117px;}
.h1d{height:64.636317px;}
.h21{height:64.638717px;}
.h24{height:64.639317px;}
.h1b{height:64.645917px;}
.h1c{height:64.652517px;}
.h1e{height:64.657317px;}
.h23{height:64.675917px;}
.h22{height:64.676517px;}
.h15{height:64.692117px;}
.h1f{height:64.713717px;}
.h17{height:64.750317px;}
.h20{height:64.769517px;}
.h16{height:64.858917px;}
.h18{height:64.881117px;}
.h2{height:65.734863px;}
.ha{height:70.993652px;}
.h6{height:73.623047px;}
.h28{height:73.643447px;}
.h27{height:73.662647px;}
.h8{height:73.663247px;}
.h7{height:73.702847px;}
.h1a{height:88.587891px;}
.h19{height:92.191406px;}
.h5{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.930400px;}
.x8{left:82.478100px;}
.x1{left:83.686650px;}
.x5{left:85.080600px;}
.x5b{left:93.583500px;}
.xa{left:95.014950px;}
.x5a{left:103.980900px;}
.x6{left:105.029250px;}
.x4{left:106.365600px;}
.x41{left:108.931950px;}
.x42{left:126.931950px;}
.xc{left:131.663550px;}
.x45{left:140.357100px;}
.x44{left:143.432100px;}
.x43{left:145.097100px;}
.xd{left:149.663550px;}
.x10{left:163.088550px;}
.xf{left:166.163550px;}
.xe{left:167.828550px;}
.x60{left:181.828500px;}
.x5c{left:183.973500px;}
.x3f{left:207.991950px;}
.x7{left:212.663850px;}
.x40{left:216.991950px;}
.x3{left:230.624400px;}
.x2{left:233.345250px;}
.xb{left:239.723550px;}
.x5d{left:262.363500px;}
.x5e{left:263.728500px;}
.x48{left:334.821900px;}
.x64{left:348.283500px;}
.x49{left:356.121900px;}
.x13{left:357.553350px;}
.x46{left:359.181900px;}
.x11{left:371.263350px;}
.x47{left:377.181900px;}
.x14{left:378.853350px;}
.x12{left:389.263350px;}
.x4a{left:398.721900px;}
.x15{left:400.153350px;}
.x63{left:403.393500px;}
.x61{left:404.743500px;}
.x4d{left:420.021900px;}
.x18{left:421.453350px;}
.x4b{left:433.731900px;}
.x16{left:435.163350px;}
.x4e{left:441.321900px;}
.x19{left:442.753350px;}
.x4c{left:451.731900px;}
.x17{left:453.163350px;}
.x4f{left:462.621900px;}
.x1a{left:464.053350px;}
.x52{left:483.921900px;}
.x50{left:497.631900px;}
.x53{left:505.221900px;}
.x51{left:515.631900px;}
.x54{left:526.521900px;}
.x65{left:534.688500px;}
.x66{left:536.218500px;}
.x62{left:544.318500px;}
.x5f{left:546.118500px;}
.x1b{left:548.549700px;}
.x55{left:550.881900px;}
.x1c{left:568.798200px;}
.x1d{left:586.051200px;}
.x57{left:590.421900px;}
.x1e{left:603.304200px;}
.x58{left:611.721900px;}
.x1f{left:620.557200px;}
.x56{left:622.131900px;}
.x59{left:633.021900px;}
.x20{left:637.810200px;}
.x23{left:831.766650px;}
.x24{left:849.766650px;}
.x27{left:863.191650px;}
.x26{left:866.266650px;}
.x25{left:867.931650px;}
.x21{left:930.826650px;}
.x22{left:939.826650px;}
.x2a{left:1057.656450px;}
.x2b{left:1078.956450px;}
.x28{left:1082.016450px;}
.x29{left:1100.016450px;}
.x2c{left:1121.556450px;}
.x2f{left:1142.856450px;}
.x2d{left:1156.566450px;}
.x30{left:1164.156450px;}
.x2e{left:1174.566450px;}
.x31{left:1185.456450px;}
.x34{left:1206.756450px;}
.x32{left:1220.466450px;}
.x35{left:1228.056450px;}
.x33{left:1238.466450px;}
.x36{left:1249.356450px;}
.x39{left:1270.656450px;}
.x37{left:1273.716450px;}
.x38{left:1291.716450px;}
.x3c{left:1313.256450px;}
.x3a{left:1326.966450px;}
.x3d{left:1334.556450px;}
.x3b{left:1344.966450px;}
.x3e{left:1355.856450px;}
@media print{
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.403733pt;}
.v3{vertical-align:15.149867pt;}
.v1{vertical-align:19.601600pt;}
.v5{vertical-align:32.000000pt;}
.ls10{letter-spacing:-6.552000pt;}
.ls8{letter-spacing:-4.106667pt;}
.ls23{letter-spacing:-2.808000pt;}
.ls4b{letter-spacing:-2.576000pt;}
.ls28{letter-spacing:-2.208000pt;}
.ls3d{letter-spacing:-2.146667pt;}
.ls53{letter-spacing:-1.848000pt;}
.ls26{letter-spacing:-1.840000pt;}
.ls4a{letter-spacing:-1.778667pt;}
.ls37{letter-spacing:-1.717333pt;}
.ls3c{letter-spacing:-1.656000pt;}
.ls27{letter-spacing:-1.594667pt;}
.ls3b{letter-spacing:-1.349333pt;}
.ls39{letter-spacing:-1.288000pt;}
.ls48{letter-spacing:-0.981333pt;}
.ls47{letter-spacing:-0.920000pt;}
.ls12{letter-spacing:-0.858667pt;}
.ls24{letter-spacing:-0.797333pt;}
.lsf{letter-spacing:-0.760000pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls1a{letter-spacing:-0.613333pt;}
.ls4e{letter-spacing:-0.557333pt;}
.ls32{letter-spacing:-0.533333pt;}
.ls38{letter-spacing:-0.490667pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.306667pt;}
.ls3a{letter-spacing:-0.245333pt;}
.ls4{letter-spacing:-0.168000pt;}
.ls4f{letter-spacing:-0.152000pt;}
.ls50{letter-spacing:-0.072000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000267pt;}
.ls42{letter-spacing:0.061333pt;}
.ls9{letter-spacing:0.174123pt;}
.ls46{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.696491pt;}
.ls16{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.104000pt;}
.ls6{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.175328pt;}
.ls51{letter-spacing:1.349333pt;}
.ls0{letter-spacing:1.499200pt;}
.ls4c{letter-spacing:1.901333pt;}
.ls40{letter-spacing:1.950400pt;}
.ls11{letter-spacing:2.133333pt;}
.ls44{letter-spacing:2.220267pt;}
.ls43{letter-spacing:2.238667pt;}
.ls21{letter-spacing:2.269333pt;}
.ls45{letter-spacing:2.600533pt;}
.ls15{letter-spacing:2.866667pt;}
.ls52{letter-spacing:3.250667pt;}
.lsd{letter-spacing:3.733333pt;}
.ls1d{letter-spacing:3.943733pt;}
.ls33{letter-spacing:4.225867pt;}
.ls34{letter-spacing:4.299467pt;}
.ls18{letter-spacing:4.733333pt;}
.ls1c{letter-spacing:4.814667pt;}
.lsc{letter-spacing:5.120000pt;}
.ls19{letter-spacing:5.213333pt;}
.lse{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.466667pt;}
.ls3{letter-spacing:5.600000pt;}
.ls49{letter-spacing:5.642667pt;}
.ls3e{letter-spacing:5.704000pt;}
.ls35{letter-spacing:5.716267pt;}
.ls4d{letter-spacing:6.066667pt;}
.ls13{letter-spacing:6.133333pt;}
.ls1f{letter-spacing:6.624000pt;}
.ls36{letter-spacing:7.066667pt;}
.ls17{letter-spacing:7.253472pt;}
.ls22{letter-spacing:7.254005pt;}
.ls5{letter-spacing:7.466667pt;}
.ls41{letter-spacing:8.402667pt;}
.ls3f{letter-spacing:9.200000pt;}
.ls54{letter-spacing:9.576000pt;}
.ls20{letter-spacing:10.365333pt;}
.ls1e{letter-spacing:12.144000pt;}
.ls2d{letter-spacing:94.613333pt;}
.ls2c{letter-spacing:96.053333pt;}
.ls30{letter-spacing:103.306667pt;}
.ls29{letter-spacing:110.400000pt;}
.ls2a{letter-spacing:114.240000pt;}
.ls2e{letter-spacing:118.133333pt;}
.ls2f{letter-spacing:119.146667pt;}
.ls2b{letter-spacing:125.280000pt;}
.ws31{word-spacing:-129.226667pt;}
.ws41{word-spacing:-25.800000pt;}
.ws59{word-spacing:-24.800000pt;}
.ws0{word-spacing:-24.200000pt;}
.ws1a{word-spacing:-23.466667pt;}
.ws15{word-spacing:-21.600000pt;}
.ws67{word-spacing:-20.320000pt;}
.wsd{word-spacing:-20.213333pt;}
.ws5b{word-spacing:-20.160000pt;}
.ws6{word-spacing:-20.106667pt;}
.ws21{word-spacing:-17.424000pt;}
.ws25{word-spacing:-17.234667pt;}
.ws2{word-spacing:-16.874667pt;}
.ws4c{word-spacing:-16.314667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws64{word-spacing:-15.736000pt;}
.ws1b{word-spacing:-15.149333pt;}
.ws2a{word-spacing:-14.986667pt;}
.ws43{word-spacing:-14.904000pt;}
.ws23{word-spacing:-14.842667pt;}
.ws69{word-spacing:-14.666667pt;}
.ws44{word-spacing:-14.658667pt;}
.ws1c{word-spacing:-14.536000pt;}
.ws6a{word-spacing:-14.506667pt;}
.ws22{word-spacing:-14.352000pt;}
.ws13{word-spacing:-14.290667pt;}
.ws29{word-spacing:-14.224000pt;}
.ws4e{word-spacing:-14.168000pt;}
.ws42{word-spacing:-13.861333pt;}
.ws63{word-spacing:-13.832000pt;}
.ws50{word-spacing:-13.800000pt;}
.wsf{word-spacing:-13.680000pt;}
.ws46{word-spacing:-13.493333pt;}
.ws4{word-spacing:-13.407445pt;}
.ws51{word-spacing:-13.370667pt;}
.ws24{word-spacing:-13.309333pt;}
.ws2d{word-spacing:-13.173333pt;}
.ws4d{word-spacing:-13.002667pt;}
.ws45{word-spacing:-12.941333pt;}
.ws5{word-spacing:-12.928608pt;}
.ws2e{word-spacing:-12.640000pt;}
.ws2c{word-spacing:-12.426667pt;}
.ws3{word-spacing:-12.406240pt;}
.ws65{word-spacing:-11.984000pt;}
.ws52{word-spacing:-11.856000pt;}
.ws10{word-spacing:-10.047811pt;}
.ws4f{word-spacing:-8.832061pt;}
.wse{word-spacing:-8.737227pt;}
.ws9{word-spacing:-7.466667pt;}
.ws16{word-spacing:-6.133333pt;}
.ws55{word-spacing:-5.642667pt;}
.ws66{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.333333pt;}
.ws1d{word-spacing:-5.213333pt;}
.ws11{word-spacing:-3.733333pt;}
.ws61{word-spacing:-3.250667pt;}
.ws14{word-spacing:-2.133333pt;}
.ws56{word-spacing:-1.901333pt;}
.ws47{word-spacing:-1.717333pt;}
.ws5e{word-spacing:-1.472000pt;}
.ws60{word-spacing:-1.349333pt;}
.ws5f{word-spacing:-1.288000pt;}
.wsa{word-spacing:-1.120000pt;}
.ws26{word-spacing:-1.104000pt;}
.ws17{word-spacing:-0.981333pt;}
.wsb{word-spacing:0.000000pt;}
.ws20{word-spacing:0.061333pt;}
.ws5c{word-spacing:0.152000pt;}
.ws8{word-spacing:0.168000pt;}
.ws62{word-spacing:0.368000pt;}
.ws49{word-spacing:0.490667pt;}
.ws5a{word-spacing:0.557333pt;}
.ws12{word-spacing:0.760000pt;}
.ws19{word-spacing:0.981333pt;}
.ws18{word-spacing:1.165333pt;}
.ws5d{word-spacing:1.288000pt;}
.ws4a{word-spacing:1.349333pt;}
.ws27{word-spacing:1.594667pt;}
.ws48{word-spacing:1.717333pt;}
.ws57{word-spacing:1.901333pt;}
.ws53{word-spacing:2.024000pt;}
.ws4b{word-spacing:2.146667pt;}
.ws28{word-spacing:2.208000pt;}
.ws54{word-spacing:2.576000pt;}
.wsc{word-spacing:4.106667pt;}
.ws1e{word-spacing:4.354667pt;}
.ws1f{word-spacing:4.968000pt;}
.ws58{word-spacing:10.304000pt;}
.ws3c{word-spacing:53.173333pt;}
.ws40{word-spacing:53.653333pt;}
.ws35{word-spacing:62.293333pt;}
.ws37{word-spacing:63.733333pt;}
.ws33{word-spacing:69.493333pt;}
.ws3e{word-spacing:70.933333pt;}
.ws36{word-spacing:73.226667pt;}
.ws38{word-spacing:77.173333pt;}
.ws3b{word-spacing:81.066667pt;}
.ws32{word-spacing:81.866667pt;}
.ws34{word-spacing:84.533333pt;}
.ws3d{word-spacing:85.813333pt;}
.ws2f{word-spacing:89.013333pt;}
.ws30{word-spacing:89.066667pt;}
.ws3a{word-spacing:93.013333pt;}
.ws39{word-spacing:104.160000pt;}
.ws3f{word-spacing:108.106667pt;}
.ws68{word-spacing:389.493333pt;}
.ws2b{word-spacing:564.000000pt;}
._33{margin-left:-114.081067pt;}
._2c{margin-left:-20.372267pt;}
._3e{margin-left:-19.107200pt;}
._29{margin-left:-18.186667pt;}
._36{margin-left:-11.366933pt;}
._16{margin-left:-8.541600pt;}
._15{margin-left:-7.409067pt;}
._1b{margin-left:-5.912533pt;}
._a{margin-left:-4.825867pt;}
._7{margin-left:-3.746400pt;}
._5{margin-left:-2.189600pt;}
._3{margin-left:-1.149333pt;}
._0{width:1.433067pt;}
._4{width:2.419733pt;}
._8{width:3.467733pt;}
._6{width:4.911467pt;}
._2{width:6.060267pt;}
._9{width:7.440000pt;}
._b{width:9.210667pt;}
._18{width:10.200533pt;}
._20{width:11.106667pt;}
._f{width:12.078400pt;}
._13{width:13.505867pt;}
._17{width:14.808000pt;}
._43{width:15.861867pt;}
._44{width:17.349600pt;}
._12{width:18.645333pt;}
._4a{width:20.101867pt;}
._1d{width:20.999568pt;}
._11{width:21.976000pt;}
._1f{width:23.303467pt;}
._21{width:24.625920pt;}
._49{width:25.942667pt;}
._4b{width:29.960533pt;}
._46{width:35.270133pt;}
._14{width:38.617920pt;}
._45{width:40.432000pt;}
._47{width:47.013333pt;}
._48{width:53.373600pt;}
._51{width:54.513600pt;}
._23{width:66.360533pt;}
._2b{width:69.441067pt;}
._e{width:76.048000pt;}
._3f{width:76.945067pt;}
._2a{width:78.720000pt;}
._28{width:88.213333pt;}
._2e{width:90.086933pt;}
._3b{width:91.366933pt;}
._32{width:92.527467pt;}
._3c{width:95.306667pt;}
._3a{width:96.853333pt;}
._31{width:100.006933pt;}
._25{width:101.385600pt;}
._2d{width:104.053333pt;}
._3d{width:107.560533pt;}
._40{width:108.891733pt;}
._27{width:111.200000pt;}
._35{width:112.220267pt;}
._39{width:114.240000pt;}
._2f{width:118.507733pt;}
._37{width:119.892267pt;}
._30{width:123.093333pt;}
._26{width:126.673600pt;}
._4e{width:132.547200pt;}
._34{width:141.553600pt;}
._38{width:148.373333pt;}
._24{width:149.760000pt;}
._4d{width:199.260267pt;}
._10{width:231.653333pt;}
._4c{width:242.826667pt;}
._4f{width:271.336000pt;}
._50{width:287.849867pt;}
._52{width:309.233600pt;}
._55{width:351.260267pt;}
._56{width:352.753600pt;}
._41{width:397.746667pt;}
._42{width:399.320000pt;}
._1{width:401.120000pt;}
._1e{width:402.320000pt;}
._1a{width:404.452267pt;}
._53{width:432.002933pt;}
._54{width:439.789600pt;}
._c{width:514.133333pt;}
._19{width:850.377600pt;}
._1c{width:852.710933pt;}
._22{width:856.310933pt;}
._d{width:858.070933pt;}
._57{width:866.300267pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fse{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1a3{bottom:84.596133pt;}
.y1c8{bottom:91.490133pt;}
.y1e{bottom:94.406667pt;}
.y215{bottom:94.461067pt;}
.y98{bottom:94.480400pt;}
.y42{bottom:94.483067pt;}
.y69{bottom:94.485733pt;}
.y128{bottom:94.488133pt;}
.y256{bottom:94.490933pt;}
.y1f4{bottom:94.575600pt;}
.y236{bottom:94.705867pt;}
.yde{bottom:97.151067pt;}
.y13e{bottom:97.906933pt;}
.y103{bottom:98.303467pt;}
.y12e{bottom:98.320267pt;}
.y123{bottom:98.356800pt;}
.y134{bottom:98.480267pt;}
.y139{bottom:98.573600pt;}
.y142{bottom:98.666933pt;}
.y12f{bottom:98.680267pt;}
.y11f{bottom:98.690133pt;}
.y124{bottom:98.743467pt;}
.y135{bottom:98.866933pt;}
.y13a{bottom:98.960267pt;}
.y13f{bottom:99.000267pt;}
.y143{bottom:99.026933pt;}
.y1a2{bottom:99.932133pt;}
.y73{bottom:100.397200pt;}
.y1c7{bottom:106.826133pt;}
.y97{bottom:109.816400pt;}
.y41{bottom:109.819067pt;}
.y12c{bottom:109.977867pt;}
.y255{bottom:111.917600pt;}
.y12b{bottom:112.077867pt;}
.y68{bottom:112.484400pt;}
.y12a{bottom:112.713867pt;}
.y214{bottom:112.801067pt;}
.y1d{bottom:112.900000pt;}
.y1f3{bottom:113.190267pt;}
.y235{bottom:113.199867pt;}
.y102{bottom:113.588667pt;}
.ydd{bottom:113.598667pt;}
.y129{bottom:113.637867pt;}
.y12d{bottom:113.649867pt;}
.y1a1{bottom:115.268133pt;}
.y72{bottom:118.398533pt;}
.y1c6{bottom:122.162133pt;}
.y96{bottom:125.152400pt;}
.y40{bottom:127.817733pt;}
.y67{bottom:128.924000pt;}
.ybc{bottom:128.932000pt;}
.y254{bottom:129.344267pt;}
.y1a0{bottom:130.604133pt;}
.y213{bottom:131.141067pt;}
.y1c{bottom:131.393333pt;}
.ydc{bottom:131.597333pt;}
.y1f2{bottom:131.804933pt;}
.y294{bottom:134.919600pt;}
.y101{bottom:136.263867pt;}
.y18b{bottom:136.266000pt;}
.y71{bottom:136.399867pt;}
.y1d1{bottom:136.401200pt;}
.y234{bottom:139.253867pt;}
.y1c5{bottom:140.160800pt;}
.y95{bottom:143.151067pt;}
.y66{bottom:144.260000pt;}
.y253{bottom:146.771867pt;}
.ybb{bottom:146.930667pt;}
.y19f{bottom:148.602800pt;}
.y1b{bottom:149.886667pt;}
.y1f1{bottom:150.419600pt;}
.y293{bottom:150.919600pt;}
.y169{bottom:151.610133pt;}
.y2b4{bottom:152.946267pt;}
.y70{bottom:154.401200pt;}
.y100{bottom:155.154533pt;}
.y18a{bottom:155.862000pt;}
.y1c4{bottom:156.603200pt;}
.y212{bottom:157.041067pt;}
.y233{bottom:157.747867pt;}
.y65{bottom:159.596000pt;}
.yba{bottom:163.378400pt;}
.y252{bottom:164.199333pt;}
.y292{bottom:166.919600pt;}
.y3f{bottom:166.937600pt;}
.y1a{bottom:168.380000pt;}
.y1f0{bottom:169.034267pt;}
.y168{bottom:169.688133pt;}
.ydb{bottom:170.716667pt;}
.y2b3{bottom:170.946267pt;}
.y1c3{bottom:171.939200pt;}
.yff{bottom:174.045200pt;}
.y64{bottom:174.932000pt;}
.y211{bottom:175.381067pt;}
.y189{bottom:175.458000pt;}
.yb9{bottom:181.377067pt;}
.y251{bottom:181.628800pt;}
.y94{bottom:182.137067pt;}
.y291{bottom:182.919600pt;}
.y232{bottom:183.801867pt;}
.y3e{bottom:185.399467pt;}
.y19{bottom:186.873333pt;}
.y1c2{bottom:187.275200pt;}
.y1ef{bottom:187.648933pt;}
.y19e{bottom:187.716800pt;}
.y167{bottom:187.766133pt;}
.y2b2{bottom:188.946267pt;}
.y6f{bottom:190.401200pt;}
.yda{bottom:191.094667pt;}
.yfe{bottom:192.877867pt;}
.y63{bottom:192.930667pt;}
.y188{bottom:195.049733pt;}
.y127{bottom:195.543467pt;}
.y133{bottom:195.560267pt;}
.y138{bottom:195.653600pt;}
.y126{bottom:196.170133pt;}
.y132{bottom:196.186933pt;}
.y137{bottom:196.280267pt;}
.yb8{bottom:197.824667pt;}
.y104{bottom:197.876800pt;}
.y290{bottom:198.919600pt;}
.y250{bottom:199.055467pt;}
.y93{bottom:200.935733pt;}
.y210{bottom:201.281067pt;}
.y121{bottom:202.130133pt;}
.y131{bottom:202.146933pt;}
.y122{bottom:202.223467pt;}
.y231{bottom:202.295867pt;}
.y13c{bottom:202.386933pt;}
.y141{bottom:202.426933pt;}
.y13d{bottom:202.480267pt;}
.y145{bottom:202.560267pt;}
.y3d{bottom:203.876133pt;}
.y1c1{bottom:205.273867pt;}
.y18{bottom:205.366667pt;}
.y19d{bottom:205.718133pt;}
.y166{bottom:205.840533pt;}
.y1ee{bottom:206.263600pt;}
.y2b1{bottom:206.946267pt;}
.y6e{bottom:208.401200pt;}
.y120{bottom:209.196800pt;}
.y125{bottom:209.250133pt;}
.y130{bottom:209.253600pt;}
.y13b{bottom:209.266933pt;}
.y140{bottom:209.346933pt;}
.y144{bottom:209.413600pt;}
.y136{bottom:209.706933pt;}
.yd9{bottom:211.472667pt;}
.yfd{bottom:211.768533pt;}
.y187{bottom:214.641600pt;}
.yb7{bottom:215.823333pt;}
.y24f{bottom:216.482133pt;}
.y28f{bottom:219.119600pt;}
.y20f{bottom:219.621067pt;}
.y92{bottom:219.734400pt;}
.y3c{bottom:222.352800pt;}
.y19c{bottom:223.719467pt;}
.y17{bottom:223.860000pt;}
.y165{bottom:223.918533pt;}
.y1ed{bottom:224.878267pt;}
.y6d{bottom:226.401200pt;}
.y230{bottom:228.349867pt;}
.yfc{bottom:230.659200pt;}
.yd8{bottom:231.850667pt;}
.y62{bottom:232.026933pt;}
.y24e{bottom:233.911467pt;}
.y186{bottom:234.225200pt;}
.y28e{bottom:235.119600pt;}
.y2b0{bottom:236.279600pt;}
.y20e{bottom:237.961067pt;}
.y91{bottom:238.533067pt;}
.y19b{bottom:241.720800pt;}
.y164{bottom:241.996533pt;}
.y16{bottom:242.353333pt;}
.y1ec{bottom:243.492933pt;}
.y1c0{bottom:244.390533pt;}
.y6c{bottom:244.401200pt;}
.y22f{bottom:246.843867pt;}
.yfb{bottom:249.549867pt;}
.y61{bottom:250.426933pt;}
.y28d{bottom:251.119600pt;}
.y24d{bottom:251.338133pt;}
.yd7{bottom:252.228667pt;}
.y185{bottom:253.821200pt;}
.yb6{bottom:254.982667pt;}
.y20d{bottom:256.301067pt;}
.y90{bottom:257.331733pt;}
.y3b{bottom:259.719733pt;}
.y19a{bottom:259.722133pt;}
.y163{bottom:260.074533pt;}
.y15{bottom:260.846667pt;}
.y1eb{bottom:262.107600pt;}
.y1bf{bottom:262.391867pt;}
.y22e{bottom:265.337867pt;}
.yfa{bottom:268.440533pt;}
.y24c{bottom:268.764800pt;}
.y60{bottom:268.826933pt;}
.y28c{bottom:271.319600pt;}
.yd6{bottom:272.606667pt;}
.yb5{bottom:273.229333pt;}
.y184{bottom:273.417200pt;}
.y20c{bottom:274.641067pt;}
.y8f{bottom:276.130400pt;}
.y199{bottom:277.723467pt;}
.y162{bottom:278.152533pt;}
.y14{bottom:279.340000pt;}
.y1be{bottom:280.393200pt;}
.y1ea{bottom:280.722267pt;}
.y22d{bottom:283.831867pt;}
.y24b{bottom:286.209333pt;}
.y5f{bottom:287.226933pt;}
.y28b{bottom:287.319600pt;}
.yf9{bottom:287.331200pt;}
.y105{bottom:289.636800pt;}
.yb4{bottom:291.476000pt;}
.yd5{bottom:292.967200pt;}
.y20b{bottom:292.981067pt;}
.y183{bottom:293.000667pt;}
.y8e{bottom:294.929067pt;}
.y198{bottom:295.724800pt;}
.y161{bottom:296.230533pt;}
.y13{bottom:297.833333pt;}
.y1bd{bottom:298.394533pt;}
.y1e9{bottom:299.336933pt;}
.y109{bottom:299.637733pt;}
.y106{bottom:300.516800pt;}
.y22c{bottom:302.325867pt;}
.y28a{bottom:303.319600pt;}
.y24a{bottom:303.636000pt;}
.y5e{bottom:305.626933pt;}
.yf8{bottom:306.221867pt;}
.yb3{bottom:309.722667pt;}
.y2af{bottom:311.412933pt;}
.y182{bottom:312.596667pt;}
.yd4{bottom:313.345200pt;}
.y197{bottom:313.726133pt;}
.y8d{bottom:313.727733pt;}
.y160{bottom:314.308533pt;}
.y3a{bottom:315.540667pt;}
.y12{bottom:316.326667pt;}
.y1bc{bottom:316.395867pt;}
.y1e8{bottom:317.951600pt;}
.y20a{bottom:318.881067pt;}
.y289{bottom:319.319600pt;}
.y249{bottom:321.062667pt;}
.y5d{bottom:324.026933pt;}
.yf7{bottom:325.112533pt;}
.y2ae{bottom:327.412933pt;}
.yb2{bottom:327.969333pt;}
.y22b{bottom:328.379867pt;}
.y10b{bottom:330.851067pt;}
.y196{bottom:331.727467pt;}
.y181{bottom:332.192667pt;}
.y15f{bottom:332.379333pt;}
.y8c{bottom:332.526400pt;}
.yd3{bottom:333.723200pt;}
.y1bb{bottom:334.397200pt;}
.y39{bottom:334.674000pt;}
.y11{bottom:334.820000pt;}
.y288{bottom:335.319600pt;}
.y1e7{bottom:336.566267pt;}
.y209{bottom:337.221067pt;}
.y248{bottom:338.489333pt;}
.y5c{bottom:342.426933pt;}
.yf6{bottom:344.003200pt;}
.yb1{bottom:346.216000pt;}
.y10a{bottom:346.851067pt;}
.y22a{bottom:346.873867pt;}
.y2ad{bottom:347.612933pt;}
.y195{bottom:349.728800pt;}
.y15e{bottom:350.457333pt;}
.y287{bottom:351.319600pt;}
.y8b{bottom:351.325067pt;}
.y180{bottom:351.784533pt;}
.y2ac{bottom:351.812933pt;}
.y1ba{bottom:352.398533pt;}
.y38{bottom:353.812533pt;}
.yd2{bottom:354.101200pt;}
.y1e6{bottom:355.180933pt;}
.y208{bottom:355.561067pt;}
.y247{bottom:355.916000pt;}
.y5b{bottom:360.826933pt;}
.yf5{bottom:362.893867pt;}
.yb0{bottom:364.462667pt;}
.y10{bottom:364.646667pt;}
.y229{bottom:365.367867pt;}
.y194{bottom:367.730133pt;}
.y2ab{bottom:367.812933pt;}
.y107{bottom:367.943467pt;}
.y15d{bottom:368.535333pt;}
.y8a{bottom:370.123733pt;}
.y1b9{bottom:370.399867pt;}
.y17f{bottom:371.347333pt;}
.y286{bottom:371.519600pt;}
.y37{bottom:371.617600pt;}
.y246{bottom:373.342667pt;}
.y1e5{bottom:373.795600pt;}
.yd1{bottom:374.479200pt;}
.y108{bottom:377.156800pt;}
.y10c{bottom:378.064400pt;}
.y5a{bottom:379.226933pt;}
.y207{bottom:381.461067pt;}
.yf4{bottom:381.784533pt;}
.yaf{bottom:382.709333pt;}
.y15c{bottom:386.613333pt;}
.y285{bottom:387.519600pt;}
.y2aa{bottom:388.012933pt;}
.y1b8{bottom:388.377200pt;}
.y89{bottom:388.922400pt;}
.y36{bottom:389.417600pt;}
.y245{bottom:390.769333pt;}
.y17e{bottom:390.943333pt;}
.y228{bottom:391.421867pt;}
.y1e4{bottom:392.410267pt;}
.yd0{bottom:394.857200pt;}
.y59{bottom:397.626933pt;}
.y206{bottom:399.801067pt;}
.yf3{bottom:400.675200pt;}
.yae{bottom:400.956000pt;}
.y284{bottom:403.519600pt;}
.y193{bottom:403.730133pt;}
.y2a9{bottom:404.012933pt;}
.y15b{bottom:404.691333pt;}
.y1b7{bottom:406.378533pt;}
.y35{bottom:407.233067pt;}
.y10e{bottom:407.504400pt;}
.y88{bottom:407.721067pt;}
.y244{bottom:408.196000pt;}
.y227{bottom:409.915867pt;}
.y17d{bottom:410.539333pt;}
.y1e3{bottom:411.024933pt;}
.ycf{bottom:415.235200pt;}
.y58{bottom:416.026933pt;}
.yf{bottom:417.140533pt;}
.yad{bottom:419.202667pt;}
.y283{bottom:419.519600pt;}
.yf2{bottom:419.536933pt;}
.y15a{bottom:422.769333pt;}
.y10d{bottom:423.504400pt;}
.y2a8{bottom:424.212933pt;}
.y1b6{bottom:424.379867pt;}
.y1d0{bottom:424.393200pt;}
.y34{bottom:425.033067pt;}
.y243{bottom:425.622667pt;}
.y205{bottom:425.701067pt;}
.y87{bottom:426.519733pt;}
.y226{bottom:428.409867pt;}
.y2a7{bottom:428.412933pt;}
.y1e2{bottom:429.639600pt;}
.y17c{bottom:430.135333pt;}
.y57{bottom:434.426933pt;}
.y282{bottom:435.519600pt;}
.yce{bottom:435.613200pt;}
.yac{bottom:437.449333pt;}
.yf1{bottom:438.427600pt;}
.y26b{bottom:439.731333pt;}
.y159{bottom:440.847333pt;}
.ye{bottom:442.285467pt;}
.y1b5{bottom:442.381200pt;}
.y1cf{bottom:442.394533pt;}
.y33{bottom:442.833067pt;}
.y242{bottom:443.049333pt;}
.y204{bottom:444.041067pt;}
.y2a6{bottom:444.412933pt;}
.y86{bottom:445.318400pt;}
.y1e1{bottom:448.254267pt;}
.y17b{bottom:449.731333pt;}
.y281{bottom:451.519600pt;}
.y56{bottom:452.826933pt;}
.y10f{bottom:452.944400pt;}
.y225{bottom:454.463867pt;}
.yab{bottom:455.696000pt;}
.ycd{bottom:455.991200pt;}
.y26a{bottom:457.064667pt;}
.yf0{bottom:457.318267pt;}
.y158{bottom:458.925333pt;}
.y1b4{bottom:460.382533pt;}
.y1ce{bottom:460.395867pt;}
.y241{bottom:460.476000pt;}
.y32{bottom:460.633067pt;}
.y85{bottom:464.117067pt;}
.y2a5{bottom:464.612933pt;}
.y1e0{bottom:466.868933pt;}
.yd{bottom:467.448133pt;}
.y17a{bottom:469.327333pt;}
.y203{bottom:469.941067pt;}
.y55{bottom:471.226933pt;}
.y280{bottom:471.719600pt;}
.y224{bottom:472.957867pt;}
.yaa{bottom:473.942667pt;}
.y269{bottom:474.398000pt;}
.yef{bottom:476.208933pt;}
.ycc{bottom:476.369200pt;}
.y157{bottom:477.003333pt;}
.y240{bottom:477.902667pt;}
.y1b3{bottom:478.383867pt;}
.y1cd{bottom:478.397200pt;}
.y31{bottom:478.433067pt;}
.y2a4{bottom:480.612933pt;}
.y111{bottom:482.384400pt;}
.y84{bottom:482.915733pt;}
.y27f{bottom:487.719600pt;}
.y202{bottom:488.281067pt;}
.y179{bottom:488.923333pt;}
.y54{bottom:489.626933pt;}
.y223{bottom:491.451867pt;}
.y268{bottom:491.731333pt;}
.ya9{bottom:492.189333pt;}
.yc{bottom:492.610800pt;}
.y156{bottom:495.081333pt;}
.yee{bottom:495.099600pt;}
.y23f{bottom:495.329333pt;}
.y30{bottom:496.233067pt;}
.y1b2{bottom:496.385200pt;}
.y1cc{bottom:496.398533pt;}
.ycb{bottom:496.747200pt;}
.y110{bottom:498.384400pt;}
.y2a3{bottom:500.812933pt;}
.y83{bottom:501.714400pt;}
.y27e{bottom:503.719600pt;}
.y1df{bottom:504.385600pt;}
.y53{bottom:508.026933pt;}
.y178{bottom:508.519333pt;}
.y267{bottom:509.064667pt;}
.ya8{bottom:510.436000pt;}
.y23e{bottom:512.756000pt;}
.y155{bottom:513.159333pt;}
.yed{bottom:513.990267pt;}
.y2f{bottom:514.043467pt;}
.y201{bottom:514.181067pt;}
.y1b1{bottom:514.386533pt;}
.y1cb{bottom:514.399867pt;}
.y2a2{bottom:516.812933pt;}
.yca{bottom:517.125200pt;}
.y222{bottom:517.505867pt;}
.y27d{bottom:519.719600pt;}
.y113{bottom:519.824400pt;}
.y82{bottom:520.513067pt;}
.y266{bottom:526.398000pt;}
.y52{bottom:526.426933pt;}
.y177{bottom:528.086267pt;}
.ya7{bottom:528.682667pt;}
.y154{bottom:531.237333pt;}
.y2e{bottom:531.843467pt;}
.y1b0{bottom:532.387867pt;}
.y1ca{bottom:532.401200pt;}
.y200{bottom:532.521067pt;}
.yec{bottom:532.827867pt;}
.y27c{bottom:535.719600pt;}
.y112{bottom:535.824400pt;}
.y221{bottom:535.999867pt;}
.yb{bottom:536.637467pt;}
.y2a1{bottom:537.012933pt;}
.yc9{bottom:537.503200pt;}
.y81{bottom:539.311733pt;}
.y23d{bottom:541.516000pt;}
.y265{bottom:543.731333pt;}
.y51{bottom:544.812267pt;}
.ya6{bottom:546.929333pt;}
.y176{bottom:547.682267pt;}
.y153{bottom:549.315333pt;}
.y2d{bottom:549.643467pt;}
.y1af{bottom:550.389200pt;}
.yeb{bottom:551.718533pt;}
.y27b{bottom:551.719600pt;}
.y2a0{bottom:553.012933pt;}
.y115{bottom:557.264400pt;}
.yc8{bottom:557.865200pt;}
.y80{bottom:558.018533pt;}
.y1ff{bottom:558.421067pt;}
.y1de{bottom:560.410533pt;}
.y264{bottom:561.064667pt;}
.y220{bottom:562.053867pt;}
.y50{bottom:563.212267pt;}
.ya5{bottom:565.176000pt;}
.ya{bottom:565.797467pt;}
.y175{bottom:567.278267pt;}
.y152{bottom:567.393333pt;}
.y2c{bottom:567.443467pt;}
.y1ae{bottom:568.390533pt;}
.y1c9{bottom:568.401200pt;}
.yea{bottom:570.609200pt;}
.y29f{bottom:573.212933pt;}
.y114{bottom:573.264400pt;}
.y27a{bottom:574.012933pt;}
.y1fe{bottom:576.761067pt;}
.y7f{bottom:576.817200pt;}
.yc7{bottom:578.243200pt;}
.y263{bottom:578.398000pt;}
.y1dd{bottom:579.025200pt;}
.y21f{bottom:580.547867pt;}
.y4f{bottom:581.612267pt;}
.ya4{bottom:583.422667pt;}
.y2b{bottom:585.246000pt;}
.y151{bottom:585.470933pt;}
.y1ad{bottom:586.391867pt;}
.y174{bottom:586.874267pt;}
.y29e{bottom:589.212933pt;}
.ye9{bottom:589.499867pt;}
.y279{bottom:590.012933pt;}
.y23c{bottom:592.954800pt;}
.y117{bottom:594.704400pt;}
.y9{bottom:594.957467pt;}
.y7e{bottom:595.615867pt;}
.y262{bottom:595.731333pt;}
.y1dc{bottom:597.639867pt;}
.yc6{bottom:598.621200pt;}
.y4e{bottom:600.012267pt;}
.ya3{bottom:601.672667pt;}
.y1fd{bottom:602.661067pt;}
.y2a{bottom:603.048667pt;}
.y150{bottom:603.543200pt;}
.y1ac{bottom:604.393200pt;}
.y278{bottom:606.012933pt;}
.y173{bottom:606.470267pt;}
.y21e{bottom:606.601867pt;}
.ye8{bottom:608.390533pt;}
.y29d{bottom:609.412933pt;}
.y116{bottom:610.704400pt;}
.y261{bottom:613.064667pt;}
.y7d{bottom:614.414533pt;}
.y1db{bottom:616.254533pt;}
.y23b{bottom:617.044667pt;}
.y4d{bottom:618.412267pt;}
.yc5{bottom:618.999200pt;}
.ya2{bottom:619.919333pt;}
.y29{bottom:620.853867pt;}
.y1fc{bottom:621.001067pt;}
.y14f{bottom:621.621200pt;}
.y277{bottom:622.012933pt;}
.y1ab{bottom:622.394533pt;}
.y8{bottom:624.117467pt;}
.y21d{bottom:625.095867pt;}
.y29c{bottom:625.412933pt;}
.y172{bottom:626.066267pt;}
.ye7{bottom:627.281200pt;}
.y260{bottom:630.398000pt;}
.y7c{bottom:633.213200pt;}
.y1da{bottom:634.869200pt;}
.y4c{bottom:636.812267pt;}
.y276{bottom:638.012933pt;}
.ya1{bottom:638.167733pt;}
.y28{bottom:638.653867pt;}
.y1fb{bottom:639.341067pt;}
.yc4{bottom:639.377200pt;}
.y14e{bottom:639.699200pt;}
.y118{bottom:640.144400pt;}
.y1aa{bottom:640.395867pt;}
.y23a{bottom:641.143333pt;}
.y29b{bottom:645.612933pt;}
.y171{bottom:645.662267pt;}
.ye6{bottom:646.171867pt;}
.y25f{bottom:647.731333pt;}
.y21c{bottom:651.149867pt;}
.y7b{bottom:652.011867pt;}
.y7{bottom:653.277467pt;}
.y1d9{bottom:653.483867pt;}
.y275{bottom:654.012933pt;}
.y4b{bottom:655.212267pt;}
.y192{bottom:655.728800pt;}
.ya0{bottom:656.427867pt;}
.y27{bottom:656.459467pt;}
.y1fa{bottom:657.681067pt;}
.y14d{bottom:657.777200pt;}
.y1a9{bottom:658.397200pt;}
.yc3{bottom:659.755200pt;}
.y29a{bottom:661.612933pt;}
.ye5{bottom:665.062533pt;}
.y25e{bottom:665.064667pt;}
.y170{bottom:665.237467pt;}
.y239{bottom:665.242000pt;}
.y11a{bottom:669.584400pt;}
.y21b{bottom:669.643867pt;}
.y7a{bottom:670.810533pt;}
.y1d8{bottom:672.098533pt;}
.y4a{bottom:673.612267pt;}
.y191{bottom:673.723467pt;}
.y274{bottom:674.212933pt;}
.y26{bottom:674.259467pt;}
.y9f{bottom:674.674533pt;}
.y14c{bottom:675.855200pt;}
.y1a8{bottom:676.398533pt;}
.yc2{bottom:680.133200pt;}
.y299{bottom:681.812933pt;}
.y25d{bottom:682.398000pt;}
.y1f9{bottom:683.581067pt;}
.ye4{bottom:683.953200pt;}
.y16f{bottom:684.833467pt;}
.y119{bottom:685.584400pt;}
.y79{bottom:689.609200pt;}
.y273{bottom:690.212933pt;}
.y1d7{bottom:690.713200pt;}
.y190{bottom:691.724800pt;}
.y49{bottom:692.001200pt;}
.y9e{bottom:692.921200pt;}
.y14b{bottom:693.933200pt;}
.y1a7{bottom:694.399867pt;}
.y21a{bottom:695.697867pt;}
.y298{bottom:697.812933pt;}
.y25c{bottom:699.731333pt;}
.yc1{bottom:700.511200pt;}
.ye3{bottom:702.843867pt;}
.y25{bottom:703.406133pt;}
.y16e{bottom:704.429467pt;}
.y272{bottom:706.212933pt;}
.y78{bottom:708.407867pt;}
.y6{bottom:708.894133pt;}
.y1d6{bottom:709.327867pt;}
.y18f{bottom:709.726133pt;}
.y48{bottom:710.401200pt;}
.y9d{bottom:711.167867pt;}
.y14a{bottom:712.011200pt;}
.y1a6{bottom:712.394533pt;}
.y219{bottom:714.191867pt;}
.y11b{bottom:715.024400pt;}
.y25b{bottom:717.064667pt;}
.y297{bottom:718.012933pt;}
.yc0{bottom:720.889200pt;}
.ye2{bottom:721.734533pt;}
.y296{bottom:722.212933pt;}
.y16d{bottom:724.025467pt;}
.y271{bottom:726.412933pt;}
.y77{bottom:727.206533pt;}
.y18e{bottom:727.727467pt;}
.y1d5{bottom:727.942533pt;}
.y47{bottom:728.801200pt;}
.y1f8{bottom:729.046533pt;}
.y9c{bottom:729.414533pt;}
.y149{bottom:730.089200pt;}
.y1a5{bottom:730.395867pt;}
.y25a{bottom:734.398000pt;}
.y26e{bottom:734.412933pt;}
.y5{bottom:736.267467pt;}
.y295{bottom:738.212933pt;}
.y218{bottom:740.245867pt;}
.ye1{bottom:740.625200pt;}
.ybf{bottom:741.267200pt;}
.y270{bottom:742.412933pt;}
.y16c{bottom:743.621467pt;}
.y11d{bottom:744.464400pt;}
.y18d{bottom:745.728800pt;}
.y76{bottom:746.005200pt;}
.y1d4{bottom:746.557200pt;}
.y46{bottom:747.201200pt;}
.y1f7{bottom:747.385200pt;}
.y24{bottom:747.659467pt;}
.y9b{bottom:747.661200pt;}
.y148{bottom:748.167200pt;}
.y1a4{bottom:748.397200pt;}
.y26d{bottom:750.412933pt;}
.y259{bottom:751.731333pt;}
.y26f{bottom:758.412933pt;}
.y238{bottom:759.551867pt;}
.y11c{bottom:760.464400pt;}
.ybe{bottom:761.645200pt;}
.y16b{bottom:763.209200pt;}
.y4{bottom:763.640800pt;}
.y18c{bottom:763.730133pt;}
.y75{bottom:764.803867pt;}
.y1d3{bottom:765.171867pt;}
.y45{bottom:765.601200pt;}
.y1f6{bottom:765.723867pt;}
.y9a{bottom:765.907867pt;}
.y147{bottom:766.245200pt;}
.y217{bottom:766.299867pt;}
.y6b{bottom:766.398533pt;}
.y23{bottom:766.792800pt;}
.y258{bottom:769.064667pt;}
.y237{bottom:777.639867pt;}
.ye0{bottom:778.415733pt;}
.ybd{bottom:782.023200pt;}
.y16a{bottom:782.805200pt;}
.y3{bottom:783.467467pt;}
.y74{bottom:783.602533pt;}
.y1d2{bottom:783.786533pt;}
.y44{bottom:784.001200pt;}
.y1f5{bottom:784.062533pt;}
.y99{bottom:784.154533pt;}
.y146{bottom:784.323200pt;}
.y6a{bottom:784.399867pt;}
.y26c{bottom:784.625867pt;}
.y216{bottom:784.793867pt;}
.y22{bottom:785.931333pt;}
.y257{bottom:786.398000pt;}
.y11e{bottom:789.904400pt;}
.ydf{bottom:800.627733pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.he{height:31.419646pt;}
.h14{height:34.302458pt;}
.h10{height:37.395833pt;}
.h29{height:41.770833pt;}
.hf{height:42.070312pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h9{height:49.937250pt;}
.h12{height:49.947917pt;}
.h26{height:52.445312pt;}
.hb{height:53.756510pt;}
.h25{height:53.783177pt;}
.h11{height:53.800777pt;}
.hc{height:53.815710pt;}
.h13{height:54.123977pt;}
.hd{height:57.440104pt;}
.h1d{height:57.454504pt;}
.h21{height:57.456638pt;}
.h24{height:57.457171pt;}
.h1b{height:57.463037pt;}
.h1c{height:57.468904pt;}
.h1e{height:57.473171pt;}
.h23{height:57.489704pt;}
.h22{height:57.490237pt;}
.h15{height:57.504104pt;}
.h1f{height:57.523304pt;}
.h17{height:57.555837pt;}
.h20{height:57.572904pt;}
.h16{height:57.652371pt;}
.h18{height:57.672104pt;}
.h2{height:58.430990pt;}
.ha{height:63.105469pt;}
.h6{height:65.442708pt;}
.h28{height:65.460842pt;}
.h27{height:65.477908pt;}
.h8{height:65.478442pt;}
.h7{height:65.513642pt;}
.h1a{height:78.744792pt;}
.h19{height:81.947917pt;}
.h5{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.938133pt;}
.x8{left:73.313867pt;}
.x1{left:74.388133pt;}
.x5{left:75.627200pt;}
.x5b{left:83.185333pt;}
.xa{left:84.457733pt;}
.x5a{left:92.427467pt;}
.x6{left:93.359333pt;}
.x4{left:94.547200pt;}
.x41{left:96.828400pt;}
.x42{left:112.828400pt;}
.xc{left:117.034267pt;}
.x45{left:124.761867pt;}
.x44{left:127.495200pt;}
.x43{left:128.975200pt;}
.xd{left:133.034267pt;}
.x10{left:144.967600pt;}
.xf{left:147.700933pt;}
.xe{left:149.180933pt;}
.x60{left:161.625333pt;}
.x5c{left:163.532000pt;}
.x3f{left:184.881733pt;}
.x7{left:189.034533pt;}
.x40{left:192.881733pt;}
.x3{left:204.999467pt;}
.x2{left:207.418000pt;}
.xb{left:213.087600pt;}
.x5d{left:233.212000pt;}
.x5e{left:234.425333pt;}
.x48{left:297.619467pt;}
.x64{left:309.585333pt;}
.x49{left:316.552800pt;}
.x13{left:317.825200pt;}
.x46{left:319.272800pt;}
.x11{left:330.011867pt;}
.x47{left:335.272800pt;}
.x14{left:336.758533pt;}
.x12{left:346.011867pt;}
.x4a{left:354.419467pt;}
.x15{left:355.691867pt;}
.x63{left:358.572000pt;}
.x61{left:359.772000pt;}
.x4d{left:373.352800pt;}
.x18{left:374.625200pt;}
.x4b{left:385.539467pt;}
.x16{left:386.811867pt;}
.x4e{left:392.286133pt;}
.x19{left:393.558533pt;}
.x4c{left:401.539467pt;}
.x17{left:402.811867pt;}
.x4f{left:411.219467pt;}
.x1a{left:412.491867pt;}
.x52{left:430.152800pt;}
.x50{left:442.339467pt;}
.x53{left:449.086133pt;}
.x51{left:458.339467pt;}
.x54{left:468.019467pt;}
.x65{left:475.278667pt;}
.x66{left:476.638667pt;}
.x62{left:483.838667pt;}
.x5f{left:485.438667pt;}
.x1b{left:487.599733pt;}
.x55{left:489.672800pt;}
.x1c{left:505.598400pt;}
.x1d{left:520.934400pt;}
.x57{left:524.819467pt;}
.x1e{left:536.270400pt;}
.x58{left:543.752800pt;}
.x1f{left:551.606400pt;}
.x56{left:553.006133pt;}
.x59{left:562.686133pt;}
.x20{left:566.942400pt;}
.x23{left:739.348133pt;}
.x24{left:755.348133pt;}
.x27{left:767.281467pt;}
.x26{left:770.014800pt;}
.x25{left:771.494800pt;}
.x21{left:827.401467pt;}
.x22{left:835.401467pt;}
.x2a{left:940.139067pt;}
.x2b{left:959.072400pt;}
.x28{left:961.792400pt;}
.x29{left:977.792400pt;}
.x2c{left:996.939067pt;}
.x2f{left:1015.872400pt;}
.x2d{left:1028.059067pt;}
.x30{left:1034.805733pt;}
.x2e{left:1044.059067pt;}
.x31{left:1053.739067pt;}
.x34{left:1072.672400pt;}
.x32{left:1084.859067pt;}
.x35{left:1091.605733pt;}
.x33{left:1100.859067pt;}
.x36{left:1110.539067pt;}
.x39{left:1129.472400pt;}
.x37{left:1132.192400pt;}
.x38{left:1148.192400pt;}
.x3c{left:1167.339067pt;}
.x3a{left:1179.525733pt;}
.x3d{left:1186.272400pt;}
.x3b{left:1195.525733pt;}
.x3e{left:1205.205733pt;}
}




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