
    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_86123f0246fd06f704a49cf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_4ae0b97e5b47f76cd2881829.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_2055c6a4cff3b16dac5783b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.669434;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_06cf021417159a8f4986b196.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_a0690e064661bbce81933f69.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8d4b75feae16ed0ed455ab1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_87bbf5155c502c044817dd8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_0561c0d2220dea253218fd5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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;}
.m2{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,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);}
.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);}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:82.799400px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.059760px;}
.ls3{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.173520px;}
.ls5{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.331200px;}
.ls6{letter-spacing:17.298000px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.891200px;}
.ws3{word-spacing:-16.692480px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.999760px;}
.ws7{word-spacing:-0.728640px;}
.ws6{word-spacing:-0.239040px;}
.ws5{word-spacing:-0.132480px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-2.401632px;}
._0{margin-left:-1.299024px;}
._1{width:1.212192px;}
._3{width:2.412432px;}
._8{width:3.610152px;}
._9{width:5.296824px;}
._16{width:6.446544px;}
._1d{width:8.431776px;}
._5{width:9.444528px;}
._6{width:10.967976px;}
._1e{width:12.146664px;}
._13{width:13.182000px;}
._17{width:14.394504px;}
._10{width:15.407064px;}
._4{width:16.420896px;}
._11{width:19.008072px;}
._12{width:20.610576px;}
._f{width:22.206816px;}
._22{width:24.097176px;}
._c{width:25.426992px;}
._a{width:26.434800px;}
._b{width:27.569304px;}
._15{width:28.689312px;}
._14{width:30.079992px;}
._1f{width:31.288704px;}
._1c{width:32.763312px;}
._1b{width:33.798000px;}
._7{width:35.511624px;}
._e4{width:36.847440px;}
._1a{width:38.783304px;}
._19{width:39.988872px;}
._a2{width:41.195016px;}
._a0{width:42.246432px;}
._a1{width:43.442400px;}
._21{width:45.606432px;}
._20{width:46.711800px;}
._d{width:48.546360px;}
._e{width:50.370768px;}
._18{width:53.339400px;}
._5a{width:55.276827px;}
._62{width:58.967904px;}
._90{width:60.358982px;}
._48{width:63.052827px;}
._80{width:69.062736px;}
._a5{width:73.331640px;}
._a4{width:74.396544px;}
._98{width:80.927904px;}
._a3{width:82.296648px;}
._6b{width:84.406982px;}
._51{width:85.728259px;}
._60{width:92.470982px;}
._71{width:96.911904px;}
._79{width:112.895904px;}
._9c{width:116.999904px;}
._5f{width:120.815904px;}
._74{width:123.062736px;}
._8c{width:125.063904px;}
._da{width:131.307717px;}
._53{width:153.124827px;}
._84{width:154.318982px;}
._89{width:164.951904px;}
._d0{width:169.323717px;}
._91{width:172.871904px;}
._61{width:180.863904px;}
._c0{width:187.016266px;}
._64{width:188.408891px;}
._82{width:196.438982px;}
._34{width:207.567091px;}
._55{width:209.568259px;}
._32{width:211.440259px;}
._8a{width:220.967904px;}
._bb{width:225.339717px;}
._7d{width:230.422982px;}
._6e{width:232.991904px;}
._78{width:234.863904px;}
._8b{width:240.430982px;}
._93{width:248.350982px;}
._76{width:252.935904px;}
._75{width:254.879904px;}
._70{width:263.015904px;}
._cb{width:265.299717px;}
._96{width:274.895904px;}
._72{width:278.374982px;}
._66{width:280.390982px;}
._5b{width:283.228827px;}
._44{width:285.100827px;}
._7a{width:286.847904px;}
._aa{width:288.896266px;}
._d4{width:291.056266px;}
._68{width:292.895904px;}
._8e{width:294.911904px;}
._3a{width:297.052827px;}
._b4{width:301.299717px;}
._be{width:302.936266px;}
._67{width:304.438982px;}
._cd{width:307.394911px;}
._39{width:309.076827px;}
._38{width:311.448259px;}
._54{width:313.036827px;}
._42{width:314.196067px;}
._77{width:316.390982px;}
._46{width:321.100827px;}
._94{width:322.919904px;}
._59{width:325.204827px;}
._6c{width:326.951904px;}
._25{width:329.020827px;}
._6d{width:332.446982px;}
._4b{width:335.401507px;}
._5d{width:336.887904px;}
._81{width:338.831904px;}
._2f{width:341.188827px;}
._9e{width:342.863904px;}
._86{width:344.398982px;}
._92{width:347.806626px;}
._50{width:349.108827px;}
._27{width:351.124827px;}
._63{width:352.318982px;}
._7f{width:354.887904px;}
._d9{width:357.243717px;}
._65{width:358.847904px;}
._31{width:361.132827px;}
._4d{width:363.076827px;}
._2b{width:365.092827px;}
._3c{width:367.536259px;}
._45{width:371.640259px;}
._9f{width:376.717699px;}
._4c{width:381.076827px;}
._47{width:383.520259px;}
._8d{width:386.783904px;}
._35{width:389.140827px;}
._7c{width:390.815904px;}
._9d{width:392.422982px;}
._69{width:394.847904px;}
._9a{width:396.382982px;}
._9b{width:398.879904px;}
._3f{width:401.092827px;}
._c9{width:403.251717px;}
._db{width:407.283717px;}
._95{width:410.831904px;}
._6a{width:412.366982px;}
._88{width:414.791904px;}
._30{width:417.409507px;}
._73{width:420.430982px;}
._5e{width:424.318982px;}
._bd{width:427.227717px;}
._41{width:429.100827px;}
._99{width:432.382982px;}
._8f{width:434.879904px;}
._ce{width:439.251717px;}
._85{width:440.302982px;}
._7b{width:444.138059px;}
._5c{width:445.437083px;}
._a9{width:447.171717px;}
._87{width:448.366982px;}
._83{width:452.326982px;}
._6f{width:456.358982px;}
._97{width:460.318982px;}
._43{width:463.584259px;}
._b2{width:467.331717px;}
._2a{width:478.284067px;}
._56{width:487.416259px;}
._7e{width:489.096402px;}
._3d{width:491.092827px;}
._a6{width:500.970640px;}
._d6{width:503.346549px;}
._c2{width:504.968266px;}
._bf{width:511.251717px;}
._b1{width:515.355717px;}
._b9{width:521.259717px;}
._d3{width:523.275717px;}
._ae{width:532.976266px;}
._2d{width:543.004827px;}
._37{width:547.036827px;}
._b5{width:552.848266px;}
._a7{width:557.259717px;}
._24{width:560.167872px;}
._b3{width:564.872266px;}
._29{width:567.052827px;}
._a8{width:568.832266px;}
._ab{width:573.023098px;}
._b7{width:576.978710px;}
._b0{width:581.071156px;}
._2e{width:583.464259px;}
._ba{width:584.888266px;}
._b6{width:592.880266px;}
._57{width:595.363659px;}
._c1{width:596.840266px;}
._c4{width:600.800266px;}
._3b{width:603.552259px;}
._cc{width:604.832266px;}
._49{width:615.504259px;}
._40{width:619.536259px;}
._c8{width:620.888266px;}
._de{width:624.650556px;}
._3e{width:637.536259px;}
._d1{width:641.283717px;}
._4a{width:643.084827px;}
._23{width:645.306808px;}
._b8{width:648.824266px;}
._33{width:655.464259px;}
._dc{width:657.830748px;}
._4e{width:659.496259px;}
._c7{width:661.227717px;}
._c5{width:664.808266px;}
._d5{width:669.127156px;}
._dd{width:672.587724px;}
._e1{width:676.832266px;}
._ca{width:681.243717px;}
._bc{width:685.203717px;}
._28{width:691.536259px;}
._d8{width:692.816266px;}
._52{width:699.384259px;}
._e3{width:701.331717px;}
._4f{width:703.488259px;}
._c6{width:704.840266px;}
._ad{width:717.315717px;}
._26{width:719.472259px;}
._af{width:721.203717px;}
._d2{width:724.799098px;}
._e0{width:729.830748px;}
._36{width:731.496259px;}
._cf{width:732.848266px;}
._58{width:735.172827px;}
._ac{width:737.105273px;}
._2c{width:755.472259px;}
._d7{width:761.235717px;}
._c3{width:769.227717px;}
._df{width:773.822748px;}
._e2{width:781.179717px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:4.138945px;}
.y5b{bottom:4.139248px;}
.yd5{bottom:4.319097px;}
.ye4{bottom:4.319249px;}
.yee{bottom:4.319759px;}
.yf1{bottom:4.320059px;}
.y25{bottom:57.900300px;}
.y24{bottom:78.060300px;}
.y136{bottom:114.059550px;}
.yb7{bottom:116.939550px;}
.y10e{bottom:117.660300px;}
.y172{bottom:118.920300px;}
.y120{bottom:120.360300px;}
.yad{bottom:122.699700px;}
.yf0{bottom:123.240240px;}
.y95{bottom:124.860300px;}
.yc4{bottom:125.760300px;}
.y1c7{bottom:126.299550px;}
.yef{bottom:127.560300px;}
.y68{bottom:136.200300px;}
.y10d{bottom:138.360300px;}
.y196{bottom:142.860300px;}
.y147{bottom:143.219550px;}
.y3d{bottom:143.399550px;}
.y171{bottom:144.120300px;}
.y94{bottom:145.560300px;}
.y1df{bottom:146.999550px;}
.y1ab{bottom:148.260300px;}
.yed{bottom:148.440240px;}
.y17e{bottom:150.060000px;}
.yc3{bottom:150.960000px;}
.yec{bottom:152.760000px;}
.y135{bottom:155.459550px;}
.yb6{bottom:158.339550px;}
.y67{bottom:161.400000px;}
.y10c{bottom:163.560000px;}
.yac{bottom:164.099700px;}
.y1c6{bottom:167.699550px;}
.y195{bottom:168.060000px;}
.y170{bottom:169.320000px;}
.y93{bottom:170.760000px;}
.y1aa{bottom:172.560000px;}
.y17d{bottom:175.260000px;}
.yc2{bottom:176.160000px;}
.yeb{bottom:177.960000px;}
.y10b{bottom:184.260000px;}
.y3c{bottom:184.799550px;}
.y23{bottom:184.872960px;}
.y66{bottom:186.600000px;}
.y1de{bottom:188.399550px;}
.y194{bottom:193.259850px;}
.y16f{bottom:194.519850px;}
.y92{bottom:195.959850px;}
.y134{bottom:196.859550px;}
.y1a9{bottom:197.759850px;}
.y146{bottom:199.559550px;}
.yb5{bottom:199.739550px;}
.y17c{bottom:200.459850px;}
.yc1{bottom:201.359850px;}
.yea{bottom:203.159850px;}
.y22{bottom:203.767920px;}
.yab{bottom:205.499700px;}
.y65{bottom:207.299850px;}
.y1c5{bottom:209.099550px;}
.y10a{bottom:209.459850px;}
.y16e{bottom:215.219850px;}
.y11f{bottom:216.840600px;}
.y193{bottom:218.459850px;}
.y91{bottom:221.159850px;}
.y21{bottom:222.662880px;}
.y1a8{bottom:222.959850px;}
.y3b{bottom:226.199550px;}
.yc0{bottom:226.559850px;}
.ye9{bottom:228.359850px;}
.y1dd{bottom:229.799550px;}
.y109{bottom:230.159850px;}
.y64{bottom:232.499850px;}
.y133{bottom:238.259550px;}
.y192{bottom:239.159850px;}
.y16d{bottom:240.419850px;}
.yb4{bottom:241.139550px;}
.y20{bottom:241.740000px;}
.y1a7{bottom:243.659850px;}
.y90{bottom:246.359850px;}
.yaa{bottom:246.899700px;}
.ybf{bottom:247.259850px;}
.y1c4{bottom:250.499550px;}
.y63{bottom:253.199850px;}
.ye8{bottom:253.559850px;}
.y108{bottom:255.359850px;}
.y145{bottom:255.899550px;}
.y1f{bottom:260.658720px;}
.y191{bottom:264.359850px;}
.y16c{bottom:265.619850px;}
.y17b{bottom:267.059850px;}
.y11e{bottom:267.240600px;}
.y3a{bottom:267.599550px;}
.y1a6{bottom:268.859850px;}
.y1dc{bottom:271.199550px;}
.y8f{bottom:271.559850px;}
.ybe{bottom:272.459850px;}
.ye7{bottom:274.440600px;}
.y107{bottom:276.059850px;}
.y62{bottom:278.399850px;}
.ye6{bottom:278.759850px;}
.y132{bottom:279.659550px;}
.y1e{bottom:279.735840px;}
.yb3{bottom:282.539550px;}
.ya9{bottom:288.299700px;}
.y190{bottom:289.559850px;}
.y16b{bottom:290.819850px;}
.y1c3{bottom:291.899550px;}
.y17a{bottom:292.259850px;}
.y8e{bottom:296.759850px;}
.y144{bottom:297.479550px;}
.ybd{bottom:297.659850px;}
.y1d{bottom:298.630800px;}
.y106{bottom:301.259850px;}
.y61{bottom:303.599850px;}
.ye5{bottom:303.959850px;}
.y39{bottom:308.999550px;}
.y18f{bottom:310.259850px;}
.y1db{bottom:312.599550px;}
.y1a5{bottom:314.759850px;}
.y16a{bottom:316.019850px;}
.y8d{bottom:317.459850px;}
.y1c{bottom:317.525760px;}
.y131{bottom:321.059550px;}
.y105{bottom:321.959850px;}
.ybc{bottom:322.499850px;}
.y51{bottom:323.759550px;}
.yb2{bottom:323.939550px;}
.y60{bottom:324.299850px;}
.ye3{bottom:324.840600px;}
.ye2{bottom:329.159850px;}
.ya8{bottom:329.699700px;}
.y1c2{bottom:333.299550px;}
.y18e{bottom:335.459850px;}
.y1b{bottom:336.602880px;}
.y179{bottom:338.159850px;}
.y143{bottom:338.879550px;}
.y169{bottom:341.219850px;}
.ybb{bottom:342.480600px;}
.y8c{bottom:342.659850px;}
.yba{bottom:346.619850px;}
.y104{bottom:347.159850px;}
.y5f{bottom:349.499850px;}
.y38{bottom:350.399550px;}
.y1da{bottom:353.999550px;}
.ye1{bottom:354.359850px;}
.y1a{bottom:355.497840px;}
.y18d{bottom:356.159850px;}
.y1a4{bottom:356.340600px;}
.y168{bottom:357.600600px;}
.y1a3{bottom:360.659850px;}
.y167{bottom:361.919850px;}
.y130{bottom:362.459550px;}
.y11d{bottom:363.359850px;}
.y50{bottom:365.339550px;}
.y8b{bottom:367.859850px;}
.ya7{bottom:371.099700px;}
.y1c1{bottom:374.699550px;}
.y5e{bottom:374.699850px;}
.ye0{bottom:379.559850px;}
.y142{bottom:380.279550px;}
.y18c{bottom:381.359850px;}
.y1a2{bottom:385.859850px;}
.y166{bottom:387.119850px;}
.y11c{bottom:388.559850px;}
.y37{bottom:391.619550px;}
.y8a{bottom:393.059850px;}
.y1d9{bottom:395.399550px;}
.y5d{bottom:395.399850px;}
.y18b{bottom:402.059850px;}
.ydf{bottom:404.759850px;}
.yb9{bottom:406.559550px;}
.y4f{bottom:406.739550px;}
.y165{bottom:407.819850px;}
.y1a1{bottom:411.059850px;}
.ya6{bottom:412.499700px;}
.y103{bottom:413.759850px;}
.y1c0{bottom:416.099550px;}
.y19{bottom:417.780000px;}
.y89{bottom:418.259850px;}
.y12f{bottom:418.619550px;}
.y5c{bottom:420.239850px;}
.y1ad{bottom:421.499550px;}
.y141{bottom:421.679550px;}
.y18a{bottom:427.259850px;}
.yde{bottom:429.959850px;}
.y36{bottom:433.019550px;}
.y164{bottom:433.019850px;}
.y178{bottom:434.459850px;}
.y1a0{bottom:436.259850px;}
.y1d8{bottom:436.799550px;}
.y102{bottom:438.959850px;}
.y5a{bottom:440.220600px;}
.y88{bottom:443.459850px;}
.y59{bottom:444.359850px;}
.y189{bottom:447.959850px;}
.y4e{bottom:448.139550px;}
.ya5{bottom:453.899700px;}
.ydd{bottom:455.159850px;}
.y19f{bottom:456.959850px;}
.y1bf{bottom:457.499550px;}
.y18{bottom:457.744500px;}
.y163{bottom:458.219850px;}
.y101{bottom:459.659850px;}
.y12e{bottom:460.199550px;}
.y140{bottom:463.079550px;}
.y87{bottom:464.159850px;}
.y188{bottom:473.159850px;}
.y35{bottom:474.419550px;}
.y17{bottom:477.184500px;}
.y1d7{bottom:478.199550px;}
.y162{bottom:478.919850px;}
.ydc{bottom:480.359850px;}
.y19e{bottom:482.159850px;}
.y100{bottom:484.859850px;}
.y86{bottom:489.359850px;}
.y4d{bottom:489.539550px;}
.y187{bottom:493.859850px;}
.ya4{bottom:495.299700px;}
.y16{bottom:496.800000px;}
.y1be{bottom:498.899550px;}
.y12d{bottom:501.599550px;}
.y19d{bottom:502.859850px;}
.y161{bottom:504.119850px;}
.y58{bottom:504.299550px;}
.y13f{bottom:504.479550px;}
.ydb{bottom:505.559850px;}
.y11b{bottom:510.059850px;}
.y85{bottom:514.559850px;}
.y34{bottom:515.819550px;}
.y15{bottom:516.958560px;}
.y186{bottom:519.059850px;}
.y1d6{bottom:519.599550px;}
.y19c{bottom:528.059850px;}
.y160{bottom:529.319850px;}
.yda{bottom:530.759850px;}
.y4c{bottom:530.939550px;}
.ya3{bottom:536.699700px;}
.y14{bottom:536.940000px;}
.y84{bottom:539.759850px;}
.y1bd{bottom:540.299550px;}
.y12c{bottom:542.999550px;}
.y185{bottom:544.259850px;}
.y57{bottom:545.879550px;}
.y19b{bottom:548.759850px;}
.y15f{bottom:550.019850px;}
.yd9{bottom:551.459850px;}
.y11a{bottom:555.959850px;}
.y13{bottom:556.020000px;}
.y33{bottom:557.219550px;}
.y1d5{bottom:560.999550px;}
.y83{bottom:564.959700px;}
.y184{bottom:569.459700px;}
.y4b{bottom:572.339550px;}
.y19a{bottom:573.959700px;}
.y15e{bottom:575.219700px;}
.y12{bottom:575.458560px;}
.yd8{bottom:576.659700px;}
.ya2{bottom:578.099700px;}
.y1bc{bottom:581.699550px;}
.y12b{bottom:584.399550px;}
.y56{bottom:587.279550px;}
.y82{bottom:590.159700px;}
.y199{bottom:594.659700px;}
.y11{bottom:595.440000px;}
.y15d{bottom:595.919700px;}
.yff{bottom:597.359700px;}
.y119{bottom:597.540600px;}
.yd7{bottom:601.859700px;}
.y1d4{bottom:602.399550px;}
.y32{bottom:613.559550px;}
.y4a{bottom:613.739550px;}
.y10{bottom:614.341440px;}
.y81{bottom:615.359700px;}
.ya1{bottom:619.499700px;}
.y198{bottom:619.859700px;}
.y15c{bottom:621.119700px;}
.yfe{bottom:622.559700px;}
.y1bb{bottom:623.099550px;}
.y12a{bottom:625.799550px;}
.yd6{bottom:627.059700px;}
.y55{bottom:628.679550px;}
.yf{bottom:633.777120px;}
.y183{bottom:636.059700px;}
.y80{bottom:640.559700px;}
.yfd{bottom:643.259700px;}
.y13e{bottom:643.439550px;}
.y1d3{bottom:643.799550px;}
.y15b{bottom:646.319700px;}
.y177{bottom:647.759700px;}
.yd4{bottom:647.940600px;}
.yd3{bottom:652.259700px;}
.y31{bottom:655.139550px;}
.ya0{bottom:660.899700px;}
.y182{bottom:661.259700px;}
.y1ba{bottom:664.499550px;}
.y7f{bottom:665.759700px;}
.y15a{bottom:667.019700px;}
.y129{bottom:667.199550px;}
.yfc{bottom:668.459700px;}
.y49{bottom:669.899550px;}
.y54{bottom:670.079550px;}
.y176{bottom:672.959700px;}
.yd2{bottom:677.459700px;}
.y181{bottom:681.959700px;}
.y13d{bottom:685.019550px;}
.y1d2{bottom:685.199550px;}
.y7e{bottom:686.459700px;}
.ye{bottom:686.872800px;}
.yfb{bottom:689.159700px;}
.y159{bottom:692.219700px;}
.y30{bottom:696.539550px;}
.y118{bottom:698.159700px;}
.y9f{bottom:702.299700px;}
.yd1{bottom:702.659700px;}
.y1b9{bottom:705.899550px;}
.y180{bottom:707.159700px;}
.y128{bottom:708.599550px;}
.y48{bottom:711.479550px;}
.y7d{bottom:711.659700px;}
.yfa{bottom:714.359700px;}
.y158{bottom:717.419700px;}
.y117{bottom:723.359700px;}
.y1ac{bottom:726.239550px;}
.y13c{bottom:726.419550px;}
.y1d1{bottom:726.599550px;}
.yd0{bottom:727.859700px;}
.y7c{bottom:732.359700px;}
.yf9{bottom:735.059700px;}
.y197{bottom:736.859700px;}
.y2f{bottom:737.939550px;}
.yd{bottom:738.178560px;}
.y157{bottom:742.439700px;}
.y9e{bottom:743.699700px;}
.y1b8{bottom:747.299550px;}
.ycf{bottom:748.559700px;}
.y127{bottom:749.999550px;}
.y47{bottom:752.879550px;}
.yf8{bottom:755.940600px;}
.y7b{bottom:757.559700px;}
.yc{bottom:757.804320px;}
.yf7{bottom:760.259700px;}
.y156{bottom:767.639700px;}
.y13b{bottom:767.819550px;}
.y1d0{bottom:767.999550px;}
.yce{bottom:773.759700px;}
.yb{bottom:777.240000px;}
.y7a{bottom:778.259700px;}
.y2e{bottom:779.339550px;}
.y17f{bottom:782.759700px;}
.y9d{bottom:785.099700px;}
.yf6{bottom:785.459700px;}
.y1b7{bottom:788.699550px;}
.y126{bottom:791.399550px;}
.y155{bottom:792.839700px;}
.y46{bottom:794.279550px;}
.ycd{bottom:794.459700px;}
.ya{bottom:797.634000px;}
.y116{bottom:798.959700px;}
.y79{bottom:803.459700px;}
.y13a{bottom:809.219550px;}
.y1cf{bottom:809.399550px;}
.yf5{bottom:810.659700px;}
.y154{bottom:818.039700px;}
.ycc{bottom:819.659700px;}
.y9c{bottom:820.559700px;}
.y2d{bottom:820.739550px;}
.y115{bottom:824.159700px;}
.y78{bottom:828.659700px;}
.y1b6{bottom:830.099550px;}
.y125{bottom:832.799550px;}
.yb8{bottom:835.499550px;}
.y9{bottom:835.606080px;}
.y45{bottom:835.679550px;}
.yf4{bottom:835.859700px;}
.ycb{bottom:840.359700px;}
.y153{bottom:843.239700px;}
.y9b{bottom:844.859700px;}
.y114{bottom:849.359700px;}
.y139{bottom:850.619550px;}
.y1ce{bottom:850.799550px;}
.y77{bottom:853.859700px;}
.yf3{bottom:861.059700px;}
.y2c{bottom:862.139550px;}
.y9a{bottom:865.559700px;}
.y152{bottom:868.439700px;}
.y175{bottom:870.059700px;}
.y1b5{bottom:871.499550px;}
.y8{bottom:873.760320px;}
.y124{bottom:874.199550px;}
.y76{bottom:874.559700px;}
.y44{bottom:877.079550px;}
.yf2{bottom:886.259700px;}
.y151{bottom:889.139700px;}
.y99{bottom:890.759700px;}
.y138{bottom:892.019550px;}
.y1cd{bottom:892.199550px;}
.y174{bottom:895.259700px;}
.y75{bottom:899.759700px;}
.y2b{bottom:903.539550px;}
.yca{bottom:911.459700px;}
.y7{bottom:911.914560px;}
.y1b4{bottom:912.899550px;}
.y150{bottom:914.339700px;}
.y123{bottom:915.599550px;}
.y98{bottom:915.959700px;}
.y43{bottom:918.479550px;}
.y173{bottom:920.459700px;}
.y74{bottom:924.959700px;}
.yb1{bottom:933.239550px;}
.y137{bottom:933.419550px;}
.y1cc{bottom:933.599550px;}
.yc9{bottom:936.659700px;}
.y14f{bottom:939.539550px;}
.y97{bottom:941.159550px;}
.y2a{bottom:944.939550px;}
.y73{bottom:945.659550px;}
.y6{bottom:950.068800px;}
.y113{bottom:950.159550px;}
.y1b3{bottom:954.299550px;}
.y122{bottom:956.999550px;}
.y42{bottom:959.879550px;}
.y14e{bottom:960.239550px;}
.yc8{bottom:961.859550px;}
.y96{bottom:966.359550px;}
.y72{bottom:970.859550px;}
.yb0{bottom:974.819550px;}
.y1cb{bottom:974.999550px;}
.y112{bottom:975.359550px;}
.y14d{bottom:985.439550px;}
.y29{bottom:986.339550px;}
.yc7{bottom:987.059550px;}
.y5{bottom:988.223040px;}
.y71{bottom:991.559550px;}
.y121{bottom:992.459550px;}
.y1b2{bottom:995.699550px;}
.y111{bottom:996.059550px;}
.y41{bottom:1001.279550px;}
.y14c{bottom:1010.639550px;}
.yc6{bottom:1012.259550px;}
.yaf{bottom:1016.219550px;}
.y1ca{bottom:1016.399550px;}
.y70{bottom:1016.759550px;}
.y110{bottom:1021.259550px;}
.y4{bottom:1026.377280px;}
.y14b{bottom:1031.339550px;}
.y1b1{bottom:1037.099550px;}
.yc5{bottom:1037.459550px;}
.y6f{bottom:1041.959550px;}
.y28{bottom:1042.499550px;}
.y53{bottom:1042.679550px;}
.y14a{bottom:1056.179550px;}
.y40{bottom:1057.439550px;}
.yae{bottom:1057.619550px;}
.y1c9{bottom:1057.799550px;}
.y6e{bottom:1062.659550px;}
.y3{bottom:1064.531520px;}
.y10f{bottom:1067.159550px;}
.y149{bottom:1076.160600px;}
.y1b0{bottom:1078.499550px;}
.y148{bottom:1080.299550px;}
.y27{bottom:1084.079550px;}
.y6d{bottom:1087.859550px;}
.y52{bottom:1098.839550px;}
.y3f{bottom:1099.019550px;}
.y1c8{bottom:1099.199550px;}
.y2{bottom:1102.685760px;}
.y6c{bottom:1112.699550px;}
.y1af{bottom:1119.899550px;}
.y6a{bottom:1132.500600px;}
.y69{bottom:1136.639550px;}
.y26{bottom:1140.239550px;}
.y3e{bottom:1140.419550px;}
.y1ae{bottom:1140.599550px;}
.y1{bottom:1140.840000px;}
.ha{height:20.340000px;}
.hd{height:20.520000px;}
.h2{height:44.149219px;}
.h7{height:52.998047px;}
.h3{height:62.184375px;}
.h4{height:62.850938px;}
.h6{height:65.010937px;}
.h5{height:65.016698px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.hb{height:153.463462px;}
.hc{height:153.464062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:1.620000px;}
.w6{width:3.060000px;}
.w5{width:7.020000px;}
.w4{width:8.100000px;}
.w3{width:9.000000px;}
.w7{width:122.040000px;}
.w2{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x3{left:145.620000px;}
.x6{left:148.861336px;}
.x24{left:180.719621px;}
.x15{left:190.979850px;}
.x11{left:197.099539px;}
.x7{left:201.959621px;}
.xc{left:217.079850px;}
.x1e{left:231.839850px;}
.x16{left:299.519850px;}
.x4{left:309.780000px;}
.x1c{left:335.519850px;}
.x13{left:340.919850px;}
.xe{left:351.539850px;}
.xa{left:360.179850px;}
.x2{left:370.621440px;}
.x20{left:381.059850px;}
.x18{left:446.940000px;}
.x1a{left:448.020000px;}
.x1b{left:451.980000px;}
.x19{left:458.999850px;}
.x21{left:478.800000px;}
.x14{left:550.800000px;}
.xb{left:554.040000px;}
.x1d{left:578.520000px;}
.xd{left:581.759700px;}
.x1f{left:604.619700px;}
.x23{left:739.079700px;}
.x17{left:743.579700px;}
.x12{left:747.719700px;}
.xf{left:751.859700px;}
.x9{left:752.939700px;}
.x10{left:755.999700px;}
.x8{left:757.079700px;}
.x5{left:761.219700px;}
.x22{left:762.660000px;}
@media print{
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:73.599467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053120pt;}
.ls3{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.154240pt;}
.ls5{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.294400pt;}
.ls6{letter-spacing:15.376000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.014400pt;}
.ws3{word-spacing:-14.837760pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.333120pt;}
.ws7{word-spacing:-0.647680pt;}
.ws6{word-spacing:-0.212480pt;}
.ws5{word-spacing:-0.117760pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-2.134784pt;}
._0{margin-left:-1.154688pt;}
._1{width:1.077504pt;}
._3{width:2.144384pt;}
._8{width:3.209024pt;}
._9{width:4.708288pt;}
._16{width:5.730261pt;}
._1d{width:7.494912pt;}
._5{width:8.395136pt;}
._6{width:9.749312pt;}
._1e{width:10.797035pt;}
._13{width:11.717333pt;}
._17{width:12.795115pt;}
._10{width:13.695168pt;}
._4{width:14.596352pt;}
._11{width:16.896064pt;}
._12{width:18.320512pt;}
._f{width:19.739392pt;}
._22{width:21.419712pt;}
._c{width:22.601771pt;}
._a{width:23.497600pt;}
._b{width:24.506048pt;}
._15{width:25.501611pt;}
._14{width:26.737771pt;}
._1f{width:27.812181pt;}
._1c{width:29.122944pt;}
._1b{width:30.042667pt;}
._7{width:31.565888pt;}
._e4{width:32.753280pt;}
._1a{width:34.474048pt;}
._19{width:35.545664pt;}
._a2{width:36.617792pt;}
._a0{width:37.552384pt;}
._a1{width:38.615467pt;}
._21{width:40.539051pt;}
._20{width:41.521600pt;}
._d{width:43.152320pt;}
._e{width:44.774016pt;}
._18{width:47.412800pt;}
._5a{width:49.134957pt;}
._62{width:52.415915pt;}
._90{width:53.652428pt;}
._48{width:56.046957pt;}
._80{width:61.389099pt;}
._a5{width:65.183680pt;}
._a4{width:66.130261pt;}
._98{width:71.935915pt;}
._a3{width:73.152576pt;}
._6b{width:75.028428pt;}
._51{width:76.202897pt;}
._60{width:82.196428pt;}
._71{width:86.143915pt;}
._79{width:100.351915pt;}
._9c{width:103.999915pt;}
._5f{width:107.391915pt;}
._74{width:109.389099pt;}
._8c{width:111.167915pt;}
._da{width:116.717971pt;}
._53{width:136.110957pt;}
._84{width:137.172428pt;}
._89{width:146.623915pt;}
._d0{width:150.509971pt;}
._91{width:153.663915pt;}
._61{width:160.767915pt;}
._c0{width:166.236681pt;}
._64{width:167.474570pt;}
._82{width:174.612428pt;}
._34{width:184.504081pt;}
._55{width:186.282897pt;}
._32{width:187.946897pt;}
._8a{width:196.415915pt;}
._bb{width:200.301971pt;}
._7d{width:204.820428pt;}
._6e{width:207.103915pt;}
._78{width:208.767915pt;}
._8b{width:213.716428pt;}
._93{width:220.756428pt;}
._76{width:224.831915pt;}
._75{width:226.559915pt;}
._70{width:233.791915pt;}
._cb{width:235.821971pt;}
._96{width:244.351915pt;}
._72{width:247.444428pt;}
._66{width:249.236428pt;}
._5b{width:251.758957pt;}
._44{width:253.422957pt;}
._7a{width:254.975915pt;}
._aa{width:256.796681pt;}
._d4{width:258.716681pt;}
._68{width:260.351915pt;}
._8e{width:262.143915pt;}
._3a{width:264.046957pt;}
._b4{width:267.821971pt;}
._be{width:269.276681pt;}
._67{width:270.612428pt;}
._cd{width:273.239921pt;}
._39{width:274.734957pt;}
._38{width:276.842897pt;}
._54{width:278.254957pt;}
._42{width:279.285393pt;}
._77{width:281.236428pt;}
._46{width:285.422957pt;}
._94{width:287.039915pt;}
._59{width:289.070957pt;}
._6c{width:290.623915pt;}
._25{width:292.462957pt;}
._6d{width:295.508428pt;}
._4b{width:298.134673pt;}
._5d{width:299.455915pt;}
._81{width:301.183915pt;}
._2f{width:303.278957pt;}
._9e{width:304.767915pt;}
._86{width:306.132428pt;}
._92{width:309.161446pt;}
._50{width:310.318957pt;}
._27{width:312.110957pt;}
._63{width:313.172428pt;}
._7f{width:315.455915pt;}
._d9{width:317.549971pt;}
._65{width:318.975915pt;}
._31{width:321.006957pt;}
._4d{width:322.734957pt;}
._2b{width:324.526957pt;}
._3c{width:326.698897pt;}
._45{width:330.346897pt;}
._9f{width:334.860177pt;}
._4c{width:338.734957pt;}
._47{width:340.906897pt;}
._8d{width:343.807915pt;}
._35{width:345.902957pt;}
._7c{width:347.391915pt;}
._9d{width:348.820428pt;}
._69{width:350.975915pt;}
._9a{width:352.340428pt;}
._9b{width:354.559915pt;}
._3f{width:356.526957pt;}
._c9{width:358.445971pt;}
._db{width:362.029971pt;}
._95{width:365.183915pt;}
._6a{width:366.548428pt;}
._88{width:368.703915pt;}
._30{width:371.030673pt;}
._73{width:373.716428pt;}
._5e{width:377.172428pt;}
._bd{width:379.757971pt;}
._41{width:381.422957pt;}
._99{width:384.340428pt;}
._8f{width:386.559915pt;}
._ce{width:390.445971pt;}
._85{width:391.380428pt;}
._7b{width:394.789386pt;}
._5c{width:395.944074pt;}
._a9{width:397.485971pt;}
._87{width:398.548428pt;}
._83{width:402.068428pt;}
._6f{width:405.652428pt;}
._97{width:409.172428pt;}
._43{width:412.074897pt;}
._b2{width:415.405971pt;}
._2a{width:425.141393pt;}
._56{width:433.258897pt;}
._7e{width:434.752358pt;}
._3d{width:436.526957pt;}
._a6{width:445.307236pt;}
._d6{width:447.419155pt;}
._c2{width:448.860681pt;}
._bf{width:454.445971pt;}
._b1{width:458.093971pt;}
._b9{width:463.341971pt;}
._d3{width:465.133971pt;}
._ae{width:473.756681pt;}
._2d{width:482.670957pt;}
._37{width:486.254957pt;}
._b5{width:491.420681pt;}
._a7{width:495.341971pt;}
._24{width:497.926997pt;}
._b3{width:502.108681pt;}
._29{width:504.046957pt;}
._a8{width:505.628681pt;}
._ab{width:509.353865pt;}
._b7{width:512.869964pt;}
._b0{width:516.507694pt;}
._2e{width:518.634897pt;}
._ba{width:519.900681pt;}
._b6{width:527.004681pt;}
._57{width:529.212141pt;}
._c1{width:530.524681pt;}
._c4{width:534.044681pt;}
._3b{width:536.490897pt;}
._cc{width:537.628681pt;}
._49{width:547.114897pt;}
._40{width:550.698897pt;}
._c8{width:551.900681pt;}
._de{width:555.244939pt;}
._3e{width:566.698897pt;}
._d1{width:570.029971pt;}
._4a{width:571.630957pt;}
._23{width:573.606052pt;}
._b8{width:576.732681pt;}
._33{width:582.634897pt;}
._dc{width:584.738443pt;}
._4e{width:586.218897pt;}
._c7{width:587.757971pt;}
._c5{width:590.940681pt;}
._d5{width:594.779694pt;}
._dd{width:597.855755pt;}
._e1{width:601.628681pt;}
._ca{width:605.549971pt;}
._bc{width:609.069971pt;}
._28{width:614.698897pt;}
._d8{width:615.836681pt;}
._52{width:621.674897pt;}
._e3{width:623.405971pt;}
._4f{width:625.322897pt;}
._c6{width:626.524681pt;}
._ad{width:637.613971pt;}
._26{width:639.530897pt;}
._af{width:641.069971pt;}
._d2{width:644.265865pt;}
._e0{width:648.738443pt;}
._36{width:650.218897pt;}
._cf{width:651.420681pt;}
._58{width:653.486957pt;}
._ac{width:655.204687pt;}
._2c{width:671.530897pt;}
._d7{width:676.653971pt;}
._c3{width:683.757971pt;}
._df{width:687.842443pt;}
._e2{width:694.381971pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:3.679063pt;}
.y5b{bottom:3.679332pt;}
.yd5{bottom:3.839198pt;}
.ye4{bottom:3.839332pt;}
.yee{bottom:3.839786pt;}
.yf1{bottom:3.840053pt;}
.y25{bottom:51.466933pt;}
.y24{bottom:69.386933pt;}
.y136{bottom:101.386267pt;}
.yb7{bottom:103.946267pt;}
.y10e{bottom:104.586933pt;}
.y172{bottom:105.706933pt;}
.y120{bottom:106.986933pt;}
.yad{bottom:109.066400pt;}
.yf0{bottom:109.546880pt;}
.y95{bottom:110.986933pt;}
.yc4{bottom:111.786933pt;}
.y1c7{bottom:112.266267pt;}
.yef{bottom:113.386933pt;}
.y68{bottom:121.066933pt;}
.y10d{bottom:122.986933pt;}
.y196{bottom:126.986933pt;}
.y147{bottom:127.306267pt;}
.y3d{bottom:127.466267pt;}
.y171{bottom:128.106933pt;}
.y94{bottom:129.386933pt;}
.y1df{bottom:130.666267pt;}
.y1ab{bottom:131.786933pt;}
.yed{bottom:131.946880pt;}
.y17e{bottom:133.386667pt;}
.yc3{bottom:134.186667pt;}
.yec{bottom:135.786667pt;}
.y135{bottom:138.186267pt;}
.yb6{bottom:140.746267pt;}
.y67{bottom:143.466667pt;}
.y10c{bottom:145.386667pt;}
.yac{bottom:145.866400pt;}
.y1c6{bottom:149.066267pt;}
.y195{bottom:149.386667pt;}
.y170{bottom:150.506667pt;}
.y93{bottom:151.786667pt;}
.y1aa{bottom:153.386667pt;}
.y17d{bottom:155.786667pt;}
.yc2{bottom:156.586667pt;}
.yeb{bottom:158.186667pt;}
.y10b{bottom:163.786667pt;}
.y3c{bottom:164.266267pt;}
.y23{bottom:164.331520pt;}
.y66{bottom:165.866667pt;}
.y1de{bottom:167.466267pt;}
.y194{bottom:171.786533pt;}
.y16f{bottom:172.906533pt;}
.y92{bottom:174.186533pt;}
.y134{bottom:174.986267pt;}
.y1a9{bottom:175.786533pt;}
.y146{bottom:177.386267pt;}
.yb5{bottom:177.546267pt;}
.y17c{bottom:178.186533pt;}
.yc1{bottom:178.986533pt;}
.yea{bottom:180.586533pt;}
.y22{bottom:181.127040pt;}
.yab{bottom:182.666400pt;}
.y65{bottom:184.266533pt;}
.y1c5{bottom:185.866267pt;}
.y10a{bottom:186.186533pt;}
.y16e{bottom:191.306533pt;}
.y11f{bottom:192.747200pt;}
.y193{bottom:194.186533pt;}
.y91{bottom:196.586533pt;}
.y21{bottom:197.922560pt;}
.y1a8{bottom:198.186533pt;}
.y3b{bottom:201.066267pt;}
.yc0{bottom:201.386533pt;}
.ye9{bottom:202.986533pt;}
.y1dd{bottom:204.266267pt;}
.y109{bottom:204.586533pt;}
.y64{bottom:206.666533pt;}
.y133{bottom:211.786267pt;}
.y192{bottom:212.586533pt;}
.y16d{bottom:213.706533pt;}
.yb4{bottom:214.346267pt;}
.y20{bottom:214.880000pt;}
.y1a7{bottom:216.586533pt;}
.y90{bottom:218.986533pt;}
.yaa{bottom:219.466400pt;}
.ybf{bottom:219.786533pt;}
.y1c4{bottom:222.666267pt;}
.y63{bottom:225.066533pt;}
.ye8{bottom:225.386533pt;}
.y108{bottom:226.986533pt;}
.y145{bottom:227.466267pt;}
.y1f{bottom:231.696640pt;}
.y191{bottom:234.986533pt;}
.y16c{bottom:236.106533pt;}
.y17b{bottom:237.386533pt;}
.y11e{bottom:237.547200pt;}
.y3a{bottom:237.866267pt;}
.y1a6{bottom:238.986533pt;}
.y1dc{bottom:241.066267pt;}
.y8f{bottom:241.386533pt;}
.ybe{bottom:242.186533pt;}
.ye7{bottom:243.947200pt;}
.y107{bottom:245.386533pt;}
.y62{bottom:247.466533pt;}
.ye6{bottom:247.786533pt;}
.y132{bottom:248.586267pt;}
.y1e{bottom:248.654080pt;}
.yb3{bottom:251.146267pt;}
.ya9{bottom:256.266400pt;}
.y190{bottom:257.386533pt;}
.y16b{bottom:258.506533pt;}
.y1c3{bottom:259.466267pt;}
.y17a{bottom:259.786533pt;}
.y8e{bottom:263.786533pt;}
.y144{bottom:264.426267pt;}
.ybd{bottom:264.586533pt;}
.y1d{bottom:265.449600pt;}
.y106{bottom:267.786533pt;}
.y61{bottom:269.866533pt;}
.ye5{bottom:270.186533pt;}
.y39{bottom:274.666267pt;}
.y18f{bottom:275.786533pt;}
.y1db{bottom:277.866267pt;}
.y1a5{bottom:279.786533pt;}
.y16a{bottom:280.906533pt;}
.y8d{bottom:282.186533pt;}
.y1c{bottom:282.245120pt;}
.y131{bottom:285.386267pt;}
.y105{bottom:286.186533pt;}
.ybc{bottom:286.666533pt;}
.y51{bottom:287.786267pt;}
.yb2{bottom:287.946267pt;}
.y60{bottom:288.266533pt;}
.ye3{bottom:288.747200pt;}
.ye2{bottom:292.586533pt;}
.ya8{bottom:293.066400pt;}
.y1c2{bottom:296.266267pt;}
.y18e{bottom:298.186533pt;}
.y1b{bottom:299.202560pt;}
.y179{bottom:300.586533pt;}
.y143{bottom:301.226267pt;}
.y169{bottom:303.306533pt;}
.ybb{bottom:304.427200pt;}
.y8c{bottom:304.586533pt;}
.yba{bottom:308.106533pt;}
.y104{bottom:308.586533pt;}
.y5f{bottom:310.666533pt;}
.y38{bottom:311.466267pt;}
.y1da{bottom:314.666267pt;}
.ye1{bottom:314.986533pt;}
.y1a{bottom:315.998080pt;}
.y18d{bottom:316.586533pt;}
.y1a4{bottom:316.747200pt;}
.y168{bottom:317.867200pt;}
.y1a3{bottom:320.586533pt;}
.y167{bottom:321.706533pt;}
.y130{bottom:322.186267pt;}
.y11d{bottom:322.986533pt;}
.y50{bottom:324.746267pt;}
.y8b{bottom:326.986533pt;}
.ya7{bottom:329.866400pt;}
.y1c1{bottom:333.066267pt;}
.y5e{bottom:333.066533pt;}
.ye0{bottom:337.386533pt;}
.y142{bottom:338.026267pt;}
.y18c{bottom:338.986533pt;}
.y1a2{bottom:342.986533pt;}
.y166{bottom:344.106533pt;}
.y11c{bottom:345.386533pt;}
.y37{bottom:348.106267pt;}
.y8a{bottom:349.386533pt;}
.y1d9{bottom:351.466267pt;}
.y5d{bottom:351.466533pt;}
.y18b{bottom:357.386533pt;}
.ydf{bottom:359.786533pt;}
.yb9{bottom:361.386267pt;}
.y4f{bottom:361.546267pt;}
.y165{bottom:362.506533pt;}
.y1a1{bottom:365.386533pt;}
.ya6{bottom:366.666400pt;}
.y103{bottom:367.786533pt;}
.y1c0{bottom:369.866267pt;}
.y19{bottom:371.360000pt;}
.y89{bottom:371.786533pt;}
.y12f{bottom:372.106267pt;}
.y5c{bottom:373.546533pt;}
.y1ad{bottom:374.666267pt;}
.y141{bottom:374.826267pt;}
.y18a{bottom:379.786533pt;}
.yde{bottom:382.186533pt;}
.y36{bottom:384.906267pt;}
.y164{bottom:384.906533pt;}
.y178{bottom:386.186533pt;}
.y1a0{bottom:387.786533pt;}
.y1d8{bottom:388.266267pt;}
.y102{bottom:390.186533pt;}
.y5a{bottom:391.307200pt;}
.y88{bottom:394.186533pt;}
.y59{bottom:394.986533pt;}
.y189{bottom:398.186533pt;}
.y4e{bottom:398.346267pt;}
.ya5{bottom:403.466400pt;}
.ydd{bottom:404.586533pt;}
.y19f{bottom:406.186533pt;}
.y1bf{bottom:406.666267pt;}
.y18{bottom:406.884000pt;}
.y163{bottom:407.306533pt;}
.y101{bottom:408.586533pt;}
.y12e{bottom:409.066267pt;}
.y140{bottom:411.626267pt;}
.y87{bottom:412.586533pt;}
.y188{bottom:420.586533pt;}
.y35{bottom:421.706267pt;}
.y17{bottom:424.164000pt;}
.y1d7{bottom:425.066267pt;}
.y162{bottom:425.706533pt;}
.ydc{bottom:426.986533pt;}
.y19e{bottom:428.586533pt;}
.y100{bottom:430.986533pt;}
.y86{bottom:434.986533pt;}
.y4d{bottom:435.146267pt;}
.y187{bottom:438.986533pt;}
.ya4{bottom:440.266400pt;}
.y16{bottom:441.600000pt;}
.y1be{bottom:443.466267pt;}
.y12d{bottom:445.866267pt;}
.y19d{bottom:446.986533pt;}
.y161{bottom:448.106533pt;}
.y58{bottom:448.266267pt;}
.y13f{bottom:448.426267pt;}
.ydb{bottom:449.386533pt;}
.y11b{bottom:453.386533pt;}
.y85{bottom:457.386533pt;}
.y34{bottom:458.506267pt;}
.y15{bottom:459.518720pt;}
.y186{bottom:461.386533pt;}
.y1d6{bottom:461.866267pt;}
.y19c{bottom:469.386533pt;}
.y160{bottom:470.506533pt;}
.yda{bottom:471.786533pt;}
.y4c{bottom:471.946267pt;}
.ya3{bottom:477.066400pt;}
.y14{bottom:477.280000pt;}
.y84{bottom:479.786533pt;}
.y1bd{bottom:480.266267pt;}
.y12c{bottom:482.666267pt;}
.y185{bottom:483.786533pt;}
.y57{bottom:485.226267pt;}
.y19b{bottom:487.786533pt;}
.y15f{bottom:488.906533pt;}
.yd9{bottom:490.186533pt;}
.y11a{bottom:494.186533pt;}
.y13{bottom:494.240000pt;}
.y33{bottom:495.306267pt;}
.y1d5{bottom:498.666267pt;}
.y83{bottom:502.186400pt;}
.y184{bottom:506.186400pt;}
.y4b{bottom:508.746267pt;}
.y19a{bottom:510.186400pt;}
.y15e{bottom:511.306400pt;}
.y12{bottom:511.518720pt;}
.yd8{bottom:512.586400pt;}
.ya2{bottom:513.866400pt;}
.y1bc{bottom:517.066267pt;}
.y12b{bottom:519.466267pt;}
.y56{bottom:522.026267pt;}
.y82{bottom:524.586400pt;}
.y199{bottom:528.586400pt;}
.y11{bottom:529.280000pt;}
.y15d{bottom:529.706400pt;}
.yff{bottom:530.986400pt;}
.y119{bottom:531.147200pt;}
.yd7{bottom:534.986400pt;}
.y1d4{bottom:535.466267pt;}
.y32{bottom:545.386267pt;}
.y4a{bottom:545.546267pt;}
.y10{bottom:546.081280pt;}
.y81{bottom:546.986400pt;}
.ya1{bottom:550.666400pt;}
.y198{bottom:550.986400pt;}
.y15c{bottom:552.106400pt;}
.yfe{bottom:553.386400pt;}
.y1bb{bottom:553.866267pt;}
.y12a{bottom:556.266267pt;}
.yd6{bottom:557.386400pt;}
.y55{bottom:558.826267pt;}
.yf{bottom:563.357440pt;}
.y183{bottom:565.386400pt;}
.y80{bottom:569.386400pt;}
.yfd{bottom:571.786400pt;}
.y13e{bottom:571.946267pt;}
.y1d3{bottom:572.266267pt;}
.y15b{bottom:574.506400pt;}
.y177{bottom:575.786400pt;}
.yd4{bottom:575.947200pt;}
.yd3{bottom:579.786400pt;}
.y31{bottom:582.346267pt;}
.ya0{bottom:587.466400pt;}
.y182{bottom:587.786400pt;}
.y1ba{bottom:590.666267pt;}
.y7f{bottom:591.786400pt;}
.y15a{bottom:592.906400pt;}
.y129{bottom:593.066267pt;}
.yfc{bottom:594.186400pt;}
.y49{bottom:595.466267pt;}
.y54{bottom:595.626267pt;}
.y176{bottom:598.186400pt;}
.yd2{bottom:602.186400pt;}
.y181{bottom:606.186400pt;}
.y13d{bottom:608.906267pt;}
.y1d2{bottom:609.066267pt;}
.y7e{bottom:610.186400pt;}
.ye{bottom:610.553600pt;}
.yfb{bottom:612.586400pt;}
.y159{bottom:615.306400pt;}
.y30{bottom:619.146267pt;}
.y118{bottom:620.586400pt;}
.y9f{bottom:624.266400pt;}
.yd1{bottom:624.586400pt;}
.y1b9{bottom:627.466267pt;}
.y180{bottom:628.586400pt;}
.y128{bottom:629.866267pt;}
.y48{bottom:632.426267pt;}
.y7d{bottom:632.586400pt;}
.yfa{bottom:634.986400pt;}
.y158{bottom:637.706400pt;}
.y117{bottom:642.986400pt;}
.y1ac{bottom:645.546267pt;}
.y13c{bottom:645.706267pt;}
.y1d1{bottom:645.866267pt;}
.yd0{bottom:646.986400pt;}
.y7c{bottom:650.986400pt;}
.yf9{bottom:653.386400pt;}
.y197{bottom:654.986400pt;}
.y2f{bottom:655.946267pt;}
.yd{bottom:656.158720pt;}
.y157{bottom:659.946400pt;}
.y9e{bottom:661.066400pt;}
.y1b8{bottom:664.266267pt;}
.ycf{bottom:665.386400pt;}
.y127{bottom:666.666267pt;}
.y47{bottom:669.226267pt;}
.yf8{bottom:671.947200pt;}
.y7b{bottom:673.386400pt;}
.yc{bottom:673.603840pt;}
.yf7{bottom:675.786400pt;}
.y156{bottom:682.346400pt;}
.y13b{bottom:682.506267pt;}
.y1d0{bottom:682.666267pt;}
.yce{bottom:687.786400pt;}
.yb{bottom:690.880000pt;}
.y7a{bottom:691.786400pt;}
.y2e{bottom:692.746267pt;}
.y17f{bottom:695.786400pt;}
.y9d{bottom:697.866400pt;}
.yf6{bottom:698.186400pt;}
.y1b7{bottom:701.066267pt;}
.y126{bottom:703.466267pt;}
.y155{bottom:704.746400pt;}
.y46{bottom:706.026267pt;}
.ycd{bottom:706.186400pt;}
.ya{bottom:709.008000pt;}
.y116{bottom:710.186400pt;}
.y79{bottom:714.186400pt;}
.y13a{bottom:719.306267pt;}
.y1cf{bottom:719.466267pt;}
.yf5{bottom:720.586400pt;}
.y154{bottom:727.146400pt;}
.ycc{bottom:728.586400pt;}
.y9c{bottom:729.386400pt;}
.y2d{bottom:729.546267pt;}
.y115{bottom:732.586400pt;}
.y78{bottom:736.586400pt;}
.y1b6{bottom:737.866267pt;}
.y125{bottom:740.266267pt;}
.yb8{bottom:742.666267pt;}
.y9{bottom:742.760960pt;}
.y45{bottom:742.826267pt;}
.yf4{bottom:742.986400pt;}
.ycb{bottom:746.986400pt;}
.y153{bottom:749.546400pt;}
.y9b{bottom:750.986400pt;}
.y114{bottom:754.986400pt;}
.y139{bottom:756.106267pt;}
.y1ce{bottom:756.266267pt;}
.y77{bottom:758.986400pt;}
.yf3{bottom:765.386400pt;}
.y2c{bottom:766.346267pt;}
.y9a{bottom:769.386400pt;}
.y152{bottom:771.946400pt;}
.y175{bottom:773.386400pt;}
.y1b5{bottom:774.666267pt;}
.y8{bottom:776.675840pt;}
.y124{bottom:777.066267pt;}
.y76{bottom:777.386400pt;}
.y44{bottom:779.626267pt;}
.yf2{bottom:787.786400pt;}
.y151{bottom:790.346400pt;}
.y99{bottom:791.786400pt;}
.y138{bottom:792.906267pt;}
.y1cd{bottom:793.066267pt;}
.y174{bottom:795.786400pt;}
.y75{bottom:799.786400pt;}
.y2b{bottom:803.146267pt;}
.yca{bottom:810.186400pt;}
.y7{bottom:810.590720pt;}
.y1b4{bottom:811.466267pt;}
.y150{bottom:812.746400pt;}
.y123{bottom:813.866267pt;}
.y98{bottom:814.186400pt;}
.y43{bottom:816.426267pt;}
.y173{bottom:818.186400pt;}
.y74{bottom:822.186400pt;}
.yb1{bottom:829.546267pt;}
.y137{bottom:829.706267pt;}
.y1cc{bottom:829.866267pt;}
.yc9{bottom:832.586400pt;}
.y14f{bottom:835.146267pt;}
.y97{bottom:836.586267pt;}
.y2a{bottom:839.946267pt;}
.y73{bottom:840.586267pt;}
.y6{bottom:844.505600pt;}
.y113{bottom:844.586267pt;}
.y1b3{bottom:848.266267pt;}
.y122{bottom:850.666267pt;}
.y42{bottom:853.226267pt;}
.y14e{bottom:853.546267pt;}
.yc8{bottom:854.986267pt;}
.y96{bottom:858.986267pt;}
.y72{bottom:862.986267pt;}
.yb0{bottom:866.506267pt;}
.y1cb{bottom:866.666267pt;}
.y112{bottom:866.986267pt;}
.y14d{bottom:875.946267pt;}
.y29{bottom:876.746267pt;}
.yc7{bottom:877.386267pt;}
.y5{bottom:878.420480pt;}
.y71{bottom:881.386267pt;}
.y121{bottom:882.186267pt;}
.y1b2{bottom:885.066267pt;}
.y111{bottom:885.386267pt;}
.y41{bottom:890.026267pt;}
.y14c{bottom:898.346267pt;}
.yc6{bottom:899.786267pt;}
.yaf{bottom:903.306267pt;}
.y1ca{bottom:903.466267pt;}
.y70{bottom:903.786267pt;}
.y110{bottom:907.786267pt;}
.y4{bottom:912.335360pt;}
.y14b{bottom:916.746267pt;}
.y1b1{bottom:921.866267pt;}
.yc5{bottom:922.186267pt;}
.y6f{bottom:926.186267pt;}
.y28{bottom:926.666267pt;}
.y53{bottom:926.826267pt;}
.y14a{bottom:938.826267pt;}
.y40{bottom:939.946267pt;}
.yae{bottom:940.106267pt;}
.y1c9{bottom:940.266267pt;}
.y6e{bottom:944.586267pt;}
.y3{bottom:946.250240pt;}
.y10f{bottom:948.586267pt;}
.y149{bottom:956.587200pt;}
.y1b0{bottom:958.666267pt;}
.y148{bottom:960.266267pt;}
.y27{bottom:963.626267pt;}
.y6d{bottom:966.986267pt;}
.y52{bottom:976.746267pt;}
.y3f{bottom:976.906267pt;}
.y1c8{bottom:977.066267pt;}
.y2{bottom:980.165120pt;}
.y6c{bottom:989.066267pt;}
.y1af{bottom:995.466267pt;}
.y6a{bottom:1006.667200pt;}
.y69{bottom:1010.346267pt;}
.y26{bottom:1013.546267pt;}
.y3e{bottom:1013.706267pt;}
.y1ae{bottom:1013.866267pt;}
.y1{bottom:1014.080000pt;}
.ha{height:18.080000pt;}
.hd{height:18.240000pt;}
.h2{height:39.243750pt;}
.h7{height:47.109375pt;}
.h3{height:55.275000pt;}
.h4{height:55.867500pt;}
.h6{height:57.787500pt;}
.h5{height:57.792620pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.hb{height:136.411967pt;}
.hc{height:136.412500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:1.440000pt;}
.w6{width:2.720000pt;}
.w5{width:6.240000pt;}
.w4{width:7.200000pt;}
.w3{width:8.000000pt;}
.w7{width:108.480000pt;}
.w2{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x3{left:129.440000pt;}
.x6{left:132.321187pt;}
.x24{left:160.639663pt;}
.x15{left:169.759867pt;}
.x11{left:175.199590pt;}
.x7{left:179.519663pt;}
.xc{left:192.959867pt;}
.x1e{left:206.079867pt;}
.x16{left:266.239867pt;}
.x4{left:275.360000pt;}
.x1c{left:298.239867pt;}
.x13{left:303.039867pt;}
.xe{left:312.479867pt;}
.xa{left:320.159867pt;}
.x2{left:329.441280pt;}
.x20{left:338.719867pt;}
.x18{left:397.280000pt;}
.x1a{left:398.240000pt;}
.x1b{left:401.760000pt;}
.x19{left:407.999867pt;}
.x21{left:425.600000pt;}
.x14{left:489.600000pt;}
.xb{left:492.480000pt;}
.x1d{left:514.240000pt;}
.xd{left:517.119733pt;}
.x1f{left:537.439733pt;}
.x23{left:656.959733pt;}
.x17{left:660.959733pt;}
.x12{left:664.639733pt;}
.xf{left:668.319733pt;}
.x9{left:669.279733pt;}
.x10{left:671.999733pt;}
.x8{left:672.959733pt;}
.x5{left:676.639733pt;}
.x22{left:677.920000pt;}
}




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