
    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_f155bead2f90bbae483a83fc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086914;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_de55043f3bb2181acf7155ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_69a22b6d3bd4a916c9c1caa0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_36a4bc4e4f07e208ab117f25.woff')format("woff");}.ff4{font-family:ff4;line-height:1.404297;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_bd34ea6d99462dc1d08b8f08.woff')format("woff");}.ff5{font-family:ff5;line-height:1.086914;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_31b652b7dc0a93415dbf35f4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6307a81eff32e5ba547d15e4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.086914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_28356cb1c22942a45ae90cfd.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.938000px;}
.v2{vertical-align:16.995000px;}
.lsd{letter-spacing:-7.371000px;}
.ls44{letter-spacing:-4.212000px;}
.ls42{letter-spacing:-3.519000px;}
.lsc{letter-spacing:-3.375000px;}
.ls26{letter-spacing:-3.243000px;}
.ls6{letter-spacing:-3.240000px;}
.ls20{letter-spacing:-2.898000px;}
.ls1a{letter-spacing:-2.850000px;}
.ls3e{letter-spacing:-2.553000px;}
.ls37{letter-spacing:-2.277000px;}
.ls46{letter-spacing:-1.950000px;}
.ls1f{letter-spacing:-1.932000px;}
.ls38{letter-spacing:-1.794000px;}
.lsf{letter-spacing:-1.518000px;}
.ls36{letter-spacing:-1.380000px;}
.ls55{letter-spacing:-1.320000px;}
.ls39{letter-spacing:-1.311000px;}
.ls34{letter-spacing:-1.173000px;}
.ls1b{letter-spacing:-1.035000px;}
.ls15{letter-spacing:-0.966000px;}
.ls4a{letter-spacing:-0.945000px;}
.ls56{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.897000px;}
.ls14{letter-spacing:-0.855000px;}
.ls2b{letter-spacing:-0.828000px;}
.ls35{letter-spacing:-0.759000px;}
.ls51{letter-spacing:-0.693000px;}
.ls1c{letter-spacing:-0.690000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls40{letter-spacing:-0.627000px;}
.ls25{letter-spacing:-0.621000px;}
.ls2d{letter-spacing:-0.552000px;}
.ls54{letter-spacing:-0.540000px;}
.ls4b{letter-spacing:-0.441000px;}
.ls2a{letter-spacing:-0.414000px;}
.lse{letter-spacing:-0.276000px;}
.ls49{letter-spacing:-0.252000px;}
.ls24{letter-spacing:-0.207000px;}
.ls3{letter-spacing:-0.189000px;}
.ls41{letter-spacing:-0.081000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000300px;}
.ls3d{letter-spacing:0.038400px;}
.ls21{letter-spacing:0.138000px;}
.ls2e{letter-spacing:0.207000px;}
.ls2c{letter-spacing:0.483000px;}
.ls3b{letter-spacing:0.621000px;}
.ls22{letter-spacing:0.828000px;}
.ls5{letter-spacing:1.260000px;}
.ls47{letter-spacing:1.297800px;}
.ls13{letter-spacing:1.552500px;}
.lsa{letter-spacing:2.100000px;}
.ls17{letter-spacing:2.256300px;}
.lsb{letter-spacing:2.400000px;}
.ls53{letter-spacing:3.105900px;}
.ls32{letter-spacing:3.744000px;}
.ls19{letter-spacing:4.091700px;}
.ls18{letter-spacing:4.105500px;}
.ls1{letter-spacing:4.200000px;}
.ls12{letter-spacing:4.209000px;}
.ls4f{letter-spacing:4.567500px;}
.ls50{letter-spacing:4.605300px;}
.ls3f{letter-spacing:5.544000px;}
.ls7{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.ls4{letter-spacing:6.000000px;}
.ls48{letter-spacing:6.300000px;}
.ls2f{letter-spacing:6.336000px;}
.ls33{letter-spacing:6.480000px;}
.ls28{letter-spacing:6.768000px;}
.ls29{letter-spacing:6.984000px;}
.ls31{letter-spacing:7.200000px;}
.ls4c{letter-spacing:8.820000px;}
.ls45{letter-spacing:474.174000px;}
.ls16{letter-spacing:475.314000px;}
.ls52{letter-spacing:475.629000px;}
.ls30{letter-spacing:475.719000px;}
.ls43{letter-spacing:475.726800px;}
.ls4e{letter-spacing:476.041800px;}
.ls3c{letter-spacing:476.109000px;}
.ls23{letter-spacing:477.406800px;}
.ls9{letter-spacing:478.329000px;}
.ls10{letter-spacing:952.522800px;}
.ls27{letter-spacing:953.017800px;}
.ls3a{letter-spacing:955.642800px;}
.ls0{letter-spacing:959.692800px;}
.ls1e{letter-spacing:961.672800px;}
.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;}
}
.ws0{word-spacing:-27.108000px;}
.ws1{word-spacing:-26.676000px;}
.ws47{word-spacing:-26.523000px;}
.ws32{word-spacing:-24.984000px;}
.ws29{word-spacing:-24.768000px;}
.ws27{word-spacing:-24.552000px;}
.ws31{word-spacing:-24.264000px;}
.ws2c{word-spacing:-24.120000px;}
.ws3c{word-spacing:-23.328000px;}
.ws4e{word-spacing:-22.860000px;}
.ws3f{word-spacing:-22.680000px;}
.ws30{word-spacing:-21.528000px;}
.wsd{word-spacing:-19.389000px;}
.ws43{word-spacing:-19.125000px;}
.ws42{word-spacing:-18.549000px;}
.ws17{word-spacing:-18.225000px;}
.ws1e{word-spacing:-17.871000px;}
.ws4d{word-spacing:-17.703000px;}
.wsb{word-spacing:-17.700000px;}
.ws39{word-spacing:-17.664000px;}
.ws28{word-spacing:-17.526000px;}
.ws2b{word-spacing:-17.250000px;}
.ws1d{word-spacing:-17.181000px;}
.wsf{word-spacing:-17.043000px;}
.ws3{word-spacing:-16.860000px;}
.ws3a{word-spacing:-16.836000px;}
.ws26{word-spacing:-16.629000px;}
.ws2a{word-spacing:-16.491000px;}
.ws1f{word-spacing:-16.422000px;}
.ws19{word-spacing:-16.353000px;}
.ws33{word-spacing:-16.284000px;}
.ws1a{word-spacing:-16.146000px;}
.ws15{word-spacing:-16.077000px;}
.ws18{word-spacing:-16.008000px;}
.ws37{word-spacing:-15.732000px;}
.ws34{word-spacing:-15.663000px;}
.ws45{word-spacing:-15.561000px;}
.wse{word-spacing:-15.525000px;}
.ws44{word-spacing:-15.309000px;}
.ws36{word-spacing:-15.249000px;}
.ws20{word-spacing:-15.174000px;}
.ws1b{word-spacing:-15.111000px;}
.ws48{word-spacing:-14.931000px;}
.ws4f{word-spacing:-14.820000px;}
.ws35{word-spacing:-14.766000px;}
.ws46{word-spacing:-14.616000px;}
.ws50{word-spacing:-14.280000px;}
.ws1c{word-spacing:-14.145000px;}
.ws52{word-spacing:-13.920000px;}
.wsc{word-spacing:-13.902000px;}
.ws51{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.338000px;}
.ws14{word-spacing:-11.303787px;}
.ws2{word-spacing:-9.829380px;}
.ws3e{word-spacing:-7.200000px;}
.ws2f{word-spacing:-6.768000px;}
.ws4a{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.880000px;}
.ws8{word-spacing:-5.760000px;}
.ws9{word-spacing:-4.200000px;}
.ws10{word-spacing:-2.400000px;}
.ws7{word-spacing:-1.260000px;}
.ws13{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.189000px;}
.ws22{word-spacing:0.207000px;}
.ws12{word-spacing:0.276000px;}
.ws2d{word-spacing:0.414000px;}
.ws49{word-spacing:0.441000px;}
.ws3b{word-spacing:0.552000px;}
.ws40{word-spacing:0.627000px;}
.ws23{word-spacing:0.690000px;}
.ws4c{word-spacing:0.693000px;}
.ws2e{word-spacing:0.828000px;}
.ws16{word-spacing:0.855000px;}
.ws38{word-spacing:1.173000px;}
.ws3d{word-spacing:2.553000px;}
.ws24{word-spacing:3.243000px;}
.ws41{word-spacing:3.519000px;}
.ws4b{word-spacing:4.536000px;}
.ws11{word-spacing:7.371000px;}
.ws53{word-spacing:11.718000px;}
.ws25{word-spacing:43.445160px;}
._16{margin-left:-19.726800px;}
._15{margin-left:-17.375400px;}
._9{margin-left:-10.152000px;}
._b{margin-left:-7.341600px;}
._8{margin-left:-6.242400px;}
._a{margin-left:-4.869600px;}
._c{margin-left:-3.208800px;}
._2{margin-left:-1.888800px;}
._3{width:1.008000px;}
._1{width:2.400000px;}
._e{width:3.487200px;}
._7{width:4.492800px;}
._4{width:5.760000px;}
._5{width:7.722000px;}
._6{width:9.606000px;}
._14{width:10.854600px;}
._11{width:12.406200px;}
._10{width:13.759800px;}
._17{width:15.075900px;}
._12{width:22.974000px;}
._18{width:24.192000px;}
._1a{width:32.355300px;}
._19{width:39.626100px;}
._13{width:43.445160px;}
._d{width:85.554000px;}
._f{width:260.610000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{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;}
.y8f{bottom:100.283100px;}
.yb6{bottom:106.165350px;}
.y42{bottom:106.169100px;}
.ydc{bottom:106.293300px;}
.yfc{bottom:106.295850px;}
.y68{bottom:106.296300px;}
.y179{bottom:106.299150px;}
.y1c{bottom:106.299750px;}
.y124{bottom:106.301250px;}
.y13a{bottom:106.307400px;}
.y1ba{bottom:106.307850px;}
.y1da{bottom:106.355100px;}
.y19a{bottom:106.402350px;}
.y178{bottom:109.946400px;}
.y1f8{bottom:116.404500px;}
.y17a{bottom:117.439050px;}
.ydb{bottom:123.546300px;}
.y1b{bottom:126.459750px;}
.y67{bottom:126.544800px;}
.y41{bottom:126.558600px;}
.yb5{bottom:126.589350px;}
.y123{bottom:126.708000px;}
.y139{bottom:126.714150px;}
.y156{bottom:126.716400px;}
.yfb{bottom:126.728400px;}
.y199{bottom:126.908850px;}
.y1b9{bottom:127.239600px;}
.y1f7{bottom:136.654500px;}
.yda{bottom:140.799300px;}
.yd9{bottom:143.794800px;}
.y8e{bottom:144.037350px;}
.y66{bottom:145.048200px;}
.y1a{bottom:146.619750px;}
.y40{bottom:146.948100px;}
.yb4{bottom:147.013350px;}
.y122{bottom:147.115800px;}
.y138{bottom:147.120900px;}
.yfa{bottom:147.136950px;}
.y155{bottom:147.148950px;}
.y198{bottom:155.920350px;}
.y1d9{bottom:155.967600px;}
.y1b8{bottom:156.676350px;}
.y1f6{bottom:156.904500px;}
.y8d{bottom:163.995600px;}
.y65{bottom:165.296700px;}
.y19{bottom:166.790250px;}
.y3f{bottom:167.337600px;}
.yb3{bottom:167.437350px;}
.y121{bottom:167.523600px;}
.y137{bottom:167.527650px;}
.yf9{bottom:167.557500px;}
.y177{bottom:170.651100px;}
.y197{bottom:176.426850px;}
.y1d8{bottom:176.521350px;}
.y1f5{bottom:177.154500px;}
.y1b7{bottom:177.608100px;}
.y8c{bottom:183.953850px;}
.y64{bottom:186.798750px;}
.y18{bottom:186.950250px;}
.y3e{bottom:187.727100px;}
.yb2{bottom:187.861350px;}
.y120{bottom:187.931400px;}
.y136{bottom:187.934400px;}
.yf8{bottom:187.974600px;}
.y154{bottom:187.978050px;}
.yd8{bottom:188.021550px;}
.y176{bottom:190.902600px;}
.y1b6{bottom:198.539850px;}
.y8b{bottom:203.912100px;}
.y196{bottom:205.438350px;}
.y1d7{bottom:205.580100px;}
.y3d{bottom:208.116600px;}
.yb1{bottom:208.285350px;}
.y11f{bottom:208.339200px;}
.y135{bottom:208.341150px;}
.yf7{bottom:208.398600px;}
.y153{bottom:208.410600px;}
.yd7{bottom:208.859550px;}
.y1f4{bottom:210.154500px;}
.y175{bottom:211.154100px;}
.y17{bottom:219.860250px;}
.y8a{bottom:223.870350px;}
.y195{bottom:225.944850px;}
.y1d6{bottom:226.133850px;}
.y1b5{bottom:227.976600px;}
.y3c{bottom:228.506100px;}
.yb0{bottom:228.709350px;}
.y11e{bottom:228.747900px;}
.yf6{bottom:228.819150px;}
.y152{bottom:228.831150px;}
.yd6{bottom:229.697550px;}
.y63{bottom:230.812500px;}
.y174{bottom:231.405600px;}
.y89{bottom:243.828600px;}
.y3b{bottom:248.895600px;}
.y1b4{bottom:248.908350px;}
.yaf{bottom:249.133350px;}
.y11d{bottom:249.154650px;}
.y151{bottom:249.195150px;}
.yf5{bottom:249.251700px;}
.yd5{bottom:250.535550px;}
.y62{bottom:251.133000px;}
.y173{bottom:251.657100px;}
.y1f3{bottom:251.659500px;}
.y194{bottom:254.956350px;}
.y1d5{bottom:255.192600px;}
.y88{bottom:263.786850px;}
.y3a{bottom:269.285100px;}
.yae{bottom:269.557350px;}
.y11c{bottom:269.562450px;}
.y134{bottom:269.564550px;}
.y150{bottom:269.619150px;}
.yf4{bottom:269.672400px;}
.y16{bottom:269.780250px;}
.y1f2{bottom:271.159500px;}
.yd4{bottom:271.373550px;}
.y61{bottom:271.435800px;}
.y172{bottom:271.908600px;}
.y193{bottom:275.462850px;}
.y1d4{bottom:275.746350px;}
.y1b3{bottom:278.345100px;}
.y87{bottom:283.745100px;}
.y39{bottom:289.674600px;}
.y11b{bottom:289.970250px;}
.y133{bottom:289.971300px;}
.yad{bottom:289.981350px;}
.y14f{bottom:290.043150px;}
.yf3{bottom:290.092950px;}
.y1f1{bottom:290.659500px;}
.y15{bottom:291.440250px;}
.y60{bottom:291.756300px;}
.y171{bottom:292.160100px;}
.yd3{bottom:292.211550px;}
.y1b2{bottom:299.276850px;}
.y86{bottom:303.703350px;}
.y192{bottom:304.474350px;}
.y1d3{bottom:304.805100px;}
.y38{bottom:310.064100px;}
.y1f0{bottom:310.159500px;}
.y11a{bottom:310.378050px;}
.yac{bottom:310.405350px;}
.y14e{bottom:310.467150px;}
.yf2{bottom:310.501500px;}
.y5f{bottom:312.076800px;}
.y170{bottom:312.411600px;}
.yd2{bottom:313.049550px;}
.y14{bottom:313.107300px;}
.y85{bottom:323.661600px;}
.y191{bottom:324.980850px;}
.y1d2{bottom:325.358850px;}
.y1b1{bottom:328.713600px;}
.y1ef{bottom:329.659500px;}
.y37{bottom:330.453600px;}
.y119{bottom:330.780600px;}
.y132{bottom:330.794100px;}
.yab{bottom:330.829350px;}
.y14d{bottom:330.891150px;}
.yf1{bottom:330.922050px;}
.y5e{bottom:332.397300px;}
.y16f{bottom:332.663100px;}
.y13{bottom:333.267300px;}
.yd1{bottom:333.887550px;}
.y84{bottom:343.619850px;}
.y190{bottom:345.487350px;}
.y1ee{bottom:349.159500px;}
.y1b0{bottom:349.645350px;}
.y36{bottom:350.843100px;}
.y118{bottom:351.193650px;}
.y131{bottom:351.200850px;}
.yaa{bottom:351.253350px;}
.y14c{bottom:351.315150px;}
.yf0{bottom:351.342600px;}
.y5d{bottom:352.717800px;}
.y16e{bottom:352.914600px;}
.y12{bottom:353.427300px;}
.y1d1{bottom:354.417600px;}
.yd0{bottom:354.725550px;}
.y83{bottom:363.578100px;}
.y1ed{bottom:368.659500px;}
.y35{bottom:371.232600px;}
.y117{bottom:371.601450px;}
.y130{bottom:371.607600px;}
.ya9{bottom:371.677350px;}
.y14b{bottom:371.739150px;}
.yef{bottom:371.763150px;}
.y5c{bottom:373.038300px;}
.y16d{bottom:373.166100px;}
.y11{bottom:373.587300px;}
.y18f{bottom:374.498850px;}
.y1d0{bottom:374.971350px;}
.ycf{bottom:375.563550px;}
.y1af{bottom:379.082100px;}
.y82{bottom:383.536350px;}
.y1ec{bottom:388.159500px;}
.y34{bottom:391.622100px;}
.y116{bottom:392.009100px;}
.y12f{bottom:392.014350px;}
.ya8{bottom:392.101350px;}
.y14a{bottom:392.163150px;}
.yee{bottom:392.176950px;}
.y5b{bottom:393.358800px;}
.y16c{bottom:393.417600px;}
.y10{bottom:393.747300px;}
.y18e{bottom:395.005350px;}
.y1cf{bottom:395.525100px;}
.yce{bottom:396.401550px;}
.y1ae{bottom:400.013850px;}
.y81{bottom:403.494600px;}
.y1eb{bottom:407.659500px;}
.y33{bottom:412.011600px;}
.y115{bottom:412.416900px;}
.y12e{bottom:412.421100px;}
.ya7{bottom:412.525350px;}
.y149{bottom:412.587150px;}
.yed{bottom:412.600950px;}
.y16b{bottom:413.669100px;}
.y5a{bottom:413.679300px;}
.yf{bottom:413.907300px;}
.y18d{bottom:415.511850px;}
.ycd{bottom:417.239550px;}
.y80{bottom:423.452850px;}
.y1ce{bottom:424.583850px;}
.y1ea{bottom:427.159500px;}
.y1ad{bottom:429.450600px;}
.y32{bottom:432.401100px;}
.y114{bottom:432.825750px;}
.y12d{bottom:432.827850px;}
.ya6{bottom:432.949350px;}
.y148{bottom:433.011150px;}
.yec{bottom:433.024950px;}
.y16a{bottom:433.920600px;}
.y59{bottom:433.999800px;}
.ycc{bottom:438.077550px;}
.y7f{bottom:443.411100px;}
.y18c{bottom:444.523350px;}
.y1cd{bottom:445.137600px;}
.y1e9{bottom:446.659500px;}
.ye{bottom:446.817300px;}
.y1ac{bottom:450.382350px;}
.y31{bottom:452.790600px;}
.y113{bottom:453.232500px;}
.y12c{bottom:453.234600px;}
.ya5{bottom:453.373350px;}
.y147{bottom:453.435150px;}
.yeb{bottom:453.445500px;}
.y169{bottom:454.172100px;}
.ycb{bottom:458.915550px;}
.y7e{bottom:463.369350px;}
.y18b{bottom:465.029850px;}
.y1e8{bottom:466.159500px;}
.y58{bottom:467.073900px;}
.y30{bottom:473.180100px;}
.y112{bottom:473.640300px;}
.y12b{bottom:473.641350px;}
.ya4{bottom:473.797350px;}
.y146{bottom:473.859150px;}
.yea{bottom:473.866050px;}
.y1cc{bottom:474.196350px;}
.y168{bottom:474.423600px;}
.yca{bottom:479.753550px;}
.y1ab{bottom:479.819100px;}
.y7d{bottom:483.327600px;}
.y18a{bottom:485.536350px;}
.y1e7{bottom:485.659500px;}
.y2f{bottom:493.569600px;}
.y111{bottom:494.048100px;}
.ya3{bottom:494.221350px;}
.y145{bottom:494.283150px;}
.ye9{bottom:494.286600px;}
.y167{bottom:494.675100px;}
.y1cb{bottom:494.750100px;}
.yc9{bottom:500.591550px;}
.y1aa{bottom:500.750850px;}
.y7c{bottom:503.285850px;}
.y1e6{bottom:505.159500px;}
.yd{bottom:505.251600px;}
.y2e{bottom:513.959100px;}
.y12a{bottom:514.455900px;}
.y110{bottom:514.457850px;}
.y189{bottom:514.547850px;}
.ya2{bottom:514.645350px;}
.ye8{bottom:514.707150px;}
.y57{bottom:516.634050px;}
.yc8{bottom:521.429550px;}
.y7b{bottom:523.244100px;}
.y1ca{bottom:523.808850px;}
.y1e5{bottom:524.659500px;}
.y1a9{bottom:530.187600px;}
.yc{bottom:532.908600px;}
.y2d{bottom:534.348600px;}
.y129{bottom:534.863550px;}
.y10f{bottom:534.864600px;}
.y188{bottom:535.054350px;}
.ya1{bottom:535.069350px;}
.y144{bottom:535.124250px;}
.ye7{bottom:535.127700px;}
.y166{bottom:536.184900px;}
.y56{bottom:536.954550px;}
.yc7{bottom:542.267550px;}
.y7a{bottom:543.202350px;}
.y1e4{bottom:544.159500px;}
.y1c9{bottom:544.362600px;}
.y1a8{bottom:551.119350px;}
.y2c{bottom:554.738100px;}
.y10e{bottom:555.271350px;}
.ya0{bottom:555.493350px;}
.y143{bottom:555.548250px;}
.ye6{bottom:555.560250px;}
.y187{bottom:555.560850px;}
.y55{bottom:557.275050px;}
.yb{bottom:560.565600px;}
.yc6{bottom:563.105550px;}
.y79{bottom:563.160600px;}
.y1c8{bottom:573.421350px;}
.y2b{bottom:575.127600px;}
.y10d{bottom:575.679150px;}
.y9f{bottom:575.917350px;}
.ye5{bottom:575.968800px;}
.y1e3{bottom:576.409500px;}
.y54{bottom:577.595550px;}
.y1a7{bottom:580.556100px;}
.y78{bottom:583.118850px;}
.yc5{bottom:583.943550px;}
.y186{bottom:584.572350px;}
.y1c7{bottom:593.975100px;}
.y2a{bottom:595.517100px;}
.y10c{bottom:596.086950px;}
.y9e{bottom:596.341350px;}
.ye4{bottom:596.389500px;}
.y53{bottom:597.916050px;}
.y165{bottom:598.436100px;}
.y1a6{bottom:601.487850px;}
.y77{bottom:603.077100px;}
.yc4{bottom:604.781550px;}
.y185{bottom:605.078850px;}
.ya{bottom:609.498300px;}
.y29{bottom:615.906600px;}
.y10b{bottom:616.494750px;}
.y9d{bottom:616.765350px;}
.y142{bottom:616.803150px;}
.ye3{bottom:616.810050px;}
.y52{bottom:618.236550px;}
.y164{bottom:618.687600px;}
.y1c6{bottom:623.033850px;}
.y76{bottom:623.035350px;}
.yc3{bottom:625.619550px;}
.y1a5{bottom:630.924600px;}
.y184{bottom:634.090350px;}
.y1e2{bottom:634.165350px;}
.y28{bottom:636.296100px;}
.y10a{bottom:636.897300px;}
.y128{bottom:636.902550px;}
.y9c{bottom:637.189350px;}
.y141{bottom:637.227150px;}
.ye2{bottom:637.242600px;}
.y51{bottom:638.557050px;}
.y163{bottom:638.939100px;}
.y9{bottom:641.655300px;}
.y75{bottom:642.993600px;}
.y1c5{bottom:643.587600px;}
.yc2{bottom:646.457550px;}
.y1a4{bottom:651.856350px;}
.y183{bottom:654.596850px;}
.y27{bottom:656.685600px;}
.y109{bottom:657.310200px;}
.y9b{bottom:657.613350px;}
.ye1{bottom:657.647700px;}
.y140{bottom:657.651150px;}
.y50{bottom:658.877550px;}
.y162{bottom:659.190600px;}
.y1e1{bottom:661.171350px;}
.y74{bottom:662.951850px;}
.y1c4{bottom:664.141350px;}
.yc1{bottom:667.295550px;}
.y8{bottom:673.812300px;}
.y26{bottom:677.075100px;}
.y108{bottom:677.718000px;}
.y9a{bottom:678.037350px;}
.y13f{bottom:678.068250px;}
.ye0{bottom:678.071700px;}
.y4f{bottom:679.198050px;}
.y161{bottom:679.442100px;}
.y1a3{bottom:681.293100px;}
.y73{bottom:682.910100px;}
.y182{bottom:683.608350px;}
.yc0{bottom:688.133550px;}
.y1e0{bottom:688.177350px;}
.y1c3{bottom:693.200100px;}
.y25{bottom:697.464600px;}
.y107{bottom:698.125800px;}
.y99{bottom:698.461350px;}
.ydf{bottom:698.492250px;}
.y4e{bottom:699.500700px;}
.y160{bottom:699.693600px;}
.y1a2{bottom:702.224850px;}
.y72{bottom:702.868350px;}
.y181{bottom:704.114850px;}
.y7{bottom:705.969300px;}
.ybf{bottom:708.971550px;}
.y1c2{bottom:713.753850px;}
.y24{bottom:717.854100px;}
.y106{bottom:718.528350px;}
.y127{bottom:718.533600px;}
.y98{bottom:718.885350px;}
.yde{bottom:718.909350px;}
.y13e{bottom:718.912800px;}
.y4d{bottom:719.821200px;}
.y15f{bottom:719.945100px;}
.y71{bottom:722.826600px;}
.ybe{bottom:729.809550px;}
.y1a1{bottom:731.661600px;}
.y180{bottom:733.126350px;}
.y1c1{bottom:734.307600px;}
.y6{bottom:738.126300px;}
.y23{bottom:738.243600px;}
.y105{bottom:738.941400px;}
.y97{bottom:739.309350px;}
.y13d{bottom:739.330050px;}
.ydd{bottom:739.333350px;}
.y4c{bottom:740.141700px;}
.y15e{bottom:740.196600px;}
.y70{bottom:742.784850px;}
.ybd{bottom:750.647550px;}
.y1a0{bottom:752.593350px;}
.y17f{bottom:753.632850px;}
.y104{bottom:759.349200px;}
.y96{bottom:759.733350px;}
.y13c{bottom:759.754050px;}
.y15d{bottom:760.448100px;}
.y4b{bottom:760.462200px;}
.y6f{bottom:762.743100px;}
.y1c0{bottom:763.366350px;}
.ybc{bottom:771.485550px;}
.y103{bottom:779.751600px;}
.y126{bottom:779.756850px;}
.y22{bottom:779.888700px;}
.y95{bottom:780.157350px;}
.y13b{bottom:780.174600px;}
.y15c{bottom:780.699600px;}
.y4a{bottom:780.782700px;}
.y19f{bottom:782.030100px;}
.y17e{bottom:782.644350px;}
.y6e{bottom:782.658600px;}
.y1bf{bottom:783.920100px;}
.ybb{bottom:792.323550px;}
.y1df{bottom:793.921350px;}
.y102{bottom:800.159550px;}
.y125{bottom:800.166750px;}
.y94{bottom:800.581350px;}
.y15b{bottom:800.951100px;}
.y49{bottom:801.103200px;}
.y6d{bottom:802.616850px;}
.y19e{bottom:802.961850px;}
.y1be{bottom:804.473850px;}
.yba{bottom:813.168450px;}
.y1de{bottom:814.175850px;}
.y101{bottom:820.573500px;}
.y93{bottom:821.005350px;}
.y15a{bottom:821.201100px;}
.y48{bottom:821.423700px;}
.y6c{bottom:822.575100px;}
.y5{bottom:830.213700px;}
.y19d{bottom:832.398600px;}
.y1bd{bottom:833.532600px;}
.y17d{bottom:833.674350px;}
.yb9{bottom:834.006450px;}
.y1dd{bottom:834.430350px;}
.y100{bottom:840.980250px;}
.y92{bottom:841.429350px;}
.y159{bottom:841.451100px;}
.y47{bottom:841.744200px;}
.y21{bottom:842.292000px;}
.y6b{bottom:842.533350px;}
.y4{bottom:851.873700px;}
.y19c{bottom:853.330350px;}
.y1bc{bottom:854.086350px;}
.y17c{bottom:854.180850px;}
.y1dc{bottom:854.684850px;}
.yff{bottom:861.388050px;}
.y158{bottom:861.701100px;}
.y91{bottom:861.853350px;}
.y46{bottom:862.060350px;}
.y6a{bottom:862.491600px;}
.y20{bottom:863.427000px;}
.y17b{bottom:874.687350px;}
.yb8{bottom:876.102450px;}
.yfe{bottom:881.795850px;}
.y157{bottom:881.951100px;}
.y3{bottom:882.038700px;}
.y90{bottom:882.277350px;}
.y45{bottom:882.380850px;}
.y69{bottom:882.449850px;}
.y19b{bottom:882.767100px;}
.y1bb{bottom:883.145100px;}
.y1db{bottom:883.444350px;}
.y1f{bottom:884.562750px;}
.yb7{bottom:900.706200px;}
.yfd{bottom:902.202600px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1e{bottom:904.197750px;}
.y1d{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.h14{height:26.732030px;}
.h11{height:34.028742px;}
.h9{height:40.898438px;}
.h12{height:46.010742px;}
.h15{height:50.018555px;}
.h4{height:51.123047px;}
.h2a{height:51.128447px;}
.h8{height:51.884766px;}
.h3{height:53.679199px;}
.h2c{height:55.576172px;}
.h2b{height:58.354980px;}
.hb{height:58.791504px;}
.he{height:58.808904px;}
.hf{height:58.862904px;}
.hd{height:59.667480px;}
.h2{height:63.903809px;}
.hc{height:63.912598px;}
.h10{height:63.983398px;}
.h13{height:64.083598px;}
.h23{height:66.654206px;}
.h22{height:66.678806px;}
.h20{height:66.679406px;}
.h21{height:66.683006px;}
.h1d{height:66.683606px;}
.h1c{height:66.687206px;}
.h1f{height:66.687806px;}
.h19{height:66.691406px;}
.h28{height:66.697406px;}
.h1a{height:66.704606px;}
.h18{height:66.705206px;}
.h1e{height:66.707606px;}
.h25{height:66.718406px;}
.h17{height:66.719006px;}
.h1b{height:66.732206px;}
.h26{height:66.732806px;}
.h24{height:66.760406px;}
.h16{height:66.787406px;}
.h27{height:66.883406px;}
.h29{height:68.778809px;}
.ha{height:69.016113px;}
.h7{height:71.572266px;}
.h5{height:92.021484px;}
.h6{height:93.392578px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.941500px;}
.x8{left:82.214250px;}
.x9{left:83.605650px;}
.x1{left:85.039350px;}
.xc{left:102.829800px;}
.x6{left:104.655600px;}
.x7{left:106.169250px;}
.xb{left:212.663850px;}
.x4{left:230.004000px;}
.x5{left:231.330450px;}
.x2{left:232.601400px;}
.x3{left:234.018450px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.389333pt;}
.v2{vertical-align:15.106667pt;}
.lsd{letter-spacing:-6.552000pt;}
.ls44{letter-spacing:-3.744000pt;}
.ls42{letter-spacing:-3.128000pt;}
.lsc{letter-spacing:-3.000000pt;}
.ls26{letter-spacing:-2.882667pt;}
.ls6{letter-spacing:-2.880000pt;}
.ls20{letter-spacing:-2.576000pt;}
.ls1a{letter-spacing:-2.533333pt;}
.ls3e{letter-spacing:-2.269333pt;}
.ls37{letter-spacing:-2.024000pt;}
.ls46{letter-spacing:-1.733333pt;}
.ls1f{letter-spacing:-1.717333pt;}
.ls38{letter-spacing:-1.594667pt;}
.lsf{letter-spacing:-1.349333pt;}
.ls36{letter-spacing:-1.226667pt;}
.ls55{letter-spacing:-1.173333pt;}
.ls39{letter-spacing:-1.165333pt;}
.ls34{letter-spacing:-1.042667pt;}
.ls1b{letter-spacing:-0.920000pt;}
.ls15{letter-spacing:-0.858667pt;}
.ls4a{letter-spacing:-0.840000pt;}
.ls56{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.797333pt;}
.ls14{letter-spacing:-0.760000pt;}
.ls2b{letter-spacing:-0.736000pt;}
.ls35{letter-spacing:-0.674667pt;}
.ls51{letter-spacing:-0.616000pt;}
.ls1c{letter-spacing:-0.613333pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls40{letter-spacing:-0.557333pt;}
.ls25{letter-spacing:-0.552000pt;}
.ls2d{letter-spacing:-0.490667pt;}
.ls54{letter-spacing:-0.480000pt;}
.ls4b{letter-spacing:-0.392000pt;}
.ls2a{letter-spacing:-0.368000pt;}
.lse{letter-spacing:-0.245333pt;}
.ls49{letter-spacing:-0.224000pt;}
.ls24{letter-spacing:-0.184000pt;}
.ls3{letter-spacing:-0.168000pt;}
.ls41{letter-spacing:-0.072000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000267pt;}
.ls3d{letter-spacing:0.034133pt;}
.ls21{letter-spacing:0.122667pt;}
.ls2e{letter-spacing:0.184000pt;}
.ls2c{letter-spacing:0.429333pt;}
.ls3b{letter-spacing:0.552000pt;}
.ls22{letter-spacing:0.736000pt;}
.ls5{letter-spacing:1.120000pt;}
.ls47{letter-spacing:1.153600pt;}
.ls13{letter-spacing:1.380000pt;}
.lsa{letter-spacing:1.866667pt;}
.ls17{letter-spacing:2.005600pt;}
.lsb{letter-spacing:2.133333pt;}
.ls53{letter-spacing:2.760800pt;}
.ls32{letter-spacing:3.328000pt;}
.ls19{letter-spacing:3.637067pt;}
.ls18{letter-spacing:3.649333pt;}
.ls1{letter-spacing:3.733333pt;}
.ls12{letter-spacing:3.741333pt;}
.ls4f{letter-spacing:4.060000pt;}
.ls50{letter-spacing:4.093600pt;}
.ls3f{letter-spacing:4.928000pt;}
.ls7{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls48{letter-spacing:5.600000pt;}
.ls2f{letter-spacing:5.632000pt;}
.ls33{letter-spacing:5.760000pt;}
.ls28{letter-spacing:6.016000pt;}
.ls29{letter-spacing:6.208000pt;}
.ls31{letter-spacing:6.400000pt;}
.ls4c{letter-spacing:7.840000pt;}
.ls45{letter-spacing:421.488000pt;}
.ls16{letter-spacing:422.501333pt;}
.ls52{letter-spacing:422.781333pt;}
.ls30{letter-spacing:422.861333pt;}
.ls43{letter-spacing:422.868267pt;}
.ls4e{letter-spacing:423.148267pt;}
.ls3c{letter-spacing:423.208000pt;}
.ls23{letter-spacing:424.361600pt;}
.ls9{letter-spacing:425.181333pt;}
.ls10{letter-spacing:846.686933pt;}
.ls27{letter-spacing:847.126933pt;}
.ls3a{letter-spacing:849.460267pt;}
.ls0{letter-spacing:853.060267pt;}
.ls1e{letter-spacing:854.820267pt;}
.ws0{word-spacing:-24.096000pt;}
.ws1{word-spacing:-23.712000pt;}
.ws47{word-spacing:-23.576000pt;}
.ws32{word-spacing:-22.208000pt;}
.ws29{word-spacing:-22.016000pt;}
.ws27{word-spacing:-21.824000pt;}
.ws31{word-spacing:-21.568000pt;}
.ws2c{word-spacing:-21.440000pt;}
.ws3c{word-spacing:-20.736000pt;}
.ws4e{word-spacing:-20.320000pt;}
.ws3f{word-spacing:-20.160000pt;}
.ws30{word-spacing:-19.136000pt;}
.wsd{word-spacing:-17.234667pt;}
.ws43{word-spacing:-17.000000pt;}
.ws42{word-spacing:-16.488000pt;}
.ws17{word-spacing:-16.200000pt;}
.ws1e{word-spacing:-15.885333pt;}
.ws4d{word-spacing:-15.736000pt;}
.wsb{word-spacing:-15.733333pt;}
.ws39{word-spacing:-15.701333pt;}
.ws28{word-spacing:-15.578667pt;}
.ws2b{word-spacing:-15.333333pt;}
.ws1d{word-spacing:-15.272000pt;}
.wsf{word-spacing:-15.149333pt;}
.ws3{word-spacing:-14.986667pt;}
.ws3a{word-spacing:-14.965333pt;}
.ws26{word-spacing:-14.781333pt;}
.ws2a{word-spacing:-14.658667pt;}
.ws1f{word-spacing:-14.597333pt;}
.ws19{word-spacing:-14.536000pt;}
.ws33{word-spacing:-14.474667pt;}
.ws1a{word-spacing:-14.352000pt;}
.ws15{word-spacing:-14.290667pt;}
.ws18{word-spacing:-14.229333pt;}
.ws37{word-spacing:-13.984000pt;}
.ws34{word-spacing:-13.922667pt;}
.ws45{word-spacing:-13.832000pt;}
.wse{word-spacing:-13.800000pt;}
.ws44{word-spacing:-13.608000pt;}
.ws36{word-spacing:-13.554667pt;}
.ws20{word-spacing:-13.488000pt;}
.ws1b{word-spacing:-13.432000pt;}
.ws48{word-spacing:-13.272000pt;}
.ws4f{word-spacing:-13.173333pt;}
.ws35{word-spacing:-13.125333pt;}
.ws46{word-spacing:-12.992000pt;}
.ws50{word-spacing:-12.693333pt;}
.ws1c{word-spacing:-12.573333pt;}
.ws52{word-spacing:-12.373333pt;}
.wsc{word-spacing:-12.357333pt;}
.ws51{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.856000pt;}
.ws14{word-spacing:-10.047811pt;}
.ws2{word-spacing:-8.737227pt;}
.ws3e{word-spacing:-6.400000pt;}
.ws2f{word-spacing:-6.016000pt;}
.ws4a{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.226667pt;}
.ws8{word-spacing:-5.120000pt;}
.ws9{word-spacing:-3.733333pt;}
.ws10{word-spacing:-2.133333pt;}
.ws7{word-spacing:-1.120000pt;}
.ws13{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.168000pt;}
.ws22{word-spacing:0.184000pt;}
.ws12{word-spacing:0.245333pt;}
.ws2d{word-spacing:0.368000pt;}
.ws49{word-spacing:0.392000pt;}
.ws3b{word-spacing:0.490667pt;}
.ws40{word-spacing:0.557333pt;}
.ws23{word-spacing:0.613333pt;}
.ws4c{word-spacing:0.616000pt;}
.ws2e{word-spacing:0.736000pt;}
.ws16{word-spacing:0.760000pt;}
.ws38{word-spacing:1.042667pt;}
.ws3d{word-spacing:2.269333pt;}
.ws24{word-spacing:2.882667pt;}
.ws41{word-spacing:3.128000pt;}
.ws4b{word-spacing:4.032000pt;}
.ws11{word-spacing:6.552000pt;}
.ws53{word-spacing:10.416000pt;}
.ws25{word-spacing:38.617920pt;}
._16{margin-left:-17.534933pt;}
._15{margin-left:-15.444800pt;}
._9{margin-left:-9.024000pt;}
._b{margin-left:-6.525867pt;}
._8{margin-left:-5.548800pt;}
._a{margin-left:-4.328533pt;}
._c{margin-left:-2.852267pt;}
._2{margin-left:-1.678933pt;}
._3{width:0.896000pt;}
._1{width:2.133333pt;}
._e{width:3.099733pt;}
._7{width:3.993600pt;}
._4{width:5.120000pt;}
._5{width:6.864000pt;}
._6{width:8.538667pt;}
._14{width:9.648533pt;}
._11{width:11.027733pt;}
._10{width:12.230933pt;}
._17{width:13.400800pt;}
._12{width:20.421333pt;}
._18{width:21.504000pt;}
._1a{width:28.760267pt;}
._19{width:35.223200pt;}
._13{width:38.617920pt;}
._d{width:76.048000pt;}
._f{width:231.653333pt;}
._0{width:514.133333pt;}
.fsd{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{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;}
.y8f{bottom:89.140533pt;}
.yb6{bottom:94.369200pt;}
.y42{bottom:94.372533pt;}
.ydc{bottom:94.482933pt;}
.yfc{bottom:94.485200pt;}
.y68{bottom:94.485600pt;}
.y179{bottom:94.488133pt;}
.y1c{bottom:94.488667pt;}
.y124{bottom:94.490000pt;}
.y13a{bottom:94.495467pt;}
.y1ba{bottom:94.495867pt;}
.y1da{bottom:94.537867pt;}
.y19a{bottom:94.579867pt;}
.y178{bottom:97.730133pt;}
.y1f8{bottom:103.470667pt;}
.y17a{bottom:104.390267pt;}
.ydb{bottom:109.818933pt;}
.y1b{bottom:112.408667pt;}
.y67{bottom:112.484267pt;}
.y41{bottom:112.496533pt;}
.yb5{bottom:112.523867pt;}
.y123{bottom:112.629333pt;}
.y139{bottom:112.634800pt;}
.y156{bottom:112.636800pt;}
.yfb{bottom:112.647467pt;}
.y199{bottom:112.807867pt;}
.y1b9{bottom:113.101867pt;}
.y1f7{bottom:121.470667pt;}
.yda{bottom:125.154933pt;}
.yd9{bottom:127.817600pt;}
.y8e{bottom:128.033200pt;}
.y66{bottom:128.931733pt;}
.y1a{bottom:130.328667pt;}
.y40{bottom:130.620533pt;}
.yb4{bottom:130.678533pt;}
.y122{bottom:130.769600pt;}
.y138{bottom:130.774133pt;}
.yfa{bottom:130.788400pt;}
.y155{bottom:130.799067pt;}
.y198{bottom:138.595867pt;}
.y1d9{bottom:138.637867pt;}
.y1b8{bottom:139.267867pt;}
.y1f6{bottom:139.470667pt;}
.y8d{bottom:145.773867pt;}
.y65{bottom:146.930400pt;}
.y19{bottom:148.258000pt;}
.y3f{bottom:148.744533pt;}
.yb3{bottom:148.833200pt;}
.y121{bottom:148.909867pt;}
.y137{bottom:148.913467pt;}
.yf9{bottom:148.940000pt;}
.y177{bottom:151.689867pt;}
.y197{bottom:156.823867pt;}
.y1d8{bottom:156.907867pt;}
.y1f5{bottom:157.470667pt;}
.y1b7{bottom:157.873867pt;}
.y8c{bottom:163.514533pt;}
.y64{bottom:166.043333pt;}
.y18{bottom:166.178000pt;}
.y3e{bottom:166.868533pt;}
.yb2{bottom:166.987867pt;}
.y120{bottom:167.050133pt;}
.y136{bottom:167.052800pt;}
.yf8{bottom:167.088533pt;}
.y154{bottom:167.091600pt;}
.yd8{bottom:167.130267pt;}
.y176{bottom:169.691200pt;}
.y1b6{bottom:176.479867pt;}
.y8b{bottom:181.255200pt;}
.y196{bottom:182.611867pt;}
.y1d7{bottom:182.737867pt;}
.y3d{bottom:184.992533pt;}
.yb1{bottom:185.142533pt;}
.y11f{bottom:185.190400pt;}
.y135{bottom:185.192133pt;}
.yf7{bottom:185.243200pt;}
.y153{bottom:185.253867pt;}
.yd7{bottom:185.652933pt;}
.y1f4{bottom:186.804000pt;}
.y175{bottom:187.692533pt;}
.y17{bottom:195.431333pt;}
.y8a{bottom:198.995867pt;}
.y195{bottom:200.839867pt;}
.y1d6{bottom:201.007867pt;}
.y1b5{bottom:202.645867pt;}
.y3c{bottom:203.116533pt;}
.yb0{bottom:203.297200pt;}
.y11e{bottom:203.331467pt;}
.yf6{bottom:203.394800pt;}
.y152{bottom:203.405467pt;}
.yd6{bottom:204.175600pt;}
.y63{bottom:205.166667pt;}
.y174{bottom:205.693867pt;}
.y89{bottom:216.736533pt;}
.y3b{bottom:221.240533pt;}
.y1b4{bottom:221.251867pt;}
.yaf{bottom:221.451867pt;}
.y11d{bottom:221.470800pt;}
.y151{bottom:221.506800pt;}
.yf5{bottom:221.557067pt;}
.yd5{bottom:222.698267pt;}
.y62{bottom:223.229333pt;}
.y173{bottom:223.695200pt;}
.y1f3{bottom:223.697333pt;}
.y194{bottom:226.627867pt;}
.y1d5{bottom:226.837867pt;}
.y88{bottom:234.477200pt;}
.y3a{bottom:239.364533pt;}
.yae{bottom:239.606533pt;}
.y11c{bottom:239.611067pt;}
.y134{bottom:239.612933pt;}
.y150{bottom:239.661467pt;}
.yf4{bottom:239.708800pt;}
.y16{bottom:239.804667pt;}
.y1f2{bottom:241.030667pt;}
.yd4{bottom:241.220933pt;}
.y61{bottom:241.276267pt;}
.y172{bottom:241.696533pt;}
.y193{bottom:244.855867pt;}
.y1d4{bottom:245.107867pt;}
.y1b3{bottom:247.417867pt;}
.y87{bottom:252.217867pt;}
.y39{bottom:257.488533pt;}
.y11b{bottom:257.751333pt;}
.y133{bottom:257.752267pt;}
.yad{bottom:257.761200pt;}
.y14f{bottom:257.816133pt;}
.yf3{bottom:257.860400pt;}
.y1f1{bottom:258.364000pt;}
.y15{bottom:259.058000pt;}
.y60{bottom:259.338933pt;}
.y171{bottom:259.697867pt;}
.yd3{bottom:259.743600pt;}
.y1b2{bottom:266.023867pt;}
.y86{bottom:269.958533pt;}
.y192{bottom:270.643867pt;}
.y1d3{bottom:270.937867pt;}
.y38{bottom:275.612533pt;}
.y1f0{bottom:275.697333pt;}
.y11a{bottom:275.891600pt;}
.yac{bottom:275.915867pt;}
.y14e{bottom:275.970800pt;}
.yf2{bottom:276.001333pt;}
.y5f{bottom:277.401600pt;}
.y170{bottom:277.699200pt;}
.yd2{bottom:278.266267pt;}
.y14{bottom:278.317600pt;}
.y85{bottom:287.699200pt;}
.y191{bottom:288.871867pt;}
.y1d2{bottom:289.207867pt;}
.y1b1{bottom:292.189867pt;}
.y1ef{bottom:293.030667pt;}
.y37{bottom:293.736533pt;}
.y119{bottom:294.027200pt;}
.y132{bottom:294.039200pt;}
.yab{bottom:294.070533pt;}
.y14d{bottom:294.125467pt;}
.yf1{bottom:294.152933pt;}
.y5e{bottom:295.464267pt;}
.y16f{bottom:295.700533pt;}
.y13{bottom:296.237600pt;}
.yd1{bottom:296.788933pt;}
.y84{bottom:305.439867pt;}
.y190{bottom:307.099867pt;}
.y1ee{bottom:310.364000pt;}
.y1b0{bottom:310.795867pt;}
.y36{bottom:311.860533pt;}
.y118{bottom:312.172133pt;}
.y131{bottom:312.178533pt;}
.yaa{bottom:312.225200pt;}
.y14c{bottom:312.280133pt;}
.yf0{bottom:312.304533pt;}
.y5d{bottom:313.526933pt;}
.y16e{bottom:313.701867pt;}
.y12{bottom:314.157600pt;}
.y1d1{bottom:315.037867pt;}
.yd0{bottom:315.311600pt;}
.y83{bottom:323.180533pt;}
.y1ed{bottom:327.697333pt;}
.y35{bottom:329.984533pt;}
.y117{bottom:330.312400pt;}
.y130{bottom:330.317867pt;}
.ya9{bottom:330.379867pt;}
.y14b{bottom:330.434800pt;}
.yef{bottom:330.456133pt;}
.y5c{bottom:331.589600pt;}
.y16d{bottom:331.703200pt;}
.y11{bottom:332.077600pt;}
.y18f{bottom:332.887867pt;}
.y1d0{bottom:333.307867pt;}
.ycf{bottom:333.834267pt;}
.y1af{bottom:336.961867pt;}
.y82{bottom:340.921200pt;}
.y1ec{bottom:345.030667pt;}
.y34{bottom:348.108533pt;}
.y116{bottom:348.452533pt;}
.y12f{bottom:348.457200pt;}
.ya8{bottom:348.534533pt;}
.y14a{bottom:348.589467pt;}
.yee{bottom:348.601733pt;}
.y5b{bottom:349.652267pt;}
.y16c{bottom:349.704533pt;}
.y10{bottom:349.997600pt;}
.y18e{bottom:351.115867pt;}
.y1cf{bottom:351.577867pt;}
.yce{bottom:352.356933pt;}
.y1ae{bottom:355.567867pt;}
.y81{bottom:358.661867pt;}
.y1eb{bottom:362.364000pt;}
.y33{bottom:366.232533pt;}
.y115{bottom:366.592800pt;}
.y12e{bottom:366.596533pt;}
.ya7{bottom:366.689200pt;}
.y149{bottom:366.744133pt;}
.yed{bottom:366.756400pt;}
.y16b{bottom:367.705867pt;}
.y5a{bottom:367.714933pt;}
.yf{bottom:367.917600pt;}
.y18d{bottom:369.343867pt;}
.ycd{bottom:370.879600pt;}
.y80{bottom:376.402533pt;}
.y1ce{bottom:377.407867pt;}
.y1ea{bottom:379.697333pt;}
.y1ad{bottom:381.733867pt;}
.y32{bottom:384.356533pt;}
.y114{bottom:384.734000pt;}
.y12d{bottom:384.735867pt;}
.ya6{bottom:384.843867pt;}
.y148{bottom:384.898800pt;}
.yec{bottom:384.911067pt;}
.y16a{bottom:385.707200pt;}
.y59{bottom:385.777600pt;}
.ycc{bottom:389.402267pt;}
.y7f{bottom:394.143200pt;}
.y18c{bottom:395.131867pt;}
.y1cd{bottom:395.677867pt;}
.y1e9{bottom:397.030667pt;}
.ye{bottom:397.170933pt;}
.y1ac{bottom:400.339867pt;}
.y31{bottom:402.480533pt;}
.y113{bottom:402.873333pt;}
.y12c{bottom:402.875200pt;}
.ya5{bottom:402.998533pt;}
.y147{bottom:403.053467pt;}
.yeb{bottom:403.062667pt;}
.y169{bottom:403.708533pt;}
.ycb{bottom:407.924933pt;}
.y7e{bottom:411.883867pt;}
.y18b{bottom:413.359867pt;}
.y1e8{bottom:414.364000pt;}
.y58{bottom:415.176800pt;}
.y30{bottom:420.604533pt;}
.y112{bottom:421.013600pt;}
.y12b{bottom:421.014533pt;}
.ya4{bottom:421.153200pt;}
.y146{bottom:421.208133pt;}
.yea{bottom:421.214267pt;}
.y1cc{bottom:421.507867pt;}
.y168{bottom:421.709867pt;}
.yca{bottom:426.447600pt;}
.y1ab{bottom:426.505867pt;}
.y7d{bottom:429.624533pt;}
.y18a{bottom:431.587867pt;}
.y1e7{bottom:431.697333pt;}
.y2f{bottom:438.728533pt;}
.y111{bottom:439.153867pt;}
.ya3{bottom:439.307867pt;}
.y145{bottom:439.362800pt;}
.ye9{bottom:439.365867pt;}
.y167{bottom:439.711200pt;}
.y1cb{bottom:439.777867pt;}
.yc9{bottom:444.970267pt;}
.y1aa{bottom:445.111867pt;}
.y7c{bottom:447.365200pt;}
.y1e6{bottom:449.030667pt;}
.yd{bottom:449.112533pt;}
.y2e{bottom:456.852533pt;}
.y12a{bottom:457.294133pt;}
.y110{bottom:457.295867pt;}
.y189{bottom:457.375867pt;}
.ya2{bottom:457.462533pt;}
.ye8{bottom:457.517467pt;}
.y57{bottom:459.230267pt;}
.yc8{bottom:463.492933pt;}
.y7b{bottom:465.105867pt;}
.y1ca{bottom:465.607867pt;}
.y1e5{bottom:466.364000pt;}
.y1a9{bottom:471.277867pt;}
.yc{bottom:473.696533pt;}
.y2d{bottom:474.976533pt;}
.y129{bottom:475.434267pt;}
.y10f{bottom:475.435200pt;}
.y188{bottom:475.603867pt;}
.ya1{bottom:475.617200pt;}
.y144{bottom:475.666000pt;}
.ye7{bottom:475.669067pt;}
.y166{bottom:476.608800pt;}
.y56{bottom:477.292933pt;}
.yc7{bottom:482.015600pt;}
.y7a{bottom:482.846533pt;}
.y1e4{bottom:483.697333pt;}
.y1c9{bottom:483.877867pt;}
.y1a8{bottom:489.883867pt;}
.y2c{bottom:493.100533pt;}
.y10e{bottom:493.574533pt;}
.ya0{bottom:493.771867pt;}
.y143{bottom:493.820667pt;}
.ye6{bottom:493.831333pt;}
.y187{bottom:493.831867pt;}
.y55{bottom:495.355600pt;}
.yb{bottom:498.280533pt;}
.yc6{bottom:500.538267pt;}
.y79{bottom:500.587200pt;}
.y1c8{bottom:509.707867pt;}
.y2b{bottom:511.224533pt;}
.y10d{bottom:511.714800pt;}
.y9f{bottom:511.926533pt;}
.ye5{bottom:511.972267pt;}
.y1e3{bottom:512.364000pt;}
.y54{bottom:513.418267pt;}
.y1a7{bottom:516.049867pt;}
.y78{bottom:518.327867pt;}
.yc5{bottom:519.060933pt;}
.y186{bottom:519.619867pt;}
.y1c7{bottom:527.977867pt;}
.y2a{bottom:529.348533pt;}
.y10c{bottom:529.855067pt;}
.y9e{bottom:530.081200pt;}
.ye4{bottom:530.124000pt;}
.y53{bottom:531.480933pt;}
.y165{bottom:531.943200pt;}
.y1a6{bottom:534.655867pt;}
.y77{bottom:536.068533pt;}
.yc4{bottom:537.583600pt;}
.y185{bottom:537.847867pt;}
.ya{bottom:541.776267pt;}
.y29{bottom:547.472533pt;}
.y10b{bottom:547.995333pt;}
.y9d{bottom:548.235867pt;}
.y142{bottom:548.269467pt;}
.ye3{bottom:548.275600pt;}
.y52{bottom:549.543600pt;}
.y164{bottom:549.944533pt;}
.y1c6{bottom:553.807867pt;}
.y76{bottom:553.809200pt;}
.yc3{bottom:556.106267pt;}
.y1a5{bottom:560.821867pt;}
.y184{bottom:563.635867pt;}
.y1e2{bottom:563.702533pt;}
.y28{bottom:565.596533pt;}
.y10a{bottom:566.130933pt;}
.y128{bottom:566.135600pt;}
.y9c{bottom:566.390533pt;}
.y141{bottom:566.424133pt;}
.ye2{bottom:566.437867pt;}
.y51{bottom:567.606267pt;}
.y163{bottom:567.945867pt;}
.y9{bottom:570.360267pt;}
.y75{bottom:571.549867pt;}
.y1c5{bottom:572.077867pt;}
.yc2{bottom:574.628933pt;}
.y1a4{bottom:579.427867pt;}
.y183{bottom:581.863867pt;}
.y27{bottom:583.720533pt;}
.y109{bottom:584.275733pt;}
.y9b{bottom:584.545200pt;}
.ye1{bottom:584.575733pt;}
.y140{bottom:584.578800pt;}
.y50{bottom:585.668933pt;}
.y162{bottom:585.947200pt;}
.y1e1{bottom:587.707867pt;}
.y74{bottom:589.290533pt;}
.y1c4{bottom:590.347867pt;}
.yc1{bottom:593.151600pt;}
.y8{bottom:598.944267pt;}
.y26{bottom:601.844533pt;}
.y108{bottom:602.416000pt;}
.y9a{bottom:602.699867pt;}
.y13f{bottom:602.727333pt;}
.ye0{bottom:602.730400pt;}
.y4f{bottom:603.731600pt;}
.y161{bottom:603.948533pt;}
.y1a3{bottom:605.593867pt;}
.y73{bottom:607.031200pt;}
.y182{bottom:607.651867pt;}
.yc0{bottom:611.674267pt;}
.y1e0{bottom:611.713200pt;}
.y1c3{bottom:616.177867pt;}
.y25{bottom:619.968533pt;}
.y107{bottom:620.556267pt;}
.y99{bottom:620.854533pt;}
.ydf{bottom:620.882000pt;}
.y4e{bottom:621.778400pt;}
.y160{bottom:621.949867pt;}
.y1a2{bottom:624.199867pt;}
.y72{bottom:624.771867pt;}
.y181{bottom:625.879867pt;}
.y7{bottom:627.528267pt;}
.ybf{bottom:630.196933pt;}
.y1c2{bottom:634.447867pt;}
.y24{bottom:638.092533pt;}
.y106{bottom:638.691867pt;}
.y127{bottom:638.696533pt;}
.y98{bottom:639.009200pt;}
.yde{bottom:639.030533pt;}
.y13e{bottom:639.033600pt;}
.y4d{bottom:639.841067pt;}
.y15f{bottom:639.951200pt;}
.y71{bottom:642.512533pt;}
.ybe{bottom:648.719600pt;}
.y1a1{bottom:650.365867pt;}
.y180{bottom:651.667867pt;}
.y1c1{bottom:652.717867pt;}
.y6{bottom:656.112267pt;}
.y23{bottom:656.216533pt;}
.y105{bottom:656.836800pt;}
.y97{bottom:657.163867pt;}
.y13d{bottom:657.182267pt;}
.ydd{bottom:657.185200pt;}
.y4c{bottom:657.903733pt;}
.y15e{bottom:657.952533pt;}
.y70{bottom:660.253200pt;}
.ybd{bottom:667.242267pt;}
.y1a0{bottom:668.971867pt;}
.y17f{bottom:669.895867pt;}
.y104{bottom:674.977067pt;}
.y96{bottom:675.318533pt;}
.y13c{bottom:675.336933pt;}
.y15d{bottom:675.953867pt;}
.y4b{bottom:675.966400pt;}
.y6f{bottom:677.993867pt;}
.y1c0{bottom:678.547867pt;}
.ybc{bottom:685.764933pt;}
.y103{bottom:693.112533pt;}
.y126{bottom:693.117200pt;}
.y22{bottom:693.234400pt;}
.y95{bottom:693.473200pt;}
.y13b{bottom:693.488533pt;}
.y15c{bottom:693.955200pt;}
.y4a{bottom:694.029067pt;}
.y19f{bottom:695.137867pt;}
.y17e{bottom:695.683867pt;}
.y6e{bottom:695.696533pt;}
.y1bf{bottom:696.817867pt;}
.ybb{bottom:704.287600pt;}
.y1df{bottom:705.707867pt;}
.y102{bottom:711.252933pt;}
.y125{bottom:711.259333pt;}
.y94{bottom:711.627867pt;}
.y15b{bottom:711.956533pt;}
.y49{bottom:712.091733pt;}
.y6d{bottom:713.437200pt;}
.y19e{bottom:713.743867pt;}
.y1be{bottom:715.087867pt;}
.yba{bottom:722.816400pt;}
.y1de{bottom:723.711867pt;}
.y101{bottom:729.398667pt;}
.y93{bottom:729.782533pt;}
.y15a{bottom:729.956533pt;}
.y48{bottom:730.154400pt;}
.y6c{bottom:731.177867pt;}
.y5{bottom:737.967733pt;}
.y19d{bottom:739.909867pt;}
.y1bd{bottom:740.917867pt;}
.y17d{bottom:741.043867pt;}
.yb9{bottom:741.339067pt;}
.y1dd{bottom:741.715867pt;}
.y100{bottom:747.538000pt;}
.y92{bottom:747.937200pt;}
.y159{bottom:747.956533pt;}
.y47{bottom:748.217067pt;}
.y21{bottom:748.704000pt;}
.y6b{bottom:748.918533pt;}
.y4{bottom:757.221067pt;}
.y19c{bottom:758.515867pt;}
.y1bc{bottom:759.187867pt;}
.y17c{bottom:759.271867pt;}
.y1dc{bottom:759.719867pt;}
.yff{bottom:765.678267pt;}
.y158{bottom:765.956533pt;}
.y91{bottom:766.091867pt;}
.y46{bottom:766.275867pt;}
.y6a{bottom:766.659200pt;}
.y20{bottom:767.490667pt;}
.y17b{bottom:777.499867pt;}
.yb8{bottom:778.757733pt;}
.yfe{bottom:783.818533pt;}
.y157{bottom:783.956533pt;}
.y3{bottom:784.034400pt;}
.y90{bottom:784.246533pt;}
.y45{bottom:784.338533pt;}
.y69{bottom:784.399867pt;}
.y19b{bottom:784.681867pt;}
.y1bb{bottom:785.017867pt;}
.y1db{bottom:785.283867pt;}
.y1f{bottom:786.278000pt;}
.yb7{bottom:800.627733pt;}
.yfd{bottom:801.957867pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1e{bottom:803.731333pt;}
.y1d{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.h14{height:23.761805pt;}
.h11{height:30.247771pt;}
.h9{height:36.354167pt;}
.h12{height:40.898438pt;}
.h15{height:44.460938pt;}
.h4{height:45.442708pt;}
.h2a{height:45.447508pt;}
.h8{height:46.119792pt;}
.h3{height:47.714844pt;}
.h2c{height:49.401042pt;}
.h2b{height:51.871094pt;}
.hb{height:52.259115pt;}
.he{height:52.274581pt;}
.hf{height:52.322581pt;}
.hd{height:53.037760pt;}
.h2{height:56.803385pt;}
.hc{height:56.811198pt;}
.h10{height:56.874131pt;}
.h13{height:56.963198pt;}
.h23{height:59.248183pt;}
.h22{height:59.270050pt;}
.h20{height:59.270583pt;}
.h21{height:59.273783pt;}
.h1d{height:59.274317pt;}
.h1c{height:59.277517pt;}
.h1f{height:59.278050pt;}
.h19{height:59.281250pt;}
.h28{height:59.286583pt;}
.h1a{height:59.292983pt;}
.h18{height:59.293517pt;}
.h1e{height:59.295650pt;}
.h25{height:59.305250pt;}
.h17{height:59.305783pt;}
.h1b{height:59.317517pt;}
.h26{height:59.318050pt;}
.h24{height:59.342583pt;}
.h16{height:59.366583pt;}
.h27{height:59.451917pt;}
.h29{height:61.136719pt;}
.ha{height:61.347656pt;}
.h7{height:63.619792pt;}
.h5{height:81.796875pt;}
.h6{height:83.015625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.948000pt;}
.x8{left:73.079333pt;}
.x9{left:74.316133pt;}
.x1{left:75.590533pt;}
.xc{left:91.404267pt;}
.x6{left:93.027200pt;}
.x7{left:94.372667pt;}
.xb{left:189.034533pt;}
.x4{left:204.448000pt;}
.x5{left:205.627067pt;}
.x2{left:206.756800pt;}
.x3{left:208.016400pt;}
}




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