
    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_5321987a35de35e9de5fbf25.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124512;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_a602dc9ba13db642fdc1e96b.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_8cb7b0c4dcd13f26cfac079c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82e7b1993396558814ddd910.woff')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_22ea59f489ac2788c912b53f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.057129;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_635919e1a04eb0b70de08fa1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_455f9e2d8bbed9328cc4e124.woff')format("woff");}.ff7{font-family:ff7;line-height:1.377930;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.871400px;}
.v3{vertical-align:17.274000px;}
.ls75{letter-spacing:-5.985000px;}
.ls6d{letter-spacing:-5.103000px;}
.ls44{letter-spacing:-5.037000px;}
.ls53{letter-spacing:-4.485000px;}
.ls77{letter-spacing:-4.221000px;}
.ls43{letter-spacing:-4.140000px;}
.ls62{letter-spacing:-3.726000px;}
.ls2e{letter-spacing:-3.720000px;}
.ls58{letter-spacing:-3.657000px;}
.ls3f{letter-spacing:-3.588000px;}
.ls69{letter-spacing:-3.483000px;}
.ls3c{letter-spacing:-3.243000px;}
.ls28{letter-spacing:-3.240000px;}
.ls56{letter-spacing:-3.174000px;}
.ls52{letter-spacing:-3.105000px;}
.ls72{letter-spacing:-2.961000px;}
.ls63{letter-spacing:-2.898000px;}
.ls51{letter-spacing:-2.760000px;}
.ls6e{letter-spacing:-2.583000px;}
.ls6c{letter-spacing:-2.520000px;}
.ls70{letter-spacing:-2.394000px;}
.ls4a{letter-spacing:-2.346000px;}
.ls30{letter-spacing:-2.280000px;}
.ls59{letter-spacing:-2.277000px;}
.ls5f{letter-spacing:-2.070000px;}
.ls68{letter-spacing:-2.025000px;}
.ls33{letter-spacing:-1.980000px;}
.ls55{letter-spacing:-1.932000px;}
.ls5a{letter-spacing:-1.863000px;}
.ls20{letter-spacing:-1.860000px;}
.ls41{letter-spacing:-1.794000px;}
.ls4{letter-spacing:-1.728000px;}
.ls24{letter-spacing:-1.680000px;}
.ls47{letter-spacing:-1.656000px;}
.ls1b{letter-spacing:-1.650000px;}
.ls45{letter-spacing:-1.587000px;}
.ls32{letter-spacing:-1.560000px;}
.ls3d{letter-spacing:-1.518000px;}
.ls2d{letter-spacing:-1.500000px;}
.ls46{letter-spacing:-1.449000px;}
.ls2a{letter-spacing:-1.380000px;}
.ls22{letter-spacing:-1.320000px;}
.ls39{letter-spacing:-1.311000px;}
.ls49{letter-spacing:-1.242000px;}
.ls5e{letter-spacing:-1.215000px;}
.ls25{letter-spacing:-1.200000px;}
.ls3e{letter-spacing:-1.173000px;}
.ls2b{letter-spacing:-1.140000px;}
.ls29{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.035000px;}
.ls11{letter-spacing:-0.966000px;}
.ls78{letter-spacing:-0.945000px;}
.ls26{letter-spacing:-0.900000px;}
.ls3a{letter-spacing:-0.897000px;}
.ls74{letter-spacing:-0.882000px;}
.ls10{letter-spacing:-0.855000px;}
.ls2c{letter-spacing:-0.840000px;}
.ls37{letter-spacing:-0.828000px;}
.ls76{letter-spacing:-0.819000px;}
.ls21{letter-spacing:-0.780000px;}
.ls42{letter-spacing:-0.759000px;}
.ls40{letter-spacing:-0.690000px;}
.ls18{letter-spacing:-0.627000px;}
.ls14{letter-spacing:-0.621000px;}
.ls5d{letter-spacing:-0.570000px;}
.ls3b{letter-spacing:-0.552000px;}
.ls31{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.483000px;}
.ls16{letter-spacing:-0.345000px;}
.ls5{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.207000px;}
.ls6f{letter-spacing:-0.189000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls4b{letter-spacing:-0.171000px;}
.ls34{letter-spacing:-0.138000px;}
.ls15{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.002640px;}
.ls4e{letter-spacing:0.180000px;}
.ls5c{letter-spacing:0.225000px;}
.ls7{letter-spacing:0.240000px;}
.ls1d{letter-spacing:0.276000px;}
.ls4f{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.420000px;}
.ls50{letter-spacing:0.450000px;}
.ls66{letter-spacing:0.483000px;}
.ls64{letter-spacing:0.552000px;}
.lse{letter-spacing:0.600000px;}
.ls6a{letter-spacing:0.621000px;}
.ls65{letter-spacing:0.674331px;}
.ls36{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.050000px;}
.ls1e{letter-spacing:1.104000px;}
.ls27{letter-spacing:1.140000px;}
.ls61{letter-spacing:1.173000px;}
.lsd{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.344000px;}
.ls7a{letter-spacing:1.425000px;}
.ls38{letter-spacing:2.001000px;}
.ls9{letter-spacing:2.400000px;}
.lsf{letter-spacing:3.696000px;}
.ls7b{letter-spacing:3.720000px;}
.ls6b{letter-spacing:4.347000px;}
.ls73{letter-spacing:5.418000px;}
.lsc{letter-spacing:5.460000px;}
.ls57{letter-spacing:5.727000px;}
.ls3{letter-spacing:5.820000px;}
.ls6{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls71{letter-spacing:6.300000px;}
.ls79{letter-spacing:501.002400px;}
.ls60{letter-spacing:501.527400px;}
.ls8{letter-spacing:504.435600px;}
.ls67{letter-spacing:504.444600px;}
.ls35{letter-spacing:504.577800px;}
.ls4c{letter-spacing:505.065600px;}
.ls5b{letter-spacing:505.252800px;}
.ls19{letter-spacing:507.127800px;}
.ls0{letter-spacing:990.024000px;}
.ls23{letter-spacing:990.522000px;}
.ls48{letter-spacing:993.144000px;}
.ls54{letter-spacing:997.194000px;}
.ls12{letter-spacing:999.174000px;}
.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:-30.024000px;}
.ws1{word-spacing:-22.740000px;}
.ws84{word-spacing:-22.500000px;}
.ws7{word-spacing:-22.125000px;}
.ws76{word-spacing:-22.050000px;}
.ws34{word-spacing:-21.975000px;}
.ws4e{word-spacing:-21.525000px;}
.ws62{word-spacing:-21.300000px;}
.ws85{word-spacing:-20.580000px;}
.ws18{word-spacing:-19.665000px;}
.ws16{word-spacing:-19.425000px;}
.ws6c{word-spacing:-19.389000px;}
.ws74{word-spacing:-19.278000px;}
.ws17{word-spacing:-19.182000px;}
.ws73{word-spacing:-19.050000px;}
.ws1a{word-spacing:-19.044000px;}
.ws38{word-spacing:-17.595000px;}
.ws37{word-spacing:-17.457000px;}
.ws4b{word-spacing:-17.388000px;}
.ws22{word-spacing:-17.100000px;}
.ws51{word-spacing:-16.560000px;}
.ws59{word-spacing:-16.422000px;}
.ws2b{word-spacing:-16.320000px;}
.ws3a{word-spacing:-16.284000px;}
.ws2c{word-spacing:-16.200000px;}
.ws35{word-spacing:-16.146000px;}
.ws39{word-spacing:-16.008000px;}
.ws71{word-spacing:-15.870000px;}
.ws36{word-spacing:-15.801000px;}
.ws52{word-spacing:-15.732000px;}
.ws53{word-spacing:-15.456000px;}
.ws1c{word-spacing:-15.420000px;}
.ws26{word-spacing:-15.360000px;}
.ws78{word-spacing:-15.309000px;}
.ws2d{word-spacing:-15.300000px;}
.ws54{word-spacing:-15.249000px;}
.ws5a{word-spacing:-15.180000px;}
.ws23{word-spacing:-15.120000px;}
.ws58{word-spacing:-15.111000px;}
.ws25{word-spacing:-15.060000px;}
.ws21{word-spacing:-15.000000px;}
.ws1d{word-spacing:-14.880000px;}
.ws24{word-spacing:-14.820000px;}
.ws27{word-spacing:-14.700000px;}
.ws4c{word-spacing:-14.697000px;}
.ws20{word-spacing:-14.520000px;}
.ws1b{word-spacing:-14.340000px;}
.ws86{word-spacing:-14.040000px;}
.ws29{word-spacing:-13.920000px;}
.ws79{word-spacing:-13.482000px;}
.ws8{word-spacing:-13.146000px;}
.ws77{word-spacing:-13.041000px;}
.ws28{word-spacing:-12.480000px;}
.ws63{word-spacing:-11.303787px;}
.ws67{word-spacing:-6.900000px;}
.ws7d{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.ws4{word-spacing:-5.820000px;}
.ws5e{word-spacing:-5.727000px;}
.wsa{word-spacing:-5.460000px;}
.ws7f{word-spacing:-5.418000px;}
.wsd{word-spacing:-3.696000px;}
.ws69{word-spacing:-3.312000px;}
.ws9{word-spacing:-2.400000px;}
.ws3c{word-spacing:-2.001000px;}
.ws6b{word-spacing:-1.656000px;}
.wsb{word-spacing:-1.260000px;}
.ws6d{word-spacing:-1.173000px;}
.ws2f{word-spacing:-1.140000px;}
.ws1f{word-spacing:-1.104000px;}
.ws75{word-spacing:-0.621000px;}
.wsc{word-spacing:-0.600000px;}
.ws70{word-spacing:-0.552000px;}
.ws72{word-spacing:-0.483000px;}
.ws6{word-spacing:-0.240000px;}
.ws4f{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.069000px;}
.ws2a{word-spacing:0.120000px;}
.ws33{word-spacing:0.138000px;}
.ws4d{word-spacing:0.171000px;}
.ws31{word-spacing:0.180000px;}
.ws7c{word-spacing:0.189000px;}
.ws14{word-spacing:0.207000px;}
.ws10{word-spacing:0.300000px;}
.ws13{word-spacing:0.345000px;}
.ws19{word-spacing:0.414000px;}
.ws68{word-spacing:0.483000px;}
.ws87{word-spacing:0.540000px;}
.ws3f{word-spacing:0.552000px;}
.ws64{word-spacing:0.570000px;}
.ws11{word-spacing:0.621000px;}
.ws15{word-spacing:0.627000px;}
.ws43{word-spacing:0.690000px;}
.ws56{word-spacing:0.759000px;}
.ws82{word-spacing:0.819000px;}
.ws3b{word-spacing:0.828000px;}
.wse{word-spacing:0.855000px;}
.ws80{word-spacing:0.882000px;}
.ws3e{word-spacing:0.897000px;}
.ws2e{word-spacing:0.900000px;}
.ws83{word-spacing:0.945000px;}
.wsf{word-spacing:0.966000px;}
.ws1e{word-spacing:1.035000px;}
.ws42{word-spacing:1.173000px;}
.ws65{word-spacing:1.215000px;}
.ws3d{word-spacing:1.311000px;}
.ws6a{word-spacing:1.380000px;}
.ws49{word-spacing:1.449000px;}
.ws88{word-spacing:1.500000px;}
.ws41{word-spacing:1.518000px;}
.ws48{word-spacing:1.587000px;}
.ws4a{word-spacing:1.656000px;}
.ws5{word-spacing:1.728000px;}
.ws45{word-spacing:1.794000px;}
.ws5b{word-spacing:1.932000px;}
.ws32{word-spacing:1.980000px;}
.ws66{word-spacing:2.070000px;}
.ws60{word-spacing:2.277000px;}
.ws7b{word-spacing:2.583000px;}
.ws50{word-spacing:2.691000px;}
.ws5c{word-spacing:2.760000px;}
.ws6f{word-spacing:2.898000px;}
.ws7e{word-spacing:2.961000px;}
.ws55{word-spacing:3.105000px;}
.ws5d{word-spacing:3.174000px;}
.ws30{word-spacing:3.240000px;}
.ws61{word-spacing:3.243000px;}
.ws40{word-spacing:3.312000px;}
.ws44{word-spacing:3.588000px;}
.ws5f{word-spacing:3.657000px;}
.ws6e{word-spacing:3.726000px;}
.ws46{word-spacing:4.140000px;}
.ws57{word-spacing:4.485000px;}
.ws47{word-spacing:5.037000px;}
.ws81{word-spacing:5.544000px;}
.ws7a{word-spacing:7.560000px;}
._24{margin-left:-10.119600px;}
._a{margin-left:-8.211600px;}
._23{margin-left:-7.167000px;}
._5{margin-left:-5.808000px;}
._6{margin-left:-4.506000px;}
._f{margin-left:-3.477600px;}
._7{margin-left:-2.473800px;}
._2{margin-left:-1.057800px;}
._4{width:1.159800px;}
._1{width:2.400000px;}
._8{width:3.433800px;}
._9{width:4.591200px;}
._3{width:5.880000px;}
._b{width:7.582200px;}
._c{width:8.764200px;}
._d{width:9.866400px;}
._18{width:11.292000px;}
._14{width:13.260600px;}
._15{width:14.703900px;}
._22{width:16.016700px;}
._1e{width:18.980400px;}
._11{width:20.540400px;}
._12{width:22.332000px;}
._13{width:24.027000px;}
._1f{width:25.400400px;}
._20{width:26.460000px;}
._16{width:27.994800px;}
._17{width:29.193300px;}
._1d{width:39.040200px;}
._21{width:40.500000px;}
._1b{width:41.500200px;}
._1a{width:42.600000px;}
._1c{width:47.700000px;}
._19{width:49.180200px;}
._e{width:50.652000px;}
._10{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.482000px;}
.fsb{font-size:34.980000px;}
.fse{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{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;}
.yb5{bottom:106.165500px;}
.y139{bottom:106.269000px;}
.y61{bottom:106.278000px;}
.y1d{bottom:106.287000px;}
.y116{bottom:106.293300px;}
.y3e{bottom:106.300500px;}
.yaa{bottom:106.302000px;}
.y84{bottom:106.304850px;}
.y15d{bottom:109.294800px;}
.yf6{bottom:123.531000px;}
.y115{bottom:123.546300px;}
.y1c{bottom:126.117000px;}
.yb4{bottom:126.589500px;}
.y83{bottom:126.747000px;}
.ya9{bottom:126.760500px;}
.y3d{bottom:126.810750px;}
.y60{bottom:127.098750px;}
.y138{bottom:127.227750px;}
.yf5{bottom:140.784000px;}
.y114{bottom:143.794800px;}
.y1b{bottom:145.947000px;}
.yb3{bottom:147.013500px;}
.y82{bottom:147.162000px;}
.ya8{bottom:147.219000px;}
.y3c{bottom:147.321000px;}
.y5f{bottom:147.919500px;}
.y137{bottom:148.186500px;}
.y15c{bottom:153.364500px;}
.yf4{bottom:158.037000px;}
.y1a{bottom:165.777000px;}
.yd5{bottom:166.963500px;}
.yb2{bottom:167.437500px;}
.y81{bottom:167.577000px;}
.ya7{bottom:167.677500px;}
.y3b{bottom:167.831250px;}
.y5e{bottom:168.740250px;}
.y136{bottom:169.145250px;}
.y15b{bottom:173.616000px;}
.yf3{bottom:175.290000px;}
.y19{bottom:185.607000px;}
.yd4{bottom:187.232250px;}
.y113{bottom:187.698000px;}
.yb1{bottom:187.861500px;}
.y80{bottom:187.992000px;}
.ya6{bottom:188.136000px;}
.y3a{bottom:188.341500px;}
.y5d{bottom:189.561000px;}
.y135{bottom:190.104000px;}
.yf2{bottom:192.543000px;}
.y15a{bottom:193.867500px;}
.y18{bottom:205.437000px;}
.yd3{bottom:207.501000px;}
.yb0{bottom:208.285500px;}
.y7f{bottom:208.407000px;}
.ya5{bottom:208.594500px;}
.y112{bottom:208.605000px;}
.y39{bottom:208.851750px;}
.yf1{bottom:209.796000px;}
.y134{bottom:211.062750px;}
.y159{bottom:214.119000px;}
.y17{bottom:225.267000px;}
.yd2{bottom:227.769750px;}
.yaf{bottom:228.709500px;}
.y7e{bottom:228.822000px;}
.ya4{bottom:229.053000px;}
.y38{bottom:229.362000px;}
.y111{bottom:229.512000px;}
.yf0{bottom:230.044500px;}
.y5c{bottom:231.639750px;}
.y133{bottom:232.021500px;}
.y158{bottom:234.370500px;}
.y16{bottom:245.097000px;}
.yd1{bottom:248.038500px;}
.yae{bottom:249.133500px;}
.ya3{bottom:249.511500px;}
.y37{bottom:249.872250px;}
.y110{bottom:250.419000px;}
.y132{bottom:252.980250px;}
.y157{bottom:254.622000px;}
.y5b{bottom:256.203000px;}
.yd0{bottom:268.307250px;}
.y7d{bottom:269.557500px;}
.y36{bottom:270.382500px;}
.y10f{bottom:271.326000px;}
.y131{bottom:273.939000px;}
.yef{bottom:274.026750px;}
.y156{bottom:274.873500px;}
.y15{bottom:277.677000px;}
.ycf{bottom:288.576000px;}
.yad{bottom:289.981500px;}
.ya2{bottom:290.398500px;}
.y35{bottom:290.892750px;}
.y176{bottom:292.639500px;}
.yee{bottom:294.761250px;}
.y130{bottom:294.897750px;}
.y155{bottom:295.125000px;}
.yce{bottom:308.844750px;}
.y7c{bottom:310.405500px;}
.ya1{bottom:310.858500px;}
.y34{bottom:311.403000px;}
.y175{bottom:312.891000px;}
.y10e{bottom:313.122750px;}
.y154{bottom:315.376500px;}
.yed{bottom:315.495750px;}
.y12f{bottom:315.856500px;}
.y5a{bottom:318.926250px;}
.ycd{bottom:329.113500px;}
.y7b{bottom:330.829500px;}
.ya0{bottom:331.318500px;}
.y33{bottom:331.913250px;}
.y174{bottom:333.142500px;}
.y10d{bottom:334.029750px;}
.y153{bottom:335.628000px;}
.y14{bottom:335.799000px;}
.yec{bottom:336.230250px;}
.y12e{bottom:336.815250px;}
.y59{bottom:339.747000px;}
.ycc{bottom:349.382250px;}
.y7a{bottom:351.253500px;}
.y9f{bottom:351.778500px;}
.y32{bottom:352.423500px;}
.y173{bottom:353.394000px;}
.y152{bottom:355.879500px;}
.yeb{bottom:356.964750px;}
.y12d{bottom:357.774000px;}
.y58{bottom:360.567750px;}
.y13{bottom:363.120000px;}
.ycb{bottom:369.651000px;}
.y79{bottom:371.677500px;}
.y9e{bottom:372.238500px;}
.y172{bottom:373.645500px;}
.y10c{bottom:375.826500px;}
.y151{bottom:376.131000px;}
.yea{bottom:377.699250px;}
.y12c{bottom:378.732750px;}
.y57{bottom:381.388500px;}
.yca{bottom:389.919750px;}
.y12{bottom:390.441000px;}
.y78{bottom:392.101500px;}
.y9d{bottom:392.698500px;}
.y171{bottom:393.897000px;}
.y31{bottom:394.194000px;}
.y150{bottom:396.382500px;}
.y10b{bottom:396.733500px;}
.ye9{bottom:398.433750px;}
.y12b{bottom:399.691500px;}
.y56{bottom:402.209250px;}
.yc9{bottom:410.188500px;}
.y19f{bottom:410.934000px;}
.y77{bottom:412.525500px;}
.y9c{bottom:413.158500px;}
.y170{bottom:414.148500px;}
.y14f{bottom:416.634000px;}
.y10a{bottom:417.640500px;}
.y11{bottom:417.762000px;}
.y18b{bottom:418.819500px;}
.y12a{bottom:420.650250px;}
.y55{bottom:423.030000px;}
.yc8{bottom:430.457250px;}
.y19e{bottom:431.184000px;}
.yac{bottom:432.949500px;}
.y9b{bottom:433.618500px;}
.y16f{bottom:434.400000px;}
.y14e{bottom:436.885500px;}
.y109{bottom:438.547500px;}
.y18a{bottom:439.074000px;}
.ye8{bottom:439.885500px;}
.y129{bottom:441.609000px;}
.y54{bottom:443.850750px;}
.y10{bottom:445.083000px;}
.yc7{bottom:450.726000px;}
.y19d{bottom:451.434000px;}
.y76{bottom:453.373500px;}
.y9a{bottom:454.078500px;}
.y16e{bottom:454.651500px;}
.y14d{bottom:457.137000px;}
.y108{bottom:459.454500px;}
.ye7{bottom:460.620000px;}
.y128{bottom:462.567750px;}
.y53{bottom:464.671500px;}
.y189{bottom:467.833500px;}
.y19c{bottom:471.684000px;}
.yab{bottom:473.797500px;}
.y99{bottom:474.538500px;}
.y16d{bottom:474.903000px;}
.y30{bottom:477.237000px;}
.y14c{bottom:477.388500px;}
.y107{bottom:480.361500px;}
.ye6{bottom:481.354500px;}
.y127{bottom:483.526500px;}
.y52{bottom:485.492250px;}
.y188{bottom:488.088000px;}
.yc6{bottom:492.240000px;}
.yf{bottom:493.629000px;}
.y75{bottom:494.221500px;}
.y98{bottom:494.998500px;}
.y16c{bottom:495.154500px;}
.y14b{bottom:497.640000px;}
.y2f{bottom:498.492000px;}
.y106{bottom:501.268500px;}
.ye5{bottom:502.089000px;}
.y126{bottom:504.485250px;}
.y19b{bottom:504.684000px;}
.y51{bottom:506.313000px;}
.y187{bottom:508.342500px;}
.y74{bottom:514.645500px;}
.y16b{bottom:515.406000px;}
.y97{bottom:515.458500px;}
.yc5{bottom:516.256500px;}
.y14a{bottom:517.891500px;}
.y105{bottom:522.175500px;}
.y125{bottom:525.444000px;}
.ye{bottom:525.462000px;}
.y50{bottom:527.133750px;}
.y73{bottom:535.069500px;}
.y16a{bottom:535.657500px;}
.y96{bottom:535.918500px;}
.y186{bottom:537.102000px;}
.y149{bottom:538.143000px;}
.y2e{bottom:541.056000px;}
.y104{bottom:543.082500px;}
.ye4{bottom:543.547500px;}
.y19a{bottom:546.189000px;}
.y124{bottom:546.402750px;}
.y4f{bottom:547.954500px;}
.y72{bottom:555.493500px;}
.y169{bottom:555.909000px;}
.y95{bottom:556.378500px;}
.yd{bottom:557.295000px;}
.y185{bottom:557.356500px;}
.y2d{bottom:560.811000px;}
.y103{bottom:563.916000px;}
.ye3{bottom:564.277500px;}
.y199{bottom:565.689000px;}
.y123{bottom:567.361500px;}
.y4e{bottom:568.775250px;}
.y71{bottom:575.917500px;}
.y168{bottom:576.160500px;}
.y94{bottom:576.838500px;}
.y184{bottom:577.611000px;}
.yc4{bottom:578.418750px;}
.y148{bottom:578.646000px;}
.y2c{bottom:580.566000px;}
.y102{bottom:584.823000px;}
.ye2{bottom:585.007500px;}
.y198{bottom:585.189000px;}
.y122{bottom:588.320250px;}
.yc{bottom:589.128000px;}
.y4d{bottom:589.596000px;}
.y70{bottom:596.341500px;}
.y167{bottom:596.412000px;}
.y93{bottom:597.298500px;}
.yc3{bottom:598.687500px;}
.y147{bottom:598.897500px;}
.y2b{bottom:600.321000px;}
.y197{bottom:604.689000px;}
.y101{bottom:605.730000px;}
.ye1{bottom:605.736000px;}
.y183{bottom:606.370500px;}
.y121{bottom:609.279000px;}
.y4c{bottom:610.416750px;}
.y166{bottom:616.663500px;}
.y6f{bottom:616.765500px;}
.y92{bottom:617.758500px;}
.yc2{bottom:618.956250px;}
.y146{bottom:619.150500px;}
.y2a{bottom:620.076000px;}
.yb{bottom:620.961000px;}
.y196{bottom:624.189000px;}
.ye0{bottom:626.466000px;}
.y182{bottom:626.625000px;}
.y100{bottom:626.637000px;}
.y120{bottom:630.237750px;}
.y4b{bottom:631.237500px;}
.y165{bottom:636.915000px;}
.y6e{bottom:637.189500px;}
.y91{bottom:638.218500px;}
.yc1{bottom:639.225000px;}
.y145{bottom:639.402000px;}
.y29{bottom:639.831000px;}
.y195{bottom:643.689000px;}
.y181{bottom:646.879500px;}
.ydf{bottom:647.196000px;}
.yff{bottom:647.544000px;}
.y4a{bottom:652.058250px;}
.ya{bottom:652.794000px;}
.y164{bottom:657.166500px;}
.y6d{bottom:657.613500px;}
.y90{bottom:658.678500px;}
.yc0{bottom:659.493750px;}
.y28{bottom:659.586000px;}
.y194{bottom:663.189000px;}
.yde{bottom:667.924500px;}
.yfe{bottom:668.451000px;}
.y11f{bottom:672.155250px;}
.y49{bottom:672.879000px;}
.y180{bottom:675.639000px;}
.y163{bottom:677.418000px;}
.y6c{bottom:678.037500px;}
.y8f{bottom:679.138500px;}
.y27{bottom:679.341000px;}
.ybf{bottom:679.762500px;}
.y144{bottom:679.935000px;}
.y193{bottom:682.689000px;}
.y9{bottom:684.627000px;}
.ydd{bottom:688.654500px;}
.yfd{bottom:689.358000px;}
.y48{bottom:693.699750px;}
.y17f{bottom:695.893500px;}
.y162{bottom:697.669500px;}
.y6b{bottom:698.461500px;}
.y26{bottom:699.096000px;}
.y8e{bottom:699.598500px;}
.ybe{bottom:700.031250px;}
.y143{bottom:700.186500px;}
.y192{bottom:702.189000px;}
.ydc{bottom:709.384500px;}
.yfc{bottom:710.265000px;}
.y11e{bottom:714.072750px;}
.y47{bottom:714.520500px;}
.y8{bottom:716.460000px;}
.y161{bottom:717.921000px;}
.y25{bottom:718.851000px;}
.y6a{bottom:718.885500px;}
.y8d{bottom:720.058500px;}
.ybd{bottom:720.300000px;}
.y142{bottom:720.438000px;}
.y17e{bottom:724.653000px;}
.ydb{bottom:730.114500px;}
.yfb{bottom:731.172000px;}
.y191{bottom:734.439000px;}
.y11d{bottom:735.031500px;}
.y46{bottom:735.341250px;}
.y160{bottom:738.172500px;}
.y69{bottom:739.309500px;}
.y8c{bottom:740.518500px;}
.ybc{bottom:740.568750px;}
.y141{bottom:740.689500px;}
.y17d{bottom:744.907500px;}
.y7{bottom:748.293000px;}
.yda{bottom:750.844500px;}
.y24{bottom:751.371000px;}
.yfa{bottom:752.079000px;}
.y11c{bottom:755.990250px;}
.y45{bottom:756.162000px;}
.y15f{bottom:758.424000px;}
.y68{bottom:759.733500px;}
.ybb{bottom:760.837500px;}
.y140{bottom:760.941000px;}
.y8b{bottom:760.978500px;}
.y17c{bottom:765.162000px;}
.yd9{bottom:771.573000px;}
.y67{bottom:780.157500px;}
.yba{bottom:781.106250px;}
.y13f{bottom:781.192500px;}
.y8a{bottom:781.438500px;}
.y17b{bottom:785.416500px;}
.y190{bottom:792.183000px;}
.yd8{bottom:792.303000px;}
.yf9{bottom:794.241750px;}
.y11b{bottom:797.907750px;}
.y44{bottom:798.237000px;}
.y15e{bottom:799.933500px;}
.y66{bottom:800.581500px;}
.y23{bottom:800.901000px;}
.yb9{bottom:801.375000px;}
.y13e{bottom:801.444000px;}
.y89{bottom:801.898500px;}
.y17a{bottom:805.671000px;}
.y6{bottom:809.875500px;}
.yd7{bottom:813.033000px;}
.y11a{bottom:818.866500px;}
.yf8{bottom:818.886000px;}
.y18f{bottom:819.189000px;}
.y65{bottom:821.005500px;}
.yb8{bottom:821.643750px;}
.y13d{bottom:821.695500px;}
.y22{bottom:822.156000px;}
.y88{bottom:822.358500px;}
.y5{bottom:831.205500px;}
.y179{bottom:834.430500px;}
.y119{bottom:839.825250px;}
.y64{bottom:841.429500px;}
.yb7{bottom:841.912500px;}
.y13c{bottom:841.947000px;}
.y87{bottom:842.818500px;}
.y18e{bottom:846.195000px;}
.y4{bottom:852.535500px;}
.yd6{bottom:854.491500px;}
.y178{bottom:854.685000px;}
.y118{bottom:860.784000px;}
.y43{bottom:861.060000px;}
.y63{bottom:861.853500px;}
.yb6{bottom:862.181250px;}
.y13b{bottom:862.198500px;}
.y86{bottom:863.278500px;}
.y21{bottom:864.688500px;}
.y18d{bottom:873.201000px;}
.y177{bottom:874.939500px;}
.y117{bottom:881.742750px;}
.yf7{bottom:881.794500px;}
.y42{bottom:881.880750px;}
.y62{bottom:882.277500px;}
.y3{bottom:882.370500px;}
.y13a{bottom:882.450000px;}
.y85{bottom:883.738500px;}
.y20{bottom:884.443500px;}
.y18c{bottom:900.207000px;}
.y41{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y1f{bottom:904.198500px;}
.y1e{bottom:948.189000px;}
.y40{bottom:966.189000px;}
.y3f{bottom:984.189000px;}
.h10{height:34.872492px;}
.h7{height:41.648438px;}
.h11{height:46.854492px;}
.ha{height:50.947266px;}
.h4{height:52.060547px;}
.hc{height:52.119141px;}
.hd{height:52.186547px;}
.h13{height:53.494629px;}
.h3{height:54.663574px;}
.h9{height:59.869629px;}
.hb{height:59.937012px;}
.h12{height:60.163629px;}
.h2{height:65.075684px;}
.h15{height:67.236328px;}
.h8{height:70.281738px;}
.h14{height:70.598145px;}
.h6{height:72.884766px;}
.he{height:77.321777px;}
.hf{height:80.683594px;}
.h5{height:93.708984px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:80.896650px;}
.x8{left:82.423050px;}
.x6{left:83.745000px;}
.x1{left:85.039350px;}
.xd{left:102.666600px;}
.xc{left:104.043450px;}
.x5{left:105.885000px;}
.x9{left:118.500300px;}
.xb{left:148.125300px;}
.xa{left:149.190300px;}
.x7{left:212.664000px;}
.x4{left:230.608500px;}
.x2{left:232.602000px;}
.x3{left:233.736000px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.330133pt;}
.v3{vertical-align:15.354667pt;}
.ls75{letter-spacing:-5.320000pt;}
.ls6d{letter-spacing:-4.536000pt;}
.ls44{letter-spacing:-4.477333pt;}
.ls53{letter-spacing:-3.986667pt;}
.ls77{letter-spacing:-3.752000pt;}
.ls43{letter-spacing:-3.680000pt;}
.ls62{letter-spacing:-3.312000pt;}
.ls2e{letter-spacing:-3.306667pt;}
.ls58{letter-spacing:-3.250667pt;}
.ls3f{letter-spacing:-3.189333pt;}
.ls69{letter-spacing:-3.096000pt;}
.ls3c{letter-spacing:-2.882667pt;}
.ls28{letter-spacing:-2.880000pt;}
.ls56{letter-spacing:-2.821333pt;}
.ls52{letter-spacing:-2.760000pt;}
.ls72{letter-spacing:-2.632000pt;}
.ls63{letter-spacing:-2.576000pt;}
.ls51{letter-spacing:-2.453333pt;}
.ls6e{letter-spacing:-2.296000pt;}
.ls6c{letter-spacing:-2.240000pt;}
.ls70{letter-spacing:-2.128000pt;}
.ls4a{letter-spacing:-2.085333pt;}
.ls30{letter-spacing:-2.026667pt;}
.ls59{letter-spacing:-2.024000pt;}
.ls5f{letter-spacing:-1.840000pt;}
.ls68{letter-spacing:-1.800000pt;}
.ls33{letter-spacing:-1.760000pt;}
.ls55{letter-spacing:-1.717333pt;}
.ls5a{letter-spacing:-1.656000pt;}
.ls20{letter-spacing:-1.653333pt;}
.ls41{letter-spacing:-1.594667pt;}
.ls4{letter-spacing:-1.536000pt;}
.ls24{letter-spacing:-1.493333pt;}
.ls47{letter-spacing:-1.472000pt;}
.ls1b{letter-spacing:-1.466667pt;}
.ls45{letter-spacing:-1.410667pt;}
.ls32{letter-spacing:-1.386667pt;}
.ls3d{letter-spacing:-1.349333pt;}
.ls2d{letter-spacing:-1.333333pt;}
.ls46{letter-spacing:-1.288000pt;}
.ls2a{letter-spacing:-1.226667pt;}
.ls22{letter-spacing:-1.173333pt;}
.ls39{letter-spacing:-1.165333pt;}
.ls49{letter-spacing:-1.104000pt;}
.ls5e{letter-spacing:-1.080000pt;}
.ls25{letter-spacing:-1.066667pt;}
.ls3e{letter-spacing:-1.042667pt;}
.ls2b{letter-spacing:-1.013333pt;}
.ls29{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.920000pt;}
.ls11{letter-spacing:-0.858667pt;}
.ls78{letter-spacing:-0.840000pt;}
.ls26{letter-spacing:-0.800000pt;}
.ls3a{letter-spacing:-0.797333pt;}
.ls74{letter-spacing:-0.784000pt;}
.ls10{letter-spacing:-0.760000pt;}
.ls2c{letter-spacing:-0.746667pt;}
.ls37{letter-spacing:-0.736000pt;}
.ls76{letter-spacing:-0.728000pt;}
.ls21{letter-spacing:-0.693333pt;}
.ls42{letter-spacing:-0.674667pt;}
.ls40{letter-spacing:-0.613333pt;}
.ls18{letter-spacing:-0.557333pt;}
.ls14{letter-spacing:-0.552000pt;}
.ls5d{letter-spacing:-0.506667pt;}
.ls3b{letter-spacing:-0.490667pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.429333pt;}
.ls16{letter-spacing:-0.306667pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.184000pt;}
.ls6f{letter-spacing:-0.168000pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls4b{letter-spacing:-0.152000pt;}
.ls34{letter-spacing:-0.122667pt;}
.ls15{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.002347pt;}
.ls4e{letter-spacing:0.160000pt;}
.ls5c{letter-spacing:0.200000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls1d{letter-spacing:0.245333pt;}
.ls4f{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.373333pt;}
.ls50{letter-spacing:0.400000pt;}
.ls66{letter-spacing:0.429333pt;}
.ls64{letter-spacing:0.490667pt;}
.lse{letter-spacing:0.533333pt;}
.ls6a{letter-spacing:0.552000pt;}
.ls65{letter-spacing:0.599405pt;}
.ls36{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.933333pt;}
.ls1e{letter-spacing:0.981333pt;}
.ls27{letter-spacing:1.013333pt;}
.ls61{letter-spacing:1.042667pt;}
.lsd{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.194667pt;}
.ls7a{letter-spacing:1.266667pt;}
.ls38{letter-spacing:1.778667pt;}
.ls9{letter-spacing:2.133333pt;}
.lsf{letter-spacing:3.285333pt;}
.ls7b{letter-spacing:3.306667pt;}
.ls6b{letter-spacing:3.864000pt;}
.ls73{letter-spacing:4.816000pt;}
.lsc{letter-spacing:4.853333pt;}
.ls57{letter-spacing:5.090667pt;}
.ls3{letter-spacing:5.173333pt;}
.ls6{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls71{letter-spacing:5.600000pt;}
.ls79{letter-spacing:445.335467pt;}
.ls60{letter-spacing:445.802133pt;}
.ls8{letter-spacing:448.387200pt;}
.ls67{letter-spacing:448.395200pt;}
.ls35{letter-spacing:448.513600pt;}
.ls4c{letter-spacing:448.947200pt;}
.ls5b{letter-spacing:449.113600pt;}
.ls19{letter-spacing:450.780267pt;}
.ls0{letter-spacing:880.021333pt;}
.ls23{letter-spacing:880.464000pt;}
.ls48{letter-spacing:882.794667pt;}
.ls54{letter-spacing:886.394667pt;}
.ls12{letter-spacing:888.154667pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws84{word-spacing:-20.000000pt;}
.ws7{word-spacing:-19.666667pt;}
.ws76{word-spacing:-19.600000pt;}
.ws34{word-spacing:-19.533333pt;}
.ws4e{word-spacing:-19.133333pt;}
.ws62{word-spacing:-18.933333pt;}
.ws85{word-spacing:-18.293333pt;}
.ws18{word-spacing:-17.480000pt;}
.ws16{word-spacing:-17.266667pt;}
.ws6c{word-spacing:-17.234667pt;}
.ws74{word-spacing:-17.136000pt;}
.ws17{word-spacing:-17.050667pt;}
.ws73{word-spacing:-16.933333pt;}
.ws1a{word-spacing:-16.928000pt;}
.ws38{word-spacing:-15.640000pt;}
.ws37{word-spacing:-15.517333pt;}
.ws4b{word-spacing:-15.456000pt;}
.ws22{word-spacing:-15.200000pt;}
.ws51{word-spacing:-14.720000pt;}
.ws59{word-spacing:-14.597333pt;}
.ws2b{word-spacing:-14.506667pt;}
.ws3a{word-spacing:-14.474667pt;}
.ws2c{word-spacing:-14.400000pt;}
.ws35{word-spacing:-14.352000pt;}
.ws39{word-spacing:-14.229333pt;}
.ws71{word-spacing:-14.106667pt;}
.ws36{word-spacing:-14.045333pt;}
.ws52{word-spacing:-13.984000pt;}
.ws53{word-spacing:-13.738667pt;}
.ws1c{word-spacing:-13.706667pt;}
.ws26{word-spacing:-13.653333pt;}
.ws78{word-spacing:-13.608000pt;}
.ws2d{word-spacing:-13.600000pt;}
.ws54{word-spacing:-13.554667pt;}
.ws5a{word-spacing:-13.493333pt;}
.ws23{word-spacing:-13.440000pt;}
.ws58{word-spacing:-13.432000pt;}
.ws25{word-spacing:-13.386667pt;}
.ws21{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-13.226667pt;}
.ws24{word-spacing:-13.173333pt;}
.ws27{word-spacing:-13.066667pt;}
.ws4c{word-spacing:-13.064000pt;}
.ws20{word-spacing:-12.906667pt;}
.ws1b{word-spacing:-12.746667pt;}
.ws86{word-spacing:-12.480000pt;}
.ws29{word-spacing:-12.373333pt;}
.ws79{word-spacing:-11.984000pt;}
.ws8{word-spacing:-11.685333pt;}
.ws77{word-spacing:-11.592000pt;}
.ws28{word-spacing:-11.093333pt;}
.ws63{word-spacing:-10.047811pt;}
.ws67{word-spacing:-6.133333pt;}
.ws7d{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.ws4{word-spacing:-5.173333pt;}
.ws5e{word-spacing:-5.090667pt;}
.wsa{word-spacing:-4.853333pt;}
.ws7f{word-spacing:-4.816000pt;}
.wsd{word-spacing:-3.285333pt;}
.ws69{word-spacing:-2.944000pt;}
.ws9{word-spacing:-2.133333pt;}
.ws3c{word-spacing:-1.778667pt;}
.ws6b{word-spacing:-1.472000pt;}
.wsb{word-spacing:-1.120000pt;}
.ws6d{word-spacing:-1.042667pt;}
.ws2f{word-spacing:-1.013333pt;}
.ws1f{word-spacing:-0.981333pt;}
.ws75{word-spacing:-0.552000pt;}
.wsc{word-spacing:-0.533333pt;}
.ws70{word-spacing:-0.490667pt;}
.ws72{word-spacing:-0.429333pt;}
.ws6{word-spacing:-0.213333pt;}
.ws4f{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.061333pt;}
.ws2a{word-spacing:0.106667pt;}
.ws33{word-spacing:0.122667pt;}
.ws4d{word-spacing:0.152000pt;}
.ws31{word-spacing:0.160000pt;}
.ws7c{word-spacing:0.168000pt;}
.ws14{word-spacing:0.184000pt;}
.ws10{word-spacing:0.266667pt;}
.ws13{word-spacing:0.306667pt;}
.ws19{word-spacing:0.368000pt;}
.ws68{word-spacing:0.429333pt;}
.ws87{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.490667pt;}
.ws64{word-spacing:0.506667pt;}
.ws11{word-spacing:0.552000pt;}
.ws15{word-spacing:0.557333pt;}
.ws43{word-spacing:0.613333pt;}
.ws56{word-spacing:0.674667pt;}
.ws82{word-spacing:0.728000pt;}
.ws3b{word-spacing:0.736000pt;}
.wse{word-spacing:0.760000pt;}
.ws80{word-spacing:0.784000pt;}
.ws3e{word-spacing:0.797333pt;}
.ws2e{word-spacing:0.800000pt;}
.ws83{word-spacing:0.840000pt;}
.wsf{word-spacing:0.858667pt;}
.ws1e{word-spacing:0.920000pt;}
.ws42{word-spacing:1.042667pt;}
.ws65{word-spacing:1.080000pt;}
.ws3d{word-spacing:1.165333pt;}
.ws6a{word-spacing:1.226667pt;}
.ws49{word-spacing:1.288000pt;}
.ws88{word-spacing:1.333333pt;}
.ws41{word-spacing:1.349333pt;}
.ws48{word-spacing:1.410667pt;}
.ws4a{word-spacing:1.472000pt;}
.ws5{word-spacing:1.536000pt;}
.ws45{word-spacing:1.594667pt;}
.ws5b{word-spacing:1.717333pt;}
.ws32{word-spacing:1.760000pt;}
.ws66{word-spacing:1.840000pt;}
.ws60{word-spacing:2.024000pt;}
.ws7b{word-spacing:2.296000pt;}
.ws50{word-spacing:2.392000pt;}
.ws5c{word-spacing:2.453333pt;}
.ws6f{word-spacing:2.576000pt;}
.ws7e{word-spacing:2.632000pt;}
.ws55{word-spacing:2.760000pt;}
.ws5d{word-spacing:2.821333pt;}
.ws30{word-spacing:2.880000pt;}
.ws61{word-spacing:2.882667pt;}
.ws40{word-spacing:2.944000pt;}
.ws44{word-spacing:3.189333pt;}
.ws5f{word-spacing:3.250667pt;}
.ws6e{word-spacing:3.312000pt;}
.ws46{word-spacing:3.680000pt;}
.ws57{word-spacing:3.986667pt;}
.ws47{word-spacing:4.477333pt;}
.ws81{word-spacing:4.928000pt;}
.ws7a{word-spacing:6.720000pt;}
._24{margin-left:-8.995200pt;}
._a{margin-left:-7.299200pt;}
._23{margin-left:-6.370667pt;}
._5{margin-left:-5.162667pt;}
._6{margin-left:-4.005333pt;}
._f{margin-left:-3.091200pt;}
._7{margin-left:-2.198933pt;}
._2{margin-left:-0.940267pt;}
._4{width:1.030933pt;}
._1{width:2.133333pt;}
._8{width:3.052267pt;}
._9{width:4.081067pt;}
._3{width:5.226667pt;}
._b{width:6.739733pt;}
._c{width:7.790400pt;}
._d{width:8.770133pt;}
._18{width:10.037333pt;}
._14{width:11.787200pt;}
._15{width:13.070133pt;}
._22{width:14.237067pt;}
._1e{width:16.871467pt;}
._11{width:18.258133pt;}
._12{width:19.850667pt;}
._13{width:21.357333pt;}
._1f{width:22.578133pt;}
._20{width:23.520000pt;}
._16{width:24.884267pt;}
._17{width:25.949600pt;}
._1d{width:34.702400pt;}
._21{width:36.000000pt;}
._1b{width:36.889067pt;}
._1a{width:37.866667pt;}
._1c{width:42.400000pt;}
._19{width:43.715733pt;}
._e{width:45.024000pt;}
._10{width:224.896000pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fsb{font-size:31.093333pt;}
.fse{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{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;}
.yb5{bottom:94.369333pt;}
.y139{bottom:94.461333pt;}
.y61{bottom:94.469333pt;}
.y1d{bottom:94.477333pt;}
.y116{bottom:94.482933pt;}
.y3e{bottom:94.489333pt;}
.yaa{bottom:94.490667pt;}
.y84{bottom:94.493200pt;}
.y15d{bottom:97.150933pt;}
.yf6{bottom:109.805333pt;}
.y115{bottom:109.818933pt;}
.y1c{bottom:112.104000pt;}
.yb4{bottom:112.524000pt;}
.y83{bottom:112.664000pt;}
.ya9{bottom:112.676000pt;}
.y3d{bottom:112.720667pt;}
.y60{bottom:112.976667pt;}
.y138{bottom:113.091333pt;}
.yf5{bottom:125.141333pt;}
.y114{bottom:127.817600pt;}
.y1b{bottom:129.730667pt;}
.yb3{bottom:130.678667pt;}
.y82{bottom:130.810667pt;}
.ya8{bottom:130.861333pt;}
.y3c{bottom:130.952000pt;}
.y5f{bottom:131.484000pt;}
.y137{bottom:131.721333pt;}
.y15c{bottom:136.324000pt;}
.yf4{bottom:140.477333pt;}
.y1a{bottom:147.357333pt;}
.yd5{bottom:148.412000pt;}
.yb2{bottom:148.833333pt;}
.y81{bottom:148.957333pt;}
.ya7{bottom:149.046667pt;}
.y3b{bottom:149.183333pt;}
.y5e{bottom:149.991333pt;}
.y136{bottom:150.351333pt;}
.y15b{bottom:154.325333pt;}
.yf3{bottom:155.813333pt;}
.y19{bottom:164.984000pt;}
.yd4{bottom:166.428667pt;}
.y113{bottom:166.842667pt;}
.yb1{bottom:166.988000pt;}
.y80{bottom:167.104000pt;}
.ya6{bottom:167.232000pt;}
.y3a{bottom:167.414667pt;}
.y5d{bottom:168.498667pt;}
.y135{bottom:168.981333pt;}
.yf2{bottom:171.149333pt;}
.y15a{bottom:172.326667pt;}
.y18{bottom:182.610667pt;}
.yd3{bottom:184.445333pt;}
.yb0{bottom:185.142667pt;}
.y7f{bottom:185.250667pt;}
.ya5{bottom:185.417333pt;}
.y112{bottom:185.426667pt;}
.y39{bottom:185.646000pt;}
.yf1{bottom:186.485333pt;}
.y134{bottom:187.611333pt;}
.y159{bottom:190.328000pt;}
.y17{bottom:200.237333pt;}
.yd2{bottom:202.462000pt;}
.yaf{bottom:203.297333pt;}
.y7e{bottom:203.397333pt;}
.ya4{bottom:203.602667pt;}
.y38{bottom:203.877333pt;}
.y111{bottom:204.010667pt;}
.yf0{bottom:204.484000pt;}
.y5c{bottom:205.902000pt;}
.y133{bottom:206.241333pt;}
.y158{bottom:208.329333pt;}
.y16{bottom:217.864000pt;}
.yd1{bottom:220.478667pt;}
.yae{bottom:221.452000pt;}
.ya3{bottom:221.788000pt;}
.y37{bottom:222.108667pt;}
.y110{bottom:222.594667pt;}
.y132{bottom:224.871333pt;}
.y157{bottom:226.330667pt;}
.y5b{bottom:227.736000pt;}
.yd0{bottom:238.495333pt;}
.y7d{bottom:239.606667pt;}
.y36{bottom:240.340000pt;}
.y10f{bottom:241.178667pt;}
.y131{bottom:243.501333pt;}
.yef{bottom:243.579333pt;}
.y156{bottom:244.332000pt;}
.y15{bottom:246.824000pt;}
.ycf{bottom:256.512000pt;}
.yad{bottom:257.761333pt;}
.ya2{bottom:258.132000pt;}
.y35{bottom:258.571333pt;}
.y176{bottom:260.124000pt;}
.yee{bottom:262.010000pt;}
.y130{bottom:262.131333pt;}
.y155{bottom:262.333333pt;}
.yce{bottom:274.528667pt;}
.y7c{bottom:275.916000pt;}
.ya1{bottom:276.318667pt;}
.y34{bottom:276.802667pt;}
.y175{bottom:278.125333pt;}
.y10e{bottom:278.331333pt;}
.y154{bottom:280.334667pt;}
.yed{bottom:280.440667pt;}
.y12f{bottom:280.761333pt;}
.y5a{bottom:283.490000pt;}
.ycd{bottom:292.545333pt;}
.y7b{bottom:294.070667pt;}
.ya0{bottom:294.505333pt;}
.y33{bottom:295.034000pt;}
.y174{bottom:296.126667pt;}
.y10d{bottom:296.915333pt;}
.y153{bottom:298.336000pt;}
.y14{bottom:298.488000pt;}
.yec{bottom:298.871333pt;}
.y12e{bottom:299.391333pt;}
.y59{bottom:301.997333pt;}
.ycc{bottom:310.562000pt;}
.y7a{bottom:312.225333pt;}
.y9f{bottom:312.692000pt;}
.y32{bottom:313.265333pt;}
.y173{bottom:314.128000pt;}
.y152{bottom:316.337333pt;}
.yeb{bottom:317.302000pt;}
.y12d{bottom:318.021333pt;}
.y58{bottom:320.504667pt;}
.y13{bottom:322.773333pt;}
.ycb{bottom:328.578667pt;}
.y79{bottom:330.380000pt;}
.y9e{bottom:330.878667pt;}
.y172{bottom:332.129333pt;}
.y10c{bottom:334.068000pt;}
.y151{bottom:334.338667pt;}
.yea{bottom:335.732667pt;}
.y12c{bottom:336.651333pt;}
.y57{bottom:339.012000pt;}
.yca{bottom:346.595333pt;}
.y12{bottom:347.058667pt;}
.y78{bottom:348.534667pt;}
.y9d{bottom:349.065333pt;}
.y171{bottom:350.130667pt;}
.y31{bottom:350.394667pt;}
.y150{bottom:352.340000pt;}
.y10b{bottom:352.652000pt;}
.ye9{bottom:354.163333pt;}
.y12b{bottom:355.281333pt;}
.y56{bottom:357.519333pt;}
.yc9{bottom:364.612000pt;}
.y19f{bottom:365.274667pt;}
.y77{bottom:366.689333pt;}
.y9c{bottom:367.252000pt;}
.y170{bottom:368.132000pt;}
.y14f{bottom:370.341333pt;}
.y10a{bottom:371.236000pt;}
.y11{bottom:371.344000pt;}
.y18b{bottom:372.284000pt;}
.y12a{bottom:373.911333pt;}
.y55{bottom:376.026667pt;}
.yc8{bottom:382.628667pt;}
.y19e{bottom:383.274667pt;}
.yac{bottom:384.844000pt;}
.y9b{bottom:385.438667pt;}
.y16f{bottom:386.133333pt;}
.y14e{bottom:388.342667pt;}
.y109{bottom:389.820000pt;}
.y18a{bottom:390.288000pt;}
.ye8{bottom:391.009333pt;}
.y129{bottom:392.541333pt;}
.y54{bottom:394.534000pt;}
.y10{bottom:395.629333pt;}
.yc7{bottom:400.645333pt;}
.y19d{bottom:401.274667pt;}
.y76{bottom:402.998667pt;}
.y9a{bottom:403.625333pt;}
.y16e{bottom:404.134667pt;}
.y14d{bottom:406.344000pt;}
.y108{bottom:408.404000pt;}
.ye7{bottom:409.440000pt;}
.y128{bottom:411.171333pt;}
.y53{bottom:413.041333pt;}
.y189{bottom:415.852000pt;}
.y19c{bottom:419.274667pt;}
.yab{bottom:421.153333pt;}
.y99{bottom:421.812000pt;}
.y16d{bottom:422.136000pt;}
.y30{bottom:424.210667pt;}
.y14c{bottom:424.345333pt;}
.y107{bottom:426.988000pt;}
.ye6{bottom:427.870667pt;}
.y127{bottom:429.801333pt;}
.y52{bottom:431.548667pt;}
.y188{bottom:433.856000pt;}
.yc6{bottom:437.546667pt;}
.yf{bottom:438.781333pt;}
.y75{bottom:439.308000pt;}
.y98{bottom:439.998667pt;}
.y16c{bottom:440.137333pt;}
.y14b{bottom:442.346667pt;}
.y2f{bottom:443.104000pt;}
.y106{bottom:445.572000pt;}
.ye5{bottom:446.301333pt;}
.y126{bottom:448.431333pt;}
.y19b{bottom:448.608000pt;}
.y51{bottom:450.056000pt;}
.y187{bottom:451.860000pt;}
.y74{bottom:457.462667pt;}
.y16b{bottom:458.138667pt;}
.y97{bottom:458.185333pt;}
.yc5{bottom:458.894667pt;}
.y14a{bottom:460.348000pt;}
.y105{bottom:464.156000pt;}
.y125{bottom:467.061333pt;}
.ye{bottom:467.077333pt;}
.y50{bottom:468.563333pt;}
.y73{bottom:475.617333pt;}
.y16a{bottom:476.140000pt;}
.y96{bottom:476.372000pt;}
.y186{bottom:477.424000pt;}
.y149{bottom:478.349333pt;}
.y2e{bottom:480.938667pt;}
.y104{bottom:482.740000pt;}
.ye4{bottom:483.153333pt;}
.y19a{bottom:485.501333pt;}
.y124{bottom:485.691333pt;}
.y4f{bottom:487.070667pt;}
.y72{bottom:493.772000pt;}
.y169{bottom:494.141333pt;}
.y95{bottom:494.558667pt;}
.yd{bottom:495.373333pt;}
.y185{bottom:495.428000pt;}
.y2d{bottom:498.498667pt;}
.y103{bottom:501.258667pt;}
.ye3{bottom:501.580000pt;}
.y199{bottom:502.834667pt;}
.y123{bottom:504.321333pt;}
.y4e{bottom:505.578000pt;}
.y71{bottom:511.926667pt;}
.y168{bottom:512.142667pt;}
.y94{bottom:512.745333pt;}
.y184{bottom:513.432000pt;}
.yc4{bottom:514.150000pt;}
.y148{bottom:514.352000pt;}
.y2c{bottom:516.058667pt;}
.y102{bottom:519.842667pt;}
.ye2{bottom:520.006667pt;}
.y198{bottom:520.168000pt;}
.y122{bottom:522.951333pt;}
.yc{bottom:523.669333pt;}
.y4d{bottom:524.085333pt;}
.y70{bottom:530.081333pt;}
.y167{bottom:530.144000pt;}
.y93{bottom:530.932000pt;}
.yc3{bottom:532.166667pt;}
.y147{bottom:532.353333pt;}
.y2b{bottom:533.618667pt;}
.y197{bottom:537.501333pt;}
.y101{bottom:538.426667pt;}
.ye1{bottom:538.432000pt;}
.y183{bottom:538.996000pt;}
.y121{bottom:541.581333pt;}
.y4c{bottom:542.592667pt;}
.y166{bottom:548.145333pt;}
.y6f{bottom:548.236000pt;}
.y92{bottom:549.118667pt;}
.yc2{bottom:550.183333pt;}
.y146{bottom:550.356000pt;}
.y2a{bottom:551.178667pt;}
.yb{bottom:551.965333pt;}
.y196{bottom:554.834667pt;}
.ye0{bottom:556.858667pt;}
.y182{bottom:557.000000pt;}
.y100{bottom:557.010667pt;}
.y120{bottom:560.211333pt;}
.y4b{bottom:561.100000pt;}
.y165{bottom:566.146667pt;}
.y6e{bottom:566.390667pt;}
.y91{bottom:567.305333pt;}
.yc1{bottom:568.200000pt;}
.y145{bottom:568.357333pt;}
.y29{bottom:568.738667pt;}
.y195{bottom:572.168000pt;}
.y181{bottom:575.004000pt;}
.ydf{bottom:575.285333pt;}
.yff{bottom:575.594667pt;}
.y4a{bottom:579.607333pt;}
.ya{bottom:580.261333pt;}
.y164{bottom:584.148000pt;}
.y6d{bottom:584.545333pt;}
.y90{bottom:585.492000pt;}
.yc0{bottom:586.216667pt;}
.y28{bottom:586.298667pt;}
.y194{bottom:589.501333pt;}
.yde{bottom:593.710667pt;}
.yfe{bottom:594.178667pt;}
.y11f{bottom:597.471333pt;}
.y49{bottom:598.114667pt;}
.y180{bottom:600.568000pt;}
.y163{bottom:602.149333pt;}
.y6c{bottom:602.700000pt;}
.y8f{bottom:603.678667pt;}
.y27{bottom:603.858667pt;}
.ybf{bottom:604.233333pt;}
.y144{bottom:604.386667pt;}
.y193{bottom:606.834667pt;}
.y9{bottom:608.557333pt;}
.ydd{bottom:612.137333pt;}
.yfd{bottom:612.762667pt;}
.y48{bottom:616.622000pt;}
.y17f{bottom:618.572000pt;}
.y162{bottom:620.150667pt;}
.y6b{bottom:620.854667pt;}
.y26{bottom:621.418667pt;}
.y8e{bottom:621.865333pt;}
.ybe{bottom:622.250000pt;}
.y143{bottom:622.388000pt;}
.y192{bottom:624.168000pt;}
.ydc{bottom:630.564000pt;}
.yfc{bottom:631.346667pt;}
.y11e{bottom:634.731333pt;}
.y47{bottom:635.129333pt;}
.y8{bottom:636.853333pt;}
.y161{bottom:638.152000pt;}
.y25{bottom:638.978667pt;}
.y6a{bottom:639.009333pt;}
.y8d{bottom:640.052000pt;}
.ybd{bottom:640.266667pt;}
.y142{bottom:640.389333pt;}
.y17e{bottom:644.136000pt;}
.ydb{bottom:648.990667pt;}
.yfb{bottom:649.930667pt;}
.y191{bottom:652.834667pt;}
.y11d{bottom:653.361333pt;}
.y46{bottom:653.636667pt;}
.y160{bottom:656.153333pt;}
.y69{bottom:657.164000pt;}
.y8c{bottom:658.238667pt;}
.ybc{bottom:658.283333pt;}
.y141{bottom:658.390667pt;}
.y17d{bottom:662.140000pt;}
.y7{bottom:665.149333pt;}
.yda{bottom:667.417333pt;}
.y24{bottom:667.885333pt;}
.yfa{bottom:668.514667pt;}
.y11c{bottom:671.991333pt;}
.y45{bottom:672.144000pt;}
.y15f{bottom:674.154667pt;}
.y68{bottom:675.318667pt;}
.ybb{bottom:676.300000pt;}
.y140{bottom:676.392000pt;}
.y8b{bottom:676.425333pt;}
.y17c{bottom:680.144000pt;}
.yd9{bottom:685.842667pt;}
.y67{bottom:693.473333pt;}
.yba{bottom:694.316667pt;}
.y13f{bottom:694.393333pt;}
.y8a{bottom:694.612000pt;}
.y17b{bottom:698.148000pt;}
.y190{bottom:704.162667pt;}
.yd8{bottom:704.269333pt;}
.yf9{bottom:705.992667pt;}
.y11b{bottom:709.251333pt;}
.y44{bottom:709.544000pt;}
.y15e{bottom:711.052000pt;}
.y66{bottom:711.628000pt;}
.y23{bottom:711.912000pt;}
.yb9{bottom:712.333333pt;}
.y13e{bottom:712.394667pt;}
.y89{bottom:712.798667pt;}
.y17a{bottom:716.152000pt;}
.y6{bottom:719.889333pt;}
.yd7{bottom:722.696000pt;}
.y11a{bottom:727.881333pt;}
.yf8{bottom:727.898667pt;}
.y18f{bottom:728.168000pt;}
.y65{bottom:729.782667pt;}
.yb8{bottom:730.350000pt;}
.y13d{bottom:730.396000pt;}
.y22{bottom:730.805333pt;}
.y88{bottom:730.985333pt;}
.y5{bottom:738.849333pt;}
.y179{bottom:741.716000pt;}
.y119{bottom:746.511333pt;}
.y64{bottom:747.937333pt;}
.yb7{bottom:748.366667pt;}
.y13c{bottom:748.397333pt;}
.y87{bottom:749.172000pt;}
.y18e{bottom:752.173333pt;}
.y4{bottom:757.809333pt;}
.yd6{bottom:759.548000pt;}
.y178{bottom:759.720000pt;}
.y118{bottom:765.141333pt;}
.y43{bottom:765.386667pt;}
.y63{bottom:766.092000pt;}
.yb6{bottom:766.383333pt;}
.y13b{bottom:766.398667pt;}
.y86{bottom:767.358667pt;}
.y21{bottom:768.612000pt;}
.y18d{bottom:776.178667pt;}
.y177{bottom:777.724000pt;}
.y117{bottom:783.771333pt;}
.yf7{bottom:783.817333pt;}
.y42{bottom:783.894000pt;}
.y62{bottom:784.246667pt;}
.y3{bottom:784.329333pt;}
.y13a{bottom:784.400000pt;}
.y85{bottom:785.545333pt;}
.y20{bottom:786.172000pt;}
.y18c{bottom:800.184000pt;}
.y41{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y1f{bottom:803.732000pt;}
.y1e{bottom:842.834667pt;}
.y40{bottom:858.834667pt;}
.y3f{bottom:874.834667pt;}
.h10{height:30.997771pt;}
.h7{height:37.020833pt;}
.h11{height:41.648438pt;}
.ha{height:45.286458pt;}
.h4{height:46.276042pt;}
.hc{height:46.328125pt;}
.hd{height:46.388042pt;}
.h13{height:47.550781pt;}
.h3{height:48.589844pt;}
.h9{height:53.217448pt;}
.hb{height:53.277344pt;}
.h12{height:53.478781pt;}
.h2{height:57.845052pt;}
.h15{height:59.765625pt;}
.h8{height:62.472656pt;}
.h14{height:62.753906pt;}
.h6{height:64.786458pt;}
.he{height:68.730469pt;}
.hf{height:71.718750pt;}
.h5{height:83.296875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:71.908133pt;}
.x8{left:73.264933pt;}
.x6{left:74.440000pt;}
.x1{left:75.590533pt;}
.xd{left:91.259200pt;}
.xc{left:92.483067pt;}
.x5{left:94.120000pt;}
.x9{left:105.333600pt;}
.xb{left:131.666933pt;}
.xa{left:132.613600pt;}
.x7{left:189.034667pt;}
.x4{left:204.985333pt;}
.x2{left:206.757333pt;}
.x3{left:207.765333pt;}
}




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