
    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_3e2d5c5f43e539c7f44b2779.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_197823de5697bd641f7ea121.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bd1ffd23fef26bccea50b924.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_6dc0aded8a2929eb4604d526.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6219f7ff3b0dfbb02b251de0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_afafc48dba34413124f211b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4e2edaac4d7011209ec57d3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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;}
.m6{transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236488,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.238373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238373,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.257496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257496,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.286001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286001,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.289138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289138,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.291193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291193,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.308800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls38{letter-spacing:-4.171781px;}
.ls39{letter-spacing:-4.155253px;}
.ls41{letter-spacing:-4.022709px;}
.ls2d{letter-spacing:-4.007736px;}
.ls2e{letter-spacing:-3.573238px;}
.ls36{letter-spacing:-3.539436px;}
.ls2c{letter-spacing:-3.353206px;}
.ls2a{letter-spacing:-0.602170px;}
.ls14{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls1a{letter-spacing:-0.414000px;}
.ls25{letter-spacing:-0.272400px;}
.lsd{letter-spacing:-0.268800px;}
.ls26{letter-spacing:-0.240600px;}
.ls1b{letter-spacing:-0.228000px;}
.ls8{letter-spacing:-0.226200px;}
.ls15{letter-spacing:-0.214800px;}
.ls19{letter-spacing:-0.208800px;}
.ls29{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls43{letter-spacing:-0.107400px;}
.ls34{letter-spacing:-0.093600px;}
.ls40{letter-spacing:-0.090000px;}
.ls44{letter-spacing:-0.080400px;}
.ls28{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.055440px;}
.ls3e{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls3f{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.066000px;}
.ls35{letter-spacing:0.067200px;}
.ls32{letter-spacing:0.075000px;}
.ls1f{letter-spacing:0.103680px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls30{letter-spacing:0.174000px;}
.ls20{letter-spacing:0.174240px;}
.ls27{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.190200px;}
.ls7{letter-spacing:0.210000px;}
.ls17{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.314400px;}
.lsa{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.447840px;}
.ls1c{letter-spacing:0.479520px;}
.ls3c{letter-spacing:0.617760px;}
.ls37{letter-spacing:0.630000px;}
.ls24{letter-spacing:0.631751px;}
.ls1e{letter-spacing:0.664560px;}
.ls23{letter-spacing:1.614240px;}
.ls22{letter-spacing:2.106720px;}
.ls33{letter-spacing:3.054240px;}
.ls13{letter-spacing:5.706720px;}
.ls42{letter-spacing:12.186720px;}
.ls12{letter-spacing:15.786720px;}
.lsf{letter-spacing:17.226720px;}
.ls3b{letter-spacing:17.946720px;}
.ls10{letter-spacing:20.106720px;}
.lse{letter-spacing:21.546720px;}
.ls11{letter-spacing:22.986720px;}
.ls3a{letter-spacing:36.666720px;}
.ls1{letter-spacing:38.106720px;}
.ls2f{letter-spacing:40.986720px;}
.ls3d{letter-spacing:42.570720px;}
.ls31{letter-spacing:43.146720px;}
.ls21{letter-spacing:46.026720px;}
.ls2b{letter-spacing:60.114240px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.820160px;}
.wsf{word-spacing:-13.685760px;}
.ws1b{word-spacing:-13.572960px;}
.ws7{word-spacing:-13.505760px;}
.ws28{word-spacing:-13.467600px;}
.wsd{word-spacing:-13.450320px;}
.ws10{word-spacing:-13.447440px;}
.ws30{word-spacing:-13.425360px;}
.ws2f{word-spacing:-13.398360px;}
.ws8{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws9{word-spacing:-13.236960px;}
.ws29{word-spacing:-12.204000px;}
.ws2a{word-spacing:-12.114000px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.146880px;}
.ws5{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
.ws13{word-spacing:45.091788px;}
.ws11{word-spacing:52.413142px;}
.ws1c{word-spacing:65.499382px;}
.ws18{word-spacing:66.124920px;}
.ws12{word-spacing:68.510159px;}
.ws2b{word-spacing:74.442653px;}
.ws24{word-spacing:76.895449px;}
.ws20{word-spacing:77.201314px;}
.ws1e{word-spacing:83.474526px;}
.ws16{word-spacing:84.271732px;}
.ws2d{word-spacing:94.872119px;}
.ws26{word-spacing:97.998042px;}
.ws22{word-spacing:98.387845px;}
.ws14{word-spacing:173.406364px;}
.ws1f{word-spacing:209.456871px;}
.ws1a{word-spacing:211.457245px;}
.ws2e{word-spacing:238.056066px;}
.ws27{word-spacing:245.899727px;}
.ws23{word-spacing:246.877833px;}
.ws17{word-spacing:281.595971px;}
.ws1d{word-spacing:296.916498px;}
.ws15{word-spacing:299.592618px;}
.ws19{word-spacing:299.752136px;}
.ws2c{word-spacing:337.457410px;}
.ws25{word-spacing:348.576227px;}
.ws21{word-spacing:349.962746px;}
._1b{margin-left:-533.278560px;}
._1c{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._11{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._15{margin-left:-222.774000px;}
._1f{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._16{margin-left:-200.514720px;}
._1e{margin-left:-190.074240px;}
._22{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._21{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1d{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._20{margin-left:-109.621680px;}
._1a{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._19{margin-left:-86.399760px;}
._18{margin-left:-83.520000px;}
._12{margin-left:-81.351360px;}
._14{margin-left:-66.703680px;}
._13{margin-left:-49.123920px;}
._17{margin-left:-32.468640px;}
._4d{margin-left:-6.186708px;}
._24{margin-left:-5.127120px;}
._39{margin-left:-4.021334px;}
._23{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._26{width:1.659360px;}
._25{width:2.742480px;}
._2a{width:3.745920px;}
._28{width:5.378400px;}
._27{width:6.513840px;}
._29{width:8.188560px;}
._2d{width:9.241200px;}
._2c{width:10.398240px;}
._38{width:12.131280px;}
._6c{width:13.461508px;}
._2b{width:14.550720px;}
._85{width:16.127520px;}
._86{width:17.405520px;}
._36{width:62.533553px;}
._3a{width:75.658069px;}
._3e{width:83.325367px;}
._35{width:84.983981px;}
._57{width:86.897941px;}
._47{width:89.037065px;}
._40{width:91.699706px;}
._37{width:94.901173px;}
._48{width:96.206394px;}
._4b{width:99.077853px;}
._62{width:103.237913px;}
._58{width:104.360232px;}
._49{width:105.424781px;}
._34{width:108.358756px;}
._79{width:111.758726px;}
._63{width:113.217942px;}
._5f{width:114.521518px;}
._55{width:115.524116px;}
._65{width:116.872181px;}
._2f{width:120.117444px;}
._70{width:122.293836px;}
._64{width:123.932183px;}
._30{width:127.580389px;}
._33{width:129.051324px;}
._4e{width:131.076482px;}
._31{width:135.608116px;}
._5b{width:136.791394px;}
._4f{width:138.000975px;}
._2e{width:140.333520px;}
._5d{width:143.333808px;}
._52{width:144.670603px;}
._7b{width:147.377968px;}
._32{width:149.178651px;}
._51{width:151.214125px;}
._50{width:152.611721px;}
._7c{width:154.349409px;}
._67{width:160.775362px;}
._84{width:162.758300px;}
._80{width:163.793706px;}
._6b{width:168.856491px;}
._7f{width:169.995001px;}
._7d{width:171.642104px;}
._73{width:175.968649px;}
._6a{width:177.043985px;}
._68{width:178.093146px;}
._5c{width:179.597509px;}
._3f{width:181.643340px;}
._45{width:188.469284px;}
._44{width:189.739192px;}
._53{width:192.291742px;}
._7e{width:203.719207px;}
._56{width:209.537820px;}
._46{width:211.461945px;}
._69{width:212.680949px;}
._81{width:216.047948px;}
._74{width:223.242023px;}
._6d{width:224.369431px;}
._43{width:233.079092px;}
._77{width:238.645294px;}
._61{width:247.986027px;}
._3b{width:256.436443px;}
._3c{width:261.923336px;}
._5e{width:270.209541px;}
._54{width:272.907172px;}
._59{width:299.733772px;}
._82{width:307.389691px;}
._3d{width:313.840332px;}
._75{width:317.235455px;}
._6e{width:318.431980px;}
._4a{width:320.752482px;}
._42{width:324.910693px;}
._78{width:340.659354px;}
._71{width:351.883671px;}
._5a{width:353.610107px;}
._4c{width:356.977288px;}
._60{width:374.432853px;}
._41{width:378.001873px;}
._7a{width:402.015173px;}
._72{width:415.218222px;}
._66{width:416.864646px;}
._83{width:425.974147px;}
._76{width:439.968624px;}
._6f{width:441.713739px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:44.214734px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:52.645889px;}
.fs2{font-size:54.000000px;}
.fsc{font-size:54.190426px;}
.fsb{font-size:54.707960px;}
.fsa{font-size:59.137263px;}
.fs4{font-size:59.760000px;}
.fsf{font-size:61.589575px;}
.fse{font-size:63.618877px;}
.fsd{font-size:63.871932px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:6.121678px;}
.y88{bottom:10.000465px;}
.yec{bottom:16.252448px;}
.ybb{bottom:16.306875px;}
.ya4{bottom:17.605577px;}
.y15c{bottom:18.395207px;}
.y128{bottom:19.001307px;}
.y116{bottom:19.076888px;}
.y75{bottom:21.122278px;}
.y87{bottom:27.991265px;}
.yeb{bottom:31.563055px;}
.yba{bottom:31.763936px;}
.ya3{bottom:34.246995px;}
.y15b{bottom:35.796321px;}
.y127{bottom:36.975766px;}
.y115{bottom:37.122843px;}
.yea{bottom:46.874357px;}
.yb9{bottom:47.165341px;}
.ya2{bottom:50.947572px;}
.y15a{bottom:53.198224px;}
.y126{bottom:54.951042px;}
.y114{bottom:55.169618px;}
.y76{bottom:60.610748px;}
.y6{bottom:61.380000px;}
.ye9{bottom:62.130065px;}
.yb8{bottom:62.622870px;}
.y86{bottom:63.974795px;}
.ya1{bottom:67.587731px;}
.y159{bottom:70.536943px;}
.y125{bottom:72.861051px;}
.y113{bottom:73.150868px;}
.ye8{bottom:77.441367px;}
.yb7{bottom:78.024275px;}
.y85{bottom:81.966560px;}
.y158{bottom:87.938847px;}
.y124{bottom:90.836326px;}
.y112{bottom:91.197643px;}
.ye7{bottom:92.752669px;}
.yb6{bottom:93.481804px;}
.yda{bottom:96.840000px;}
.y84{bottom:99.958325px;}
.y77{bottom:100.050967px;}
.y14a{bottom:100.800000px;}
.ya0{bottom:100.868053px;}
.y89{bottom:103.500000px;}
.y74{bottom:103.590000px;}
.y157{bottom:105.340750px;}
.y62{bottom:107.280000px;}
.ye6{bottom:108.008377px;}
.y123{bottom:108.811602px;}
.yb5{bottom:108.883209px;}
.y111{bottom:109.244418px;}
.y104{bottom:109.260000px;}
.y186{bottom:111.600000px;}
.y2f{bottom:113.220000px;}
.y99{bottom:115.380000px;}
.y9f{bottom:117.568608px;}
.yd9{bottom:117.900000px;}
.y83{bottom:117.950091px;}
.y149{bottom:121.860000px;}
.y156{bottom:122.679470px;}
.y122{bottom:126.721611px;}
.y110{bottom:127.225667px;}
.y61{bottom:128.340000px;}
.y103{bottom:130.320000px;}
.y2e{bottom:134.280000px;}
.y82{bottom:135.893605px;}
.y98{bottom:136.440000px;}
.ye5{bottom:138.630970px;}
.yd8{bottom:138.960000px;}
.y78{bottom:139.539437px;}
.yb4{bottom:139.798264px;}
.y148{bottom:142.740000px;}
.y60{bottom:149.400000px;}
.y9e{bottom:150.848958px;}
.y102{bottom:151.380000px;}
.y81{bottom:153.885370px;}
.ye4{bottom:153.942271px;}
.yb3{bottom:155.199669px;}
.y2d{bottom:155.370000px;}
.y155{bottom:157.483266px;}
.y97{bottom:157.530000px;}
.yd7{bottom:160.050000px;}
.y121{bottom:162.672156px;}
.y10f{bottom:163.319206px;}
.y147{bottom:163.830000px;}
.y9d{bottom:167.489117px;}
.ye3{bottom:169.197980px;}
.y5f{bottom:170.490000px;}
.yb2{bottom:170.657198px;}
.y80{bottom:171.877135px;}
.y101{bottom:172.470000px;}
.y96{bottom:174.630000px;}
.y154{bottom:174.885169px;}
.ya5{bottom:175.950000px;}
.y2c{bottom:176.430000px;}
.y79{bottom:179.025976px;}
.y120{bottom:180.647431px;}
.yd6{bottom:181.110000px;}
.y10e{bottom:181.365980px;}
.y9c{bottom:184.129276px;}
.ye2{bottom:184.509281px;}
.y146{bottom:184.890000px;}
.yb1{bottom:186.058603px;}
.y5e{bottom:191.550000px;}
.y153{bottom:192.223889px;}
.y100{bottom:193.530000px;}
.y2b{bottom:197.490000px;}
.y11f{bottom:198.557441px;}
.y185{bottom:199.290000px;}
.y10d{bottom:199.347230px;}
.y9b{bottom:200.832371px;}
.yd5{bottom:202.170000px;}
.y145{bottom:205.950000px;}
.y7f{bottom:207.864526px;}
.y152{bottom:209.625791px;}
.y5d{bottom:212.610000px;}
.yff{bottom:214.590000px;}
.ye1{bottom:215.131888px;}
.y11e{bottom:216.532716px;}
.yb0{bottom:216.915199px;}
.y10c{bottom:217.394004px;}
.y7a{bottom:218.460405px;}
.y2a{bottom:218.550000px;}
.y184{bottom:220.350000px;}
.yd4{bottom:223.230000px;}
.y7e{bottom:225.852431px;}
.y144{bottom:227.010000px;}
.y5c{bottom:233.670000px;}
.yfe{bottom:235.650000px;}
.y29{bottom:239.610000px;}
.y183{bottom:241.410000px;}
.y7d{bottom:243.840336px;}
.yd3{bottom:244.290000px;}
.y151{bottom:244.429602px;}
.ye0{bottom:245.698906px;}
.yaf{bottom:247.764781px;}
.y143{bottom:248.070000px;}
.y11d{bottom:252.483268px;}
.y10b{bottom:253.487558px;}
.y5b{bottom:254.730000px;}
.yfd{bottom:256.710000px;}
.y7b{bottom:257.948875px;}
.y28{bottom:260.670000px;}
.ydf{bottom:261.010208px;}
.y182{bottom:262.470000px;}
.yae{bottom:263.222311px;}
.yd2{bottom:265.350000px;}
.y142{bottom:269.130000px;}
.y5a{bottom:275.790000px;}
.yde{bottom:276.275182px;}
.yfc{bottom:277.770000px;}
.yad{bottom:278.679840px;}
.y150{bottom:279.167600px;}
.y27{bottom:281.730000px;}
.y181{bottom:283.530000px;}
.yd1{bottom:286.410000px;}
.y11c{bottom:288.365838px;}
.y10a{bottom:289.512860px;}
.y141{bottom:290.190000px;}
.ydd{bottom:291.586484px;}
.yac{bottom:294.090599px;}
.y14f{bottom:296.569504px;}
.y59{bottom:296.850000px;}
.yfb{bottom:298.830000px;}
.y26{bottom:302.790000px;}
.y180{bottom:304.590000px;}
.y11b{bottom:306.341113px;}
.ydc{bottom:306.897786px;}
.yd0{bottom:307.470000px;}
.y109{bottom:307.559635px;}
.yab{bottom:309.548128px;}
.y140{bottom:311.250000px;}
.y14e{bottom:313.918754px;}
.y58{bottom:317.910000px;}
.yfa{bottom:319.890000px;}
.y25{bottom:323.850000px;}
.y11a{bottom:324.262000px;}
.yaa{bottom:324.958887px;}
.y108{bottom:325.551805px;}
.y17f{bottom:325.650000px;}
.ycf{bottom:328.530000px;}
.y14d{bottom:331.320657px;}
.y13f{bottom:332.310000px;}
.y57{bottom:338.970000px;}
.yf9{bottom:340.950000px;}
.y119{bottom:342.237275px;}
.y107{bottom:343.598580px;}
.y24{bottom:344.910000px;}
.y17e{bottom:346.710000px;}
.y14c{bottom:348.722561px;}
.yce{bottom:349.590000px;}
.y13e{bottom:353.370000px;}
.y56{bottom:360.030000px;}
.y118{bottom:360.212551px;}
.y106{bottom:361.645355px;}
.yf8{bottom:362.010000px;}
.y23{bottom:365.970000px;}
.y17d{bottom:367.770000px;}
.ya9{bottom:371.261319px;}
.y13d{bottom:374.430000px;}
.y73{bottom:378.030000px;}
.ycd{bottom:379.650000px;}
.y55{bottom:381.090000px;}
.yf7{bottom:383.070000px;}
.ya8{bottom:386.672078px;}
.y22{bottom:387.030000px;}
.y17c{bottom:388.830000px;}
.y13c{bottom:395.490000px;}
.y72{bottom:399.090000px;}
.ycc{bottom:400.755000px;}
.ya7{bottom:402.129607px;}
.y54{bottom:402.195000px;}
.yf6{bottom:404.175000px;}
.y21{bottom:408.135000px;}
.y17b{bottom:409.935000px;}
.y13b{bottom:416.595000px;}
.y71{bottom:420.195000px;}
.ycb{bottom:421.815000px;}
.y53{bottom:423.255000px;}
.yf5{bottom:425.235000px;}
.y20{bottom:429.195000px;}
.y17a{bottom:430.995000px;}
.ya6{bottom:432.974510px;}
.y13a{bottom:437.655000px;}
.y70{bottom:441.255000px;}
.yf4{bottom:442.335000px;}
.yca{bottom:442.875000px;}
.y117{bottom:443.580000px;}
.y1f{bottom:450.255000px;}
.y179{bottom:452.055000px;}
.y52{bottom:453.315000px;}
.y139{bottom:458.715000px;}
.y6f{bottom:462.315000px;}
.yc9{bottom:463.935000px;}
.y1e{bottom:471.315000px;}
.y178{bottom:473.115000px;}
.y51{bottom:474.375000px;}
.y138{bottom:479.775000px;}
.y6e{bottom:483.375000px;}
.yc8{bottom:484.995000px;}
.y177{bottom:491.475000px;}
.y1d{bottom:492.375000px;}
.y50{bottom:495.435000px;}
.y137{bottom:500.835000px;}
.y6d{bottom:504.435000px;}
.yc7{bottom:506.055000px;}
.y176{bottom:509.835000px;}
.y1c{bottom:513.435000px;}
.y4f{bottom:516.495000px;}
.y136{bottom:521.895000px;}
.y6c{bottom:525.495000px;}
.yc6{bottom:527.115000px;}
.y175{bottom:528.015000px;}
.y1b{bottom:534.495000px;}
.y4e{bottom:537.555000px;}
.y135{bottom:542.955000px;}
.y174{bottom:546.375000px;}
.y6b{bottom:546.555000px;}
.yc5{bottom:548.175000px;}
.y1a{bottom:555.555000px;}
.y4d{bottom:558.615000px;}
.y134{bottom:564.015000px;}
.y173{bottom:564.735000px;}
.y6a{bottom:567.615000px;}
.yc4{bottom:569.235000px;}
.y19{bottom:576.615000px;}
.y4c{bottom:579.675000px;}
.y172{bottom:583.095000px;}
.y133{bottom:585.075000px;}
.y69{bottom:588.675000px;}
.yc3{bottom:590.295000px;}
.y18{bottom:597.675000px;}
.y171{bottom:601.275000px;}
.y132{bottom:606.135000px;}
.y4b{bottom:609.735000px;}
.yc2{bottom:611.355000px;}
.y17{bottom:618.735000px;}
.y170{bottom:619.635000px;}
.y131{bottom:627.195000px;}
.y95{bottom:629.175000px;}
.y4a{bottom:630.795000px;}
.yc1{bottom:632.415000px;}
.y16{bottom:639.795000px;}
.y16f{bottom:640.695000px;}
.y130{bottom:648.255000px;}
.y94{bottom:650.265000px;}
.y49{bottom:651.885000px;}
.yc0{bottom:653.505000px;}
.y15{bottom:660.705000px;}
.y16e{bottom:661.785000px;}
.y12f{bottom:669.345000px;}
.y93{bottom:671.325000px;}
.y48{bottom:672.945000px;}
.ybf{bottom:674.565000px;}
.y14{bottom:681.765000px;}
.y16d{bottom:682.845000px;}
.y12e{bottom:690.405000px;}
.y92{bottom:692.385000px;}
.y47{bottom:694.005000px;}
.ybe{bottom:695.625000px;}
.y16c{bottom:703.905000px;}
.y12d{bottom:711.465000px;}
.y91{bottom:713.445000px;}
.y46{bottom:715.065000px;}
.ybd{bottom:716.685000px;}
.y16b{bottom:724.965000px;}
.y13{bottom:726.405000px;}
.yf3{bottom:732.525000px;}
.ybc{bottom:733.785000px;}
.ydb{bottom:733.905000px;}
.y90{bottom:734.505000px;}
.y45{bottom:736.125000px;}
.y16a{bottom:746.025000px;}
.yf2{bottom:753.585000px;}
.y8f{bottom:755.565000px;}
.y12{bottom:756.285000px;}
.y68{bottom:757.005000px;}
.y44{bottom:766.005000px;}
.y169{bottom:767.085000px;}
.yf1{bottom:774.645000px;}
.y8e{bottom:776.625000px;}
.y11{bottom:777.345000px;}
.y67{bottom:778.065000px;}
.y168{bottom:785.445000px;}
.y43{bottom:787.065000px;}
.yf0{bottom:795.705000px;}
.y8d{bottom:797.685000px;}
.y10{bottom:798.405000px;}
.y66{bottom:799.125000px;}
.y167{bottom:803.625000px;}
.y12c{bottom:804.705000px;}
.y42{bottom:808.125000px;}
.yef{bottom:816.765000px;}
.y8c{bottom:818.745000px;}
.yf{bottom:819.465000px;}
.y65{bottom:820.185000px;}
.y166{bottom:821.985000px;}
.y12b{bottom:825.765000px;}
.y41{bottom:829.185000px;}
.yee{bottom:837.825000px;}
.y8b{bottom:839.805000px;}
.y165{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.y64{bottom:841.245000px;}
.y12a{bottom:846.825000px;}
.y40{bottom:850.245000px;}
.yed{bottom:854.925000px;}
.y105{bottom:855.045000px;}
.y164{bottom:861.225000px;}
.yd{bottom:861.585000px;}
.y63{bottom:862.305000px;}
.y129{bottom:863.925000px;}
.y14b{bottom:865.170000px;}
.y8a{bottom:865.725000px;}
.y9a{bottom:867.075000px;}
.y3f{bottom:871.305000px;}
.y163{bottom:882.285000px;}
.yc{bottom:884.805000px;}
.y3e{bottom:892.365000px;}
.y162{bottom:903.390000px;}
.yb{bottom:911.130000px;}
.y3d{bottom:913.470000px;}
.y161{bottom:924.450000px;}
.ya{bottom:927.870000px;}
.y3c{bottom:934.530000px;}
.y160{bottom:942.810000px;}
.y9{bottom:950.190000px;}
.y3b{bottom:955.590000px;}
.y15f{bottom:961.170000px;}
.y8{bottom:975.390000px;}
.y3a{bottom:976.650000px;}
.y15e{bottom:979.530000px;}
.y39{bottom:997.710000px;}
.y15d{bottom:997.890000px;}
.y7{bottom:1009.050000px;}
.y38{bottom:1018.770000px;}
.y37{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.y36{bottom:1060.890000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1081.950000px;}
.y34{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y33{bottom:1124.070000px;}
.y32{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y31{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y30{bottom:1193.220000px;}
.hd{height:32.319071px;}
.he{height:38.481883px;}
.h8{height:38.671172px;}
.h15{height:39.610873px;}
.h12{height:39.989168px;}
.h10{height:43.226798px;}
.h13{height:43.506914px;}
.h1b{height:45.019333px;}
.hb{height:45.170156px;}
.h19{height:46.502666px;}
.h17{height:46.687638px;}
.h9{height:48.088125px;}
.ha{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.hf{height:145.068000px;}
.hc{height:267.676240px;}
.h1a{height:273.330000px;}
.h18{height:282.360000px;}
.h16{height:283.455000px;}
.h14{height:320.355000px;}
.h11{height:446.625000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:474.740480px;}
.w5{width:505.125000px;}
.w7{width:518.625000px;}
.w8{width:523.125000px;}
.w6{width:534.375000px;}
.w9{width:562.500000px;}
.w3{width:594.754347px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.262073px;}
.xc{left:6.164324px;}
.xd{left:32.305554px;}
.x19{left:52.574772px;}
.x6{left:53.999987px;}
.x1e{left:55.618802px;}
.x15{left:57.054767px;}
.x26{left:58.545927px;}
.x1c{left:64.979987px;}
.x9{left:70.199987px;}
.x1a{left:71.542157px;}
.x23{left:73.454184px;}
.x7{left:75.599987px;}
.x17{left:77.618414px;}
.x1f{left:79.017677px;}
.x16{left:81.034449px;}
.x27{left:83.176246px;}
.x22{left:92.555987px;}
.x8{left:97.235987px;}
.x25{left:98.495987px;}
.xa{left:102.635987px;}
.xb{left:149.114990px;}
.x5{left:173.189987px;}
.x14{left:184.855505px;}
.x1d{left:186.855000px;}
.x18{left:193.380000px;}
.x12{left:209.145000px;}
.x3{left:286.634987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.xe{left:439.061285px;}
.x1{left:479.264987px;}
.x10{left:683.969987px;}
.x11{left:699.629987px;}
.x20{left:706.469987px;}
.x21{left:716.729987px;}
.x1b{left:722.489987px;}
.x24{left:735.989987px;}
.xf{left:743.909987px;}
.x28{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls38{letter-spacing:-3.708250pt;}
.ls39{letter-spacing:-3.693558pt;}
.ls41{letter-spacing:-3.575742pt;}
.ls2d{letter-spacing:-3.562432pt;}
.ls2e{letter-spacing:-3.176212pt;}
.ls36{letter-spacing:-3.146165pt;}
.ls2c{letter-spacing:-2.980628pt;}
.ls2a{letter-spacing:-0.535262pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1a{letter-spacing:-0.368000pt;}
.ls25{letter-spacing:-0.242133pt;}
.lsd{letter-spacing:-0.238933pt;}
.ls26{letter-spacing:-0.213867pt;}
.ls1b{letter-spacing:-0.202667pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls15{letter-spacing:-0.190933pt;}
.ls19{letter-spacing:-0.185600pt;}
.ls29{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls43{letter-spacing:-0.095467pt;}
.ls34{letter-spacing:-0.083200pt;}
.ls40{letter-spacing:-0.080000pt;}
.ls44{letter-spacing:-0.071467pt;}
.ls28{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.049280pt;}
.ls3e{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls3f{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.058667pt;}
.ls35{letter-spacing:0.059733pt;}
.ls32{letter-spacing:0.066667pt;}
.ls1f{letter-spacing:0.092160pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls30{letter-spacing:0.154667pt;}
.ls20{letter-spacing:0.154880pt;}
.ls27{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.169067pt;}
.ls7{letter-spacing:0.186667pt;}
.ls17{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.279467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.398080pt;}
.ls1c{letter-spacing:0.426240pt;}
.ls3c{letter-spacing:0.549120pt;}
.ls37{letter-spacing:0.560000pt;}
.ls24{letter-spacing:0.561556pt;}
.ls1e{letter-spacing:0.590720pt;}
.ls23{letter-spacing:1.434880pt;}
.ls22{letter-spacing:1.872640pt;}
.ls33{letter-spacing:2.714880pt;}
.ls13{letter-spacing:5.072640pt;}
.ls42{letter-spacing:10.832640pt;}
.ls12{letter-spacing:14.032640pt;}
.lsf{letter-spacing:15.312640pt;}
.ls3b{letter-spacing:15.952640pt;}
.ls10{letter-spacing:17.872640pt;}
.lse{letter-spacing:19.152640pt;}
.ls11{letter-spacing:20.432640pt;}
.ls3a{letter-spacing:32.592640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls2f{letter-spacing:36.432640pt;}
.ls3d{letter-spacing:37.840640pt;}
.ls31{letter-spacing:38.352640pt;}
.ls21{letter-spacing:40.912640pt;}
.ls2b{letter-spacing:53.434880pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.284587pt;}
.wsf{word-spacing:-12.165120pt;}
.ws1b{word-spacing:-12.064853pt;}
.ws7{word-spacing:-12.005120pt;}
.ws28{word-spacing:-11.971200pt;}
.wsd{word-spacing:-11.955840pt;}
.ws10{word-spacing:-11.953280pt;}
.ws30{word-spacing:-11.933653pt;}
.ws2f{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws9{word-spacing:-11.766187pt;}
.ws29{word-spacing:-10.848000pt;}
.ws2a{word-spacing:-10.768000pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.130560pt;}
.ws5{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
.ws13{word-spacing:40.081589pt;}
.ws11{word-spacing:46.589460pt;}
.ws1c{word-spacing:58.221673pt;}
.ws18{word-spacing:58.777707pt;}
.ws12{word-spacing:60.897919pt;}
.ws2b{word-spacing:66.171247pt;}
.ws24{word-spacing:68.351511pt;}
.ws20{word-spacing:68.623390pt;}
.ws1e{word-spacing:74.199579pt;}
.ws16{word-spacing:74.908206pt;}
.ws2d{word-spacing:84.330773pt;}
.ws26{word-spacing:87.109371pt;}
.ws22{word-spacing:87.455862pt;}
.ws14{word-spacing:154.138990pt;}
.ws1f{word-spacing:186.183885pt;}
.ws1a{word-spacing:187.961995pt;}
.ws2e{word-spacing:211.605392pt;}
.ws27{word-spacing:218.577535pt;}
.ws23{word-spacing:219.446963pt;}
.ws17{word-spacing:250.307529pt;}
.ws1d{word-spacing:263.925776pt;}
.ws15{word-spacing:266.304550pt;}
.ws19{word-spacing:266.446343pt;}
.ws2c{word-spacing:299.962142pt;}
.ws25{word-spacing:309.845535pt;}
.ws21{word-spacing:311.077996pt;}
._1b{margin-left:-474.025387pt;}
._1c{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._11{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._15{margin-left:-198.021333pt;}
._1f{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._16{margin-left:-178.235307pt;}
._1e{margin-left:-168.954880pt;}
._22{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._21{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1d{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._20{margin-left:-97.441493pt;}
._1a{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._19{margin-left:-76.799787pt;}
._18{margin-left:-74.240000pt;}
._12{margin-left:-72.312320pt;}
._14{margin-left:-59.292160pt;}
._13{margin-left:-43.665707pt;}
._17{margin-left:-28.861013pt;}
._4d{margin-left:-5.499296pt;}
._24{margin-left:-4.557440pt;}
._39{margin-left:-3.574519pt;}
._23{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._26{width:1.474987pt;}
._25{width:2.437760pt;}
._2a{width:3.329707pt;}
._28{width:4.780800pt;}
._27{width:5.790080pt;}
._29{width:7.278720pt;}
._2d{width:8.214400pt;}
._2c{width:9.242880pt;}
._38{width:10.783360pt;}
._6c{width:11.965785pt;}
._2b{width:12.933973pt;}
._85{width:14.335573pt;}
._86{width:15.471573pt;}
._36{width:55.585381pt;}
._3a{width:67.251617pt;}
._3e{width:74.066993pt;}
._35{width:75.541317pt;}
._57{width:77.242614pt;}
._47{width:79.144057pt;}
._40{width:81.510850pt;}
._37{width:84.356598pt;}
._48{width:85.516794pt;}
._4b{width:88.069203pt;}
._62{width:91.767034pt;}
._58{width:92.764650pt;}
._49{width:93.710916pt;}
._34{width:96.318894pt;}
._79{width:99.341090pt;}
._63{width:100.638170pt;}
._5f{width:101.796905pt;}
._55{width:102.688103pt;}
._65{width:103.886383pt;}
._2f{width:106.771062pt;}
._70{width:108.705632pt;}
._64{width:110.161940pt;}
._30{width:113.404790pt;}
._33{width:114.712288pt;}
._4e{width:116.512429pt;}
._31{width:120.540548pt;}
._5b{width:121.592350pt;}
._4f{width:122.667534pt;}
._2e{width:124.740907pt;}
._5d{width:127.407829pt;}
._52{width:128.596091pt;}
._7b{width:131.002638pt;}
._32{width:132.603245pt;}
._51{width:134.412556pt;}
._50{width:135.654863pt;}
._7c{width:137.199475pt;}
._67{width:142.911432pt;}
._84{width:144.674044pt;}
._80{width:145.594405pt;}
._6b{width:150.094659pt;}
._7f{width:151.106667pt;}
._7d{width:152.570759pt;}
._73{width:156.416577pt;}
._6a{width:157.372431pt;}
._68{width:158.305019pt;}
._5c{width:159.642230pt;}
._3f{width:161.460746pt;}
._45{width:167.528252pt;}
._44{width:168.657059pt;}
._53{width:170.925993pt;}
._7e{width:181.083740pt;}
._56{width:186.255840pt;}
._46{width:187.966174pt;}
._69{width:189.049732pt;}
._81{width:192.042621pt;}
._74{width:198.437354pt;}
._6d{width:199.439494pt;}
._43{width:207.181415pt;}
._77{width:212.129150pt;}
._61{width:220.432024pt;}
._3b{width:227.943505pt;}
._3c{width:232.820743pt;}
._5e{width:240.186259pt;}
._54{width:242.584153pt;}
._59{width:266.430019pt;}
._82{width:273.235281pt;}
._3d{width:278.969184pt;}
._75{width:281.987071pt;}
._6e{width:283.050649pt;}
._4a{width:285.113317pt;}
._42{width:288.809505pt;}
._78{width:302.808315pt;}
._71{width:312.785485pt;}
._5a{width:314.320095pt;}
._4c{width:317.313145pt;}
._60{width:332.829203pt;}
._41{width:336.001665pt;}
._7a{width:357.346820pt;}
._72{width:369.082864pt;}
._66{width:370.546352pt;}
._83{width:378.643686pt;}
._76{width:391.083222pt;}
._6f{width:392.634435pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:39.301986pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:46.796346pt;}
.fs2{font-size:48.000000pt;}
.fsc{font-size:48.169268pt;}
.fsb{font-size:48.629298pt;}
.fsa{font-size:52.566456pt;}
.fs4{font-size:53.120000pt;}
.fsf{font-size:54.746289pt;}
.fse{font-size:56.550113pt;}
.fsd{font-size:56.775051pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:5.441491pt;}
.y88{bottom:8.889302pt;}
.yec{bottom:14.446621pt;}
.ybb{bottom:14.495000pt;}
.ya4{bottom:15.649402pt;}
.y15c{bottom:16.351295pt;}
.y128{bottom:16.890051pt;}
.y116{bottom:16.957234pt;}
.y75{bottom:18.775358pt;}
.y87{bottom:24.881124pt;}
.yeb{bottom:28.056049pt;}
.yba{bottom:28.234610pt;}
.ya3{bottom:30.441773pt;}
.y15b{bottom:31.818952pt;}
.y127{bottom:32.867348pt;}
.y115{bottom:32.998083pt;}
.yea{bottom:41.666095pt;}
.yb9{bottom:41.924747pt;}
.ya2{bottom:45.286731pt;}
.y15a{bottom:47.287310pt;}
.y126{bottom:48.845370pt;}
.y114{bottom:49.039661pt;}
.y76{bottom:53.876220pt;}
.y6{bottom:54.560000pt;}
.ye9{bottom:55.226725pt;}
.yb8{bottom:55.664773pt;}
.y86{bottom:56.866485pt;}
.ya1{bottom:60.077983pt;}
.y159{bottom:62.699505pt;}
.y125{bottom:64.765379pt;}
.y113{bottom:65.022994pt;}
.ye8{bottom:68.836771pt;}
.yb7{bottom:69.354911pt;}
.y85{bottom:72.859165pt;}
.y158{bottom:78.167864pt;}
.y124{bottom:80.743401pt;}
.y112{bottom:81.064571pt;}
.ye7{bottom:82.446817pt;}
.yb6{bottom:83.094937pt;}
.yda{bottom:86.080000pt;}
.y84{bottom:88.851845pt;}
.y77{bottom:88.934193pt;}
.y14a{bottom:89.600000pt;}
.ya0{bottom:89.660491pt;}
.y89{bottom:92.000000pt;}
.y74{bottom:92.080000pt;}
.y157{bottom:93.636223pt;}
.y62{bottom:95.360000pt;}
.ye6{bottom:96.007447pt;}
.y123{bottom:96.721424pt;}
.yb5{bottom:96.785075pt;}
.y111{bottom:97.106149pt;}
.y104{bottom:97.120000pt;}
.y186{bottom:99.200000pt;}
.y2f{bottom:100.640000pt;}
.y99{bottom:102.560000pt;}
.y9f{bottom:104.505430pt;}
.yd9{bottom:104.800000pt;}
.y83{bottom:104.844525pt;}
.y149{bottom:108.320000pt;}
.y156{bottom:109.048418pt;}
.y122{bottom:112.641432pt;}
.y110{bottom:113.089482pt;}
.y61{bottom:114.080000pt;}
.y103{bottom:115.840000pt;}
.y2e{bottom:119.360000pt;}
.y82{bottom:120.794315pt;}
.y98{bottom:121.280000pt;}
.ye5{bottom:123.227529pt;}
.yd8{bottom:123.520000pt;}
.y78{bottom:124.035055pt;}
.yb4{bottom:124.265124pt;}
.y148{bottom:126.880000pt;}
.y60{bottom:132.800000pt;}
.y9e{bottom:134.087962pt;}
.y102{bottom:134.560000pt;}
.y81{bottom:136.786996pt;}
.ye4{bottom:136.837575pt;}
.yb3{bottom:137.955262pt;}
.y2d{bottom:138.106667pt;}
.y155{bottom:139.985125pt;}
.y97{bottom:140.026667pt;}
.yd7{bottom:142.266667pt;}
.y121{bottom:144.597472pt;}
.y10f{bottom:145.172627pt;}
.y147{bottom:145.626667pt;}
.y9d{bottom:148.879215pt;}
.ye3{bottom:150.398204pt;}
.y5f{bottom:151.546667pt;}
.yb2{bottom:151.695287pt;}
.y80{bottom:152.779676pt;}
.y101{bottom:153.306667pt;}
.y96{bottom:155.226667pt;}
.y154{bottom:155.453484pt;}
.ya5{bottom:156.400000pt;}
.y2c{bottom:156.826667pt;}
.y79{bottom:159.134201pt;}
.y120{bottom:160.575495pt;}
.yd6{bottom:160.986667pt;}
.y10e{bottom:161.214205pt;}
.y9c{bottom:163.670467pt;}
.ye2{bottom:164.008250pt;}
.y146{bottom:164.346667pt;}
.yb1{bottom:165.385425pt;}
.y5e{bottom:170.266667pt;}
.y153{bottom:170.865679pt;}
.y100{bottom:172.026667pt;}
.y2b{bottom:175.546667pt;}
.y11f{bottom:176.495503pt;}
.y185{bottom:177.146667pt;}
.y10d{bottom:177.197538pt;}
.y9b{bottom:178.517663pt;}
.yd5{bottom:179.706667pt;}
.y145{bottom:183.066667pt;}
.y7f{bottom:184.768467pt;}
.y152{bottom:186.334037pt;}
.y5d{bottom:188.986667pt;}
.yff{bottom:190.746667pt;}
.ye1{bottom:191.228345pt;}
.y11e{bottom:192.473525pt;}
.yb0{bottom:192.813511pt;}
.y10c{bottom:193.239115pt;}
.y7a{bottom:194.187027pt;}
.y2a{bottom:194.266667pt;}
.y184{bottom:195.866667pt;}
.yd4{bottom:198.426667pt;}
.y7e{bottom:200.757716pt;}
.y144{bottom:201.786667pt;}
.y5c{bottom:207.706667pt;}
.yfe{bottom:209.466667pt;}
.y29{bottom:212.986667pt;}
.y183{bottom:214.586667pt;}
.y7d{bottom:216.746965pt;}
.yd3{bottom:217.146667pt;}
.y151{bottom:217.270757pt;}
.ye0{bottom:218.399028pt;}
.yaf{bottom:220.235361pt;}
.y143{bottom:220.506667pt;}
.y11d{bottom:224.429572pt;}
.y10b{bottom:225.322273pt;}
.y5b{bottom:226.426667pt;}
.yfd{bottom:228.186667pt;}
.y7b{bottom:229.287889pt;}
.y28{bottom:231.706667pt;}
.ydf{bottom:232.009074pt;}
.y182{bottom:233.306667pt;}
.yae{bottom:233.975387pt;}
.yd2{bottom:235.866667pt;}
.y142{bottom:239.226667pt;}
.y5a{bottom:245.146667pt;}
.yde{bottom:245.577940pt;}
.yfc{bottom:246.906667pt;}
.yad{bottom:247.715413pt;}
.y150{bottom:248.148978pt;}
.y27{bottom:250.426667pt;}
.y181{bottom:252.026667pt;}
.yd1{bottom:254.586667pt;}
.y11c{bottom:256.325189pt;}
.y10a{bottom:257.344764pt;}
.y141{bottom:257.946667pt;}
.ydd{bottom:259.187986pt;}
.yac{bottom:261.413865pt;}
.y14f{bottom:263.617337pt;}
.y59{bottom:263.866667pt;}
.yfb{bottom:265.626667pt;}
.y26{bottom:269.146667pt;}
.y180{bottom:270.746667pt;}
.y11b{bottom:272.303211pt;}
.ydc{bottom:272.798032pt;}
.yd0{bottom:273.306667pt;}
.y109{bottom:273.386342pt;}
.yab{bottom:275.153891pt;}
.y140{bottom:276.666667pt;}
.y14e{bottom:279.038892pt;}
.y58{bottom:282.586667pt;}
.yfa{bottom:284.346667pt;}
.y25{bottom:287.866667pt;}
.y11a{bottom:288.232889pt;}
.yaa{bottom:288.852344pt;}
.y108{bottom:289.379382pt;}
.y17f{bottom:289.466667pt;}
.ycf{bottom:292.026667pt;}
.y14d{bottom:294.507251pt;}
.y13f{bottom:295.386667pt;}
.y57{bottom:301.306667pt;}
.yf9{bottom:303.066667pt;}
.y119{bottom:304.210911pt;}
.y107{bottom:305.420960pt;}
.y24{bottom:306.586667pt;}
.y17e{bottom:308.186667pt;}
.y14c{bottom:309.975610pt;}
.yce{bottom:310.746667pt;}
.y13e{bottom:314.106667pt;}
.y56{bottom:320.026667pt;}
.y118{bottom:320.188934pt;}
.y106{bottom:321.462538pt;}
.yf8{bottom:321.786667pt;}
.y23{bottom:325.306667pt;}
.y17d{bottom:326.906667pt;}
.ya9{bottom:330.010061pt;}
.y13d{bottom:332.826667pt;}
.y73{bottom:336.026667pt;}
.ycd{bottom:337.466667pt;}
.y55{bottom:338.746667pt;}
.yf7{bottom:340.506667pt;}
.ya8{bottom:343.708513pt;}
.y22{bottom:344.026667pt;}
.y17c{bottom:345.626667pt;}
.y13c{bottom:351.546667pt;}
.y72{bottom:354.746667pt;}
.ycc{bottom:356.226667pt;}
.ya7{bottom:357.448539pt;}
.y54{bottom:357.506667pt;}
.yf6{bottom:359.266667pt;}
.y21{bottom:362.786667pt;}
.y17b{bottom:364.386667pt;}
.y13b{bottom:370.306667pt;}
.y71{bottom:373.506667pt;}
.ycb{bottom:374.946667pt;}
.y53{bottom:376.226667pt;}
.yf5{bottom:377.986667pt;}
.y20{bottom:381.506667pt;}
.y17a{bottom:383.106667pt;}
.ya6{bottom:384.866231pt;}
.y13a{bottom:389.026667pt;}
.y70{bottom:392.226667pt;}
.yf4{bottom:393.186667pt;}
.yca{bottom:393.666667pt;}
.y117{bottom:394.293333pt;}
.y1f{bottom:400.226667pt;}
.y179{bottom:401.826667pt;}
.y52{bottom:402.946667pt;}
.y139{bottom:407.746667pt;}
.y6f{bottom:410.946667pt;}
.yc9{bottom:412.386667pt;}
.y1e{bottom:418.946667pt;}
.y178{bottom:420.546667pt;}
.y51{bottom:421.666667pt;}
.y138{bottom:426.466667pt;}
.y6e{bottom:429.666667pt;}
.yc8{bottom:431.106667pt;}
.y177{bottom:436.866667pt;}
.y1d{bottom:437.666667pt;}
.y50{bottom:440.386667pt;}
.y137{bottom:445.186667pt;}
.y6d{bottom:448.386667pt;}
.yc7{bottom:449.826667pt;}
.y176{bottom:453.186667pt;}
.y1c{bottom:456.386667pt;}
.y4f{bottom:459.106667pt;}
.y136{bottom:463.906667pt;}
.y6c{bottom:467.106667pt;}
.yc6{bottom:468.546667pt;}
.y175{bottom:469.346667pt;}
.y1b{bottom:475.106667pt;}
.y4e{bottom:477.826667pt;}
.y135{bottom:482.626667pt;}
.y174{bottom:485.666667pt;}
.y6b{bottom:485.826667pt;}
.yc5{bottom:487.266667pt;}
.y1a{bottom:493.826667pt;}
.y4d{bottom:496.546667pt;}
.y134{bottom:501.346667pt;}
.y173{bottom:501.986667pt;}
.y6a{bottom:504.546667pt;}
.yc4{bottom:505.986667pt;}
.y19{bottom:512.546667pt;}
.y4c{bottom:515.266667pt;}
.y172{bottom:518.306667pt;}
.y133{bottom:520.066667pt;}
.y69{bottom:523.266667pt;}
.yc3{bottom:524.706667pt;}
.y18{bottom:531.266667pt;}
.y171{bottom:534.466667pt;}
.y132{bottom:538.786667pt;}
.y4b{bottom:541.986667pt;}
.yc2{bottom:543.426667pt;}
.y17{bottom:549.986667pt;}
.y170{bottom:550.786667pt;}
.y131{bottom:557.506667pt;}
.y95{bottom:559.266667pt;}
.y4a{bottom:560.706667pt;}
.yc1{bottom:562.146667pt;}
.y16{bottom:568.706667pt;}
.y16f{bottom:569.506667pt;}
.y130{bottom:576.226667pt;}
.y94{bottom:578.013333pt;}
.y49{bottom:579.453333pt;}
.yc0{bottom:580.893333pt;}
.y15{bottom:587.293333pt;}
.y16e{bottom:588.253333pt;}
.y12f{bottom:594.973333pt;}
.y93{bottom:596.733333pt;}
.y48{bottom:598.173333pt;}
.ybf{bottom:599.613333pt;}
.y14{bottom:606.013333pt;}
.y16d{bottom:606.973333pt;}
.y12e{bottom:613.693333pt;}
.y92{bottom:615.453333pt;}
.y47{bottom:616.893333pt;}
.ybe{bottom:618.333333pt;}
.y16c{bottom:625.693333pt;}
.y12d{bottom:632.413333pt;}
.y91{bottom:634.173333pt;}
.y46{bottom:635.613333pt;}
.ybd{bottom:637.053333pt;}
.y16b{bottom:644.413333pt;}
.y13{bottom:645.693333pt;}
.yf3{bottom:651.133333pt;}
.ybc{bottom:652.253333pt;}
.ydb{bottom:652.360000pt;}
.y90{bottom:652.893333pt;}
.y45{bottom:654.333333pt;}
.y16a{bottom:663.133333pt;}
.yf2{bottom:669.853333pt;}
.y8f{bottom:671.613333pt;}
.y12{bottom:672.253333pt;}
.y68{bottom:672.893333pt;}
.y44{bottom:680.893333pt;}
.y169{bottom:681.853333pt;}
.yf1{bottom:688.573333pt;}
.y8e{bottom:690.333333pt;}
.y11{bottom:690.973333pt;}
.y67{bottom:691.613333pt;}
.y168{bottom:698.173333pt;}
.y43{bottom:699.613333pt;}
.yf0{bottom:707.293333pt;}
.y8d{bottom:709.053333pt;}
.y10{bottom:709.693333pt;}
.y66{bottom:710.333333pt;}
.y167{bottom:714.333333pt;}
.y12c{bottom:715.293333pt;}
.y42{bottom:718.333333pt;}
.yef{bottom:726.013333pt;}
.y8c{bottom:727.773333pt;}
.yf{bottom:728.413333pt;}
.y65{bottom:729.053333pt;}
.y166{bottom:730.653333pt;}
.y12b{bottom:734.013333pt;}
.y41{bottom:737.053333pt;}
.yee{bottom:744.733333pt;}
.y8b{bottom:746.493333pt;}
.y165{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.y64{bottom:747.773333pt;}
.y12a{bottom:752.733333pt;}
.y40{bottom:755.773333pt;}
.yed{bottom:759.933333pt;}
.y105{bottom:760.040000pt;}
.y164{bottom:765.533333pt;}
.yd{bottom:765.853333pt;}
.y63{bottom:766.493333pt;}
.y129{bottom:767.933333pt;}
.y14b{bottom:769.040000pt;}
.y8a{bottom:769.533333pt;}
.y9a{bottom:770.733333pt;}
.y3f{bottom:774.493333pt;}
.y163{bottom:784.253333pt;}
.yc{bottom:786.493333pt;}
.y3e{bottom:793.213333pt;}
.y162{bottom:803.013333pt;}
.yb{bottom:809.893333pt;}
.y3d{bottom:811.973333pt;}
.y161{bottom:821.733333pt;}
.ya{bottom:824.773333pt;}
.y3c{bottom:830.693333pt;}
.y160{bottom:838.053333pt;}
.y9{bottom:844.613333pt;}
.y3b{bottom:849.413333pt;}
.y15f{bottom:854.373333pt;}
.y8{bottom:867.013333pt;}
.y3a{bottom:868.133333pt;}
.y15e{bottom:870.693333pt;}
.y39{bottom:886.853333pt;}
.y15d{bottom:887.013333pt;}
.y7{bottom:896.933333pt;}
.y38{bottom:905.573333pt;}
.y37{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.y36{bottom:943.013333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:961.733333pt;}
.y34{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y33{bottom:999.173333pt;}
.y32{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y31{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y30{bottom:1060.640000pt;}
.hd{height:28.728063pt;}
.he{height:34.206118pt;}
.h8{height:34.374375pt;}
.h15{height:35.209665pt;}
.h12{height:35.545927pt;}
.h10{height:38.423820pt;}
.h13{height:38.672812pt;}
.h1b{height:40.017185pt;}
.hb{height:40.151250pt;}
.h19{height:41.335703pt;}
.h17{height:41.500122pt;}
.h9{height:42.745000pt;}
.ha{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.hf{height:128.949333pt;}
.hc{height:237.934436pt;}
.h1a{height:242.960000pt;}
.h18{height:250.986667pt;}
.h16{height:251.960000pt;}
.h14{height:284.760000pt;}
.h11{height:397.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:421.991537pt;}
.w5{width:449.000000pt;}
.w7{width:461.000000pt;}
.w8{width:465.000000pt;}
.w6{width:475.000000pt;}
.w9{width:500.000000pt;}
.w3{width:528.670531pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:2.010731pt;}
.xc{left:5.479399pt;}
.xd{left:28.716048pt;}
.x19{left:46.733131pt;}
.x6{left:47.999988pt;}
.x1e{left:49.438936pt;}
.x15{left:50.715348pt;}
.x26{left:52.040824pt;}
.x1c{left:57.759988pt;}
.x9{left:62.399988pt;}
.x1a{left:63.593028pt;}
.x23{left:65.292608pt;}
.x7{left:67.199988pt;}
.x17{left:68.994146pt;}
.x1f{left:70.237935pt;}
.x16{left:72.030621pt;}
.x27{left:73.934441pt;}
.x22{left:82.271988pt;}
.x8{left:86.431988pt;}
.x25{left:87.551988pt;}
.xa{left:91.231988pt;}
.xb{left:132.546658pt;}
.x5{left:153.946655pt;}
.x14{left:164.316004pt;}
.x1d{left:166.093333pt;}
.x18{left:171.893333pt;}
.x12{left:185.906667pt;}
.x3{left:254.786655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.xe{left:390.276698pt;}
.x1{left:426.013322pt;}
.x10{left:607.973322pt;}
.x11{left:621.893322pt;}
.x20{left:627.973322pt;}
.x21{left:637.093322pt;}
.x1b{left:642.213322pt;}
.x24{left:654.213322pt;}
.xf{left:661.253322pt;}
.x28{left:746.079988pt;}
}




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