
    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_0000b8984eadbf3fa09652d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_4dd8b6567ceba3b6cc37067a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_88cb951cec5944b4e62187aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_8dd14dc901636686315120aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2785618a5cf1468966eb9527.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_90c6740d7f4a68f08059050e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_1dd35988c7babc384ca28b67.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_1dd35988c7babc384ca28b67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911133;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_8c10eea5ede83fa26884f443.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_4e0e23df5ddf80da91e8846f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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:ffb;src:url('chunks/assets/font_8c10eea5ede83fa26884f443.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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:ffc;src:url('chunks/assets/font_4e0e23df5ddf80da91e8846f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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:ffd;src:url('chunks/assets/font_84232908b0daf9bff19c5918.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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:ffe;src:url('chunks/assets/font_52416f6d066b89d6663f9050.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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:fff;src:url('chunks/assets/font_988a07f148e78209bdd76d26.woff2')format("woff");}.fff{font-family:fff;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-19.980000px;}
.v1{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.000000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.520000px;}
.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;}
}
.ws4{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.000000px;}
.ws3{word-spacing:-8.745000px;}
.ws0{word-spacing:-7.870500px;}
.wsc{word-spacing:-2.520000px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:0.096000px;}
.ws9{word-spacing:48.703800px;}
.ws8{word-spacing:293.490000px;}
.wsb{word-spacing:349.038000px;}
.ws7{word-spacing:359.821200px;}
.ws6{word-spacing:421.081800px;}
.wsa{word-spacing:426.126000px;}
._4{margin-left:-2187.444000px;}
._a{margin-left:-12.798000px;}
._8{margin-left:-11.052000px;}
._9{margin-left:-8.436000px;}
._2{margin-left:-6.595200px;}
._7{margin-left:-5.460600px;}
._0{margin-left:-3.661800px;}
._1{margin-left:-2.624400px;}
._3{margin-left:-1.303200px;}
._11{width:1.044000px;}
._21{width:2.206200px;}
._d{width:3.276000px;}
._10{width:4.665600px;}
._e{width:5.970000px;}
._f{width:7.176000px;}
._19{width:8.796000px;}
._c{width:9.996000px;}
._b{width:11.124000px;}
._40{width:12.137400px;}
._5{width:13.146000px;}
._18{width:14.687400px;}
._b3{width:16.488600px;}
._12{width:17.905200px;}
._13{width:19.021200px;}
._24{width:20.077200px;}
._6{width:21.126000px;}
._1d{width:22.277400px;}
._1c{width:23.436600px;}
._15{width:24.855600px;}
._1a{width:26.637600px;}
._1b{width:28.564800px;}
._3f{width:30.181800px;}
._22{width:31.270800px;}
._20{width:32.656800px;}
._23{width:34.590600px;}
._25{width:36.392400px;}
._b2{width:38.624400px;}
._1f{width:40.834200px;}
._14{width:42.735000px;}
._16{width:44.695200px;}
._1e{width:45.982200px;}
._b0{width:47.097600px;}
._b1{width:48.972000px;}
._27{width:50.021400px;}
._29{width:51.216000px;}
._28{width:53.215800px;}
._26{width:58.733400px;}
._9a{width:60.112800px;}
._8c{width:66.825000px;}
._88{width:71.868600px;}
._8b{width:79.835400px;}
._ad{width:81.676800px;}
._82{width:86.012400px;}
._7a{width:88.935600px;}
._66{width:92.053800px;}
._4b{width:93.780600px;}
._a9{width:95.592600px;}
._42{width:97.350000px;}
._79{width:99.932400px;}
._70{width:102.435600px;}
._50{width:105.553800px;}
._8a{width:106.712400px;}
._8d{width:108.315000px;}
._4d{width:111.918600px;}
._65{width:113.645400px;}
._6d{width:115.722600px;}
._5b{width:119.053800px;}
._90{width:120.346800px;}
._57{width:125.803800px;}
._6f{width:126.932400px;}
._7f{width:129.222600px;}
._6b{width:130.371000px;}
._61{width:132.553800px;}
._48{width:134.280600px;}
._a4{width:135.769200px;}
._4a{width:140.645400px;}
._74{width:142.722600px;}
._76{width:143.871000px;}
._52{width:146.053800px;}
._45{width:147.780600px;}
._2c{width:155.666400px;}
._4f{width:160.895400px;}
._86{width:163.185600px;}
._54{width:166.303800px;}
._5a{width:167.645400px;}
._aa{width:170.261400px;}
._94{width:171.691200px;}
._2e{width:176.017800px;}
._93{width:179.197200px;}
._47{width:181.145400px;}
._41{width:193.497000px;}
._63{width:194.645400px;}
._6c{width:196.815000px;}
._60{width:201.395400px;}
._ae{width:206.233200px;}
._85{width:214.682400px;}
._9b{width:217.138200px;}
._44{width:221.645400px;}
._a1{width:233.239200px;}
._2d{width:236.344800px;}
._a3{width:237.775200px;}
._2b{width:241.741800px;}
._84{width:244.767000px;}
._53{width:261.389400px;}
._92{width:264.679200px;}
._af{width:273.841200px;}
._46{width:275.157000px;}
._77{width:277.707000px;}
._7c{width:286.725000px;}
._7b{width:289.749000px;}
._9d{width:298.926600px;}
._2f{width:303.241200px;}
._ab{width:308.727600px;}
._9f{width:312.426600px;}
._95{width:317.113200px;}
._a7{width:323.149200px;}
._a2{width:330.763200px;}
._89{width:333.637200px;}
._68{width:336.609000px;}
._a6{width:344.101200px;}
._97{width:356.101200px;}
._9c{width:359.221200px;}
._5c{width:360.585000px;}
._37{width:368.016600px;}
._56{width:369.549000px;}
._8f{width:372.679200px;}
._78{width:375.231000px;}
._59{width:381.591000px;}
._7d{width:384.141000px;}
._6e{width:388.677000px;}
._35{width:398.796600px;}
._2a{width:401.700000px;}
._a0{width:405.661200px;}
._3d{width:412.296600px;}
._96{width:414.691200px;}
._9e{width:420.727200px;}
._91{width:422.089200px;}
._8e{width:426.679200px;}
._a5{width:429.637200px;}
._99{width:431.053200px;}
._80{width:441.165000px;}
._75{width:444.189000px;}
._6a{width:457.689000px;}
._71{width:465.195000px;}
._58{width:467.073000px;}
._73{width:469.731000px;}
._38{width:471.210600px;}
._49{width:480.519000px;}
._ac{width:484.739400px;}
._5d{width:489.483000px;}
._a8{width:495.679200px;}
._7e{width:508.773000px;}
._98{width:515.185200px;}
._81{width:525.243000px;}
._5f{width:539.757000px;}
._87{width:541.605000px;}
._43{width:549.531000px;}
._72{width:550.731000px;}
._4c{width:557.037000px;}
._64{width:558.495000px;}
._31{width:566.102400px;}
._39{width:567.608400px;}
._36{width:573.602400px;}
._51{width:575.073000px;}
._3b{width:576.210600px;}
._3c{width:598.176600px;}
._5e{width:600.615000px;}
._34{width:603.602400px;}
._3a{width:605.642400px;}
._30{width:613.176600px;}
._62{width:617.085000px;}
._33{width:622.536600px;}
._55{width:624.483000px;}
._83{width:625.737000px;}
._69{width:633.447000px;}
._4e{width:649.323000px;}
._67{width:717.579000px;}
._3e{width:741.396600px;}
._32{width:799.801200px;}
._17{width:1738.851000px;}
.fc6{color:rgb(0,173,239);}
.fc5{color:transparent;}
.fc4{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc8{color:rgb(33,33,33);}
.fc7{color:rgb(27,27,27);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:20.907750px;}
.y12{bottom:30.289950px;}
.yc{bottom:30.301800px;}
.y3e{bottom:30.906150px;}
.y3d{bottom:33.478950px;}
.y96{bottom:33.490650px;}
.yf{bottom:33.691200px;}
.ya4{bottom:63.779550px;}
.y75{bottom:66.583200px;}
.y122{bottom:68.781450px;}
.y168{bottom:69.890400px;}
.y35{bottom:70.226850px;}
.yc5{bottom:72.878550px;}
.y1b8{bottom:74.095050px;}
.y95{bottom:75.087150px;}
.y14a{bottom:78.394200px;}
.ya3{bottom:80.279550px;}
.y74{bottom:86.083200px;}
.y1b7{bottom:86.095050px;}
.y121{bottom:86.645850px;}
.y3b{bottom:88.339950px;}
.y167{bottom:89.390250px;}
.y34{bottom:89.726850px;}
.y211{bottom:92.203350px;}
.yc4{bottom:92.378550px;}
.y94{bottom:94.587150px;}
.ya2{bottom:97.154550px;}
.y149{bottom:97.894200px;}
.y1b6{bottom:98.095050px;}
.y210{bottom:104.203350px;}
.y120{bottom:104.510100px;}
.y73{bottom:105.583200px;}
.y3a{bottom:107.839950px;}
.y166{bottom:108.890250px;}
.y33{bottom:109.226850px;}
.y1b5{bottom:110.095050px;}
.yc3{bottom:111.878550px;}
.y93{bottom:114.087150px;}
.y20f{bottom:116.203350px;}
.y148{bottom:117.394200px;}
.ya1{bottom:119.554950px;}
.y1b4{bottom:122.095050px;}
.y11f{bottom:122.374350px;}
.y72{bottom:125.083200px;}
.y39{bottom:127.339950px;}
.y20e{bottom:128.203350px;}
.y165{bottom:128.390250px;}
.y32{bottom:128.726850px;}
.yc2{bottom:131.378550px;}
.y92{bottom:133.587150px;}
.y1b3{bottom:134.095050px;}
.y147{bottom:136.894200px;}
.y20d{bottom:140.203350px;}
.y11e{bottom:140.238600px;}
.ya0{bottom:141.955350px;}
.y71{bottom:144.583200px;}
.y1b2{bottom:146.095050px;}
.y38{bottom:146.839950px;}
.y164{bottom:147.890250px;}
.y31{bottom:148.226850px;}
.yc1{bottom:150.878550px;}
.y20c{bottom:152.203350px;}
.y91{bottom:153.087150px;}
.y146{bottom:156.394200px;}
.y1b1{bottom:158.095050px;}
.y11d{bottom:158.103000px;}
.y70{bottom:164.083200px;}
.y20b{bottom:164.203350px;}
.y9f{bottom:164.355750px;}
.y37{bottom:166.339950px;}
.y163{bottom:167.390250px;}
.y30{bottom:167.726850px;}
.y1b0{bottom:170.095050px;}
.yca{bottom:170.378550px;}
.y90{bottom:172.587150px;}
.y145{bottom:175.894200px;}
.y11c{bottom:175.967250px;}
.y20a{bottom:176.203350px;}
.yc0{bottom:178.882500px;}
.y1af{bottom:182.095050px;}
.y6f{bottom:183.583200px;}
.y36{bottom:185.839950px;}
.y9e{bottom:186.756150px;}
.y162{bottom:186.890250px;}
.y2f{bottom:187.226850px;}
.y209{bottom:188.203350px;}
.yc9{bottom:189.878550px;}
.y8f{bottom:192.087150px;}
.y11b{bottom:193.831500px;}
.y1ae{bottom:194.095050px;}
.y144{bottom:195.394200px;}
.ybf{bottom:198.382500px;}
.y208{bottom:200.203350px;}
.y195{bottom:203.083200px;}
.y1ad{bottom:206.095050px;}
.y161{bottom:206.390250px;}
.y9d{bottom:209.156550px;}
.y6e{bottom:211.587150px;}
.y11a{bottom:211.695750px;}
.y207{bottom:212.203350px;}
.y143{bottom:214.894200px;}
.ybe{bottom:217.882500px;}
.y1ac{bottom:218.095050px;}
.y194{bottom:222.583200px;}
.y206{bottom:224.203350px;}
.y160{bottom:225.890250px;}
.y119{bottom:229.560150px;}
.y1ab{bottom:230.095050px;}
.y6d{bottom:231.087150px;}
.y9c{bottom:231.556800px;}
.y142{bottom:234.394200px;}
.y205{bottom:236.203350px;}
.ybd{bottom:237.382500px;}
.y193{bottom:242.083200px;}
.y1aa{bottom:242.095050px;}
.y15f{bottom:245.390250px;}
.y118{bottom:247.424400px;}
.y2e{bottom:248.136300px;}
.y204{bottom:248.203350px;}
.y6c{bottom:250.587150px;}
.y141{bottom:253.894200px;}
.y9b{bottom:253.957200px;}
.y1a9{bottom:254.095050px;}
.ybc{bottom:256.882500px;}
.y188{bottom:259.091100px;}
.y203{bottom:260.203350px;}
.y192{bottom:261.583200px;}
.y2d{bottom:264.636300px;}
.y15e{bottom:264.890250px;}
.y117{bottom:265.288650px;}
.y1a8{bottom:266.095050px;}
.y6b{bottom:270.087150px;}
.y202{bottom:272.203350px;}
.y140{bottom:273.394200px;}
.y9a{bottom:276.357600px;}
.ybb{bottom:276.382500px;}
.y1a7{bottom:278.095050px;}
.y187{bottom:278.591100px;}
.y191{bottom:281.083200px;}
.y116{bottom:283.152900px;}
.y201{bottom:284.203350px;}
.y15d{bottom:284.390250px;}
.y6a{bottom:289.587150px;}
.y2c{bottom:289.640250px;}
.y1a6{bottom:290.095050px;}
.y13f{bottom:292.894200px;}
.yba{bottom:295.882500px;}
.y200{bottom:296.203350px;}
.y8e{bottom:298.091100px;}
.y99{bottom:298.758000px;}
.y190{bottom:300.583200px;}
.y115{bottom:301.017300px;}
.y1a5{bottom:302.095050px;}
.y15c{bottom:303.890250px;}
.y2b{bottom:306.140250px;}
.y1ff{bottom:308.203350px;}
.y69{bottom:309.087150px;}
.y13e{bottom:312.394200px;}
.yb9{bottom:315.382500px;}
.y8d{bottom:317.591100px;}
.y114{bottom:318.881550px;}
.y1fe{bottom:320.203350px;}
.y98{bottom:321.158400px;}
.y2a{bottom:322.640250px;}
.y15b{bottom:323.390250px;}
.y1a4{bottom:326.095050px;}
.y68{bottom:328.587150px;}
.y1fd{bottom:332.203350px;}
.yb8{bottom:334.882500px;}
.y113{bottom:336.745800px;}
.y8c{bottom:337.091100px;}
.y29{bottom:339.140250px;}
.y13d{bottom:340.398150px;}
.y15a{bottom:342.890250px;}
.yc8{bottom:343.386450px;}
.y97{bottom:343.558800px;}
.y1fc{bottom:344.203350px;}
.y67{bottom:348.087150px;}
.yb7{bottom:354.382500px;}
.y112{bottom:354.610050px;}
.y28{bottom:355.640250px;}
.y1fb{bottom:356.203350px;}
.y8b{bottom:356.591100px;}
.y13c{bottom:359.898150px;}
.y159{bottom:362.390250px;}
.yc7{bottom:362.886450px;}
.y1a3{bottom:365.095050px;}
.ya5{bottom:365.701050px;}
.y66{bottom:367.587150px;}
.y1fa{bottom:368.203350px;}
.y27{bottom:372.140250px;}
.y111{bottom:372.474450px;}
.y8a{bottom:376.091100px;}
.y13b{bottom:379.398150px;}
.y1f9{bottom:380.203350px;}
.y158{bottom:381.890250px;}
.yb6{bottom:382.386450px;}
.y1a2{bottom:384.595050px;}
.y65{bottom:387.087150px;}
.y26{bottom:388.640250px;}
.y110{bottom:390.338700px;}
.y1f8{bottom:392.203350px;}
.y89{bottom:395.591100px;}
.y13a{bottom:398.898150px;}
.yb5{bottom:401.886450px;}
.y1a1{bottom:404.095050px;}
.y1f7{bottom:404.203350px;}
.y25{bottom:405.140250px;}
.y64{bottom:406.587150px;}
.y10f{bottom:408.202950px;}
.y157{bottom:409.894200px;}
.y88{bottom:415.091100px;}
.y1f6{bottom:416.203350px;}
.y139{bottom:418.398150px;}
.yb4{bottom:421.386450px;}
.y24{bottom:421.640250px;}
.y1a0{bottom:423.595050px;}
.y10e{bottom:426.067200px;}
.y63{bottom:426.087150px;}
.y1f5{bottom:428.203350px;}
.y156{bottom:429.394200px;}
.y87{bottom:434.591100px;}
.y138{bottom:437.898150px;}
.y23{bottom:438.140250px;}
.y1f4{bottom:440.203350px;}
.yb3{bottom:440.886450px;}
.y124{bottom:442.936650px;}
.y19f{bottom:443.095050px;}
.y62{bottom:445.587150px;}
.y155{bottom:448.894200px;}
.y1f3{bottom:452.203350px;}
.y86{bottom:454.091100px;}
.y22{bottom:454.640250px;}
.y137{bottom:457.398150px;}
.y123{bottom:457.936650px;}
.yb2{bottom:460.386450px;}
.y19e{bottom:462.595050px;}
.y1f2{bottom:464.203350px;}
.y18f{bottom:465.087150px;}
.y154{bottom:468.394200px;}
.y21{bottom:471.140250px;}
.y61{bottom:473.591100px;}
.y1f1{bottom:476.203350px;}
.y136{bottom:476.898150px;}
.yb1{bottom:479.886450px;}
.y19d{bottom:482.095050px;}
.y18e{bottom:484.587150px;}
.y20{bottom:487.640250px;}
.y153{bottom:487.894200px;}
.yf4{bottom:487.906050px;}
.y1f0{bottom:488.203350px;}
.yec{bottom:490.398150px;}
.y60{bottom:493.091100px;}
.y135{bottom:496.398150px;}
.yb0{bottom:499.386450px;}
.y1ef{bottom:500.203350px;}
.y19c{bottom:501.595050px;}
.y18d{bottom:504.087150px;}
.y1f{bottom:504.140250px;}
.y152{bottom:507.394200px;}
.yf3{bottom:507.406050px;}
.y1ee{bottom:512.203350px;}
.y5f{bottom:512.591100px;}
.y134{bottom:515.898150px;}
.yeb{bottom:518.402100px;}
.yaf{bottom:518.886450px;}
.y1e{bottom:520.640250px;}
.y19b{bottom:521.095050px;}
.y18c{bottom:523.587150px;}
.y1ed{bottom:524.203350px;}
.y151{bottom:526.894200px;}
.yf2{bottom:526.906050px;}
.y5e{bottom:532.091100px;}
.y133{bottom:535.398150px;}
.y1ec{bottom:536.203350px;}
.y1d{bottom:537.140250px;}
.yea{bottom:537.902100px;}
.yae{bottom:538.386450px;}
.y19a{bottom:540.595050px;}
.y18b{bottom:543.087150px;}
.y150{bottom:546.394200px;}
.yf1{bottom:546.406050px;}
.y1eb{bottom:548.203350px;}
.y5d{bottom:551.591100px;}
.y1c{bottom:553.640250px;}
.y132{bottom:554.898150px;}
.ye9{bottom:557.402100px;}
.yad{bottom:557.886450px;}
.y199{bottom:560.095050px;}
.y1ea{bottom:560.203350px;}
.y18a{bottom:562.587150px;}
.y14f{bottom:565.894200px;}
.yf0{bottom:565.906050px;}
.y1b{bottom:570.140250px;}
.y5c{bottom:571.091100px;}
.y1e9{bottom:572.203350px;}
.y131{bottom:574.398150px;}
.ye8{bottom:576.902100px;}
.yac{bottom:577.386450px;}
.y198{bottom:579.595050px;}
.y189{bottom:582.087150px;}
.y1e8{bottom:584.203350px;}
.y14e{bottom:585.394200px;}
.yef{bottom:585.406050px;}
.yc6{bottom:585.890250px;}
.y1a{bottom:586.640250px;}
.y5b{bottom:590.591100px;}
.y130{bottom:593.898150px;}
.y1e7{bottom:596.203350px;}
.ye7{bottom:596.402100px;}
.y197{bottom:599.095050px;}
.y19{bottom:603.140250px;}
.y14d{bottom:604.894200px;}
.yee{bottom:604.906050px;}
.yab{bottom:605.390250px;}
.y1e6{bottom:608.203350px;}
.y5a{bottom:610.091100px;}
.y12f{bottom:613.398150px;}
.ye6{bottom:615.902100px;}
.y196{bottom:618.595050px;}
.y18{bottom:619.640250px;}
.y1e5{bottom:620.203350px;}
.y14c{bottom:624.394200px;}
.yed{bottom:624.406050px;}
.yaa{bottom:624.890250px;}
.y59{bottom:629.591100px;}
.y1e4{bottom:632.203350px;}
.y12e{bottom:632.898150px;}
.y17{bottom:636.140250px;}
.y85{bottom:638.095050px;}
.ye5{bottom:643.906050px;}
.y1e3{bottom:644.203350px;}
.ya9{bottom:644.390250px;}
.y58{bottom:649.091100px;}
.y12d{bottom:652.398150px;}
.y16{bottom:652.640250px;}
.y1e2{bottom:656.203350px;}
.y84{bottom:657.595050px;}
.ye4{bottom:663.406050px;}
.ya8{bottom:663.890250px;}
.y1e1{bottom:668.203350px;}
.y57{bottom:668.591100px;}
.y15{bottom:669.140250px;}
.y12c{bottom:671.898150px;}
.y83{bottom:677.095050px;}
.y1e0{bottom:680.203350px;}
.ye3{bottom:682.906050px;}
.ya7{bottom:683.390250px;}
.y14{bottom:685.640250px;}
.y56{bottom:688.091100px;}
.y12b{bottom:691.398150px;}
.y1df{bottom:692.203350px;}
.y82{bottom:696.595050px;}
.ya6{bottom:702.890250px;}
.y1de{bottom:704.203350px;}
.y55{bottom:707.591100px;}
.y13{bottom:707.644200px;}
.y14b{bottom:710.898150px;}
.y81{bottom:716.095050px;}
.y1dd{bottom:716.203350px;}
.y10d{bottom:721.543500px;}
.y54{bottom:727.091100px;}
.y1dc{bottom:728.203350px;}
.y12a{bottom:730.398150px;}
.y80{bottom:735.595050px;}
.y10c{bottom:736.543500px;}
.ye2{bottom:740.143500px;}
.y1db{bottom:740.203350px;}
.y53{bottom:746.591100px;}
.y129{bottom:749.898150px;}
.y1da{bottom:752.203350px;}
.y7f{bottom:755.095050px;}
.ye1{bottom:755.143500px;}
.y109{bottom:756.074100px;}
.ya{bottom:758.604900px;}
.y1d9{bottom:764.203350px;}
.y52{bottom:766.091100px;}
.y128{bottom:769.398150px;}
.ydf{bottom:771.679200px;}
.y9{bottom:772.104900px;}
.y108{bottom:773.938500px;}
.y7e{bottom:774.595050px;}
.y1d8{bottom:776.203350px;}
.y51{bottom:785.591100px;}
.y8{bottom:785.604900px;}
.y1d7{bottom:788.203350px;}
.y127{bottom:788.898150px;}
.yde{bottom:789.543450px;}
.y107{bottom:791.802750px;}
.y7d{bottom:794.095050px;}
.y1d6{bottom:800.203350px;}
.y50{bottom:805.091100px;}
.ydd{bottom:807.407700px;}
.y126{bottom:808.398150px;}
.y106{bottom:809.667000px;}
.y1d5{bottom:812.203350px;}
.y7{bottom:812.604900px;}
.y7c{bottom:813.595050px;}
.y1d4{bottom:824.203350px;}
.y4f{bottom:824.591100px;}
.ydc{bottom:825.271950px;}
.y6{bottom:826.104900px;}
.y105{bottom:827.531250px;}
.y125{bottom:827.898150px;}
.y7b{bottom:833.095050px;}
.y1d3{bottom:836.203350px;}
.ydb{bottom:843.136200px;}
.y4e{bottom:844.091100px;}
.y104{bottom:845.395500px;}
.y1d2{bottom:848.203350px;}
.y7a{bottom:852.595050px;}
.y5{bottom:857.600400px;}
.y1d1{bottom:860.203350px;}
.yda{bottom:861.000600px;}
.y184{bottom:861.135750px;}
.y103{bottom:863.259900px;}
.y4d{bottom:863.591100px;}
.y177{bottom:864.164250px;}
.y4{bottom:871.100400px;}
.y79{bottom:872.095050px;}
.y1d0{bottom:872.203350px;}
.yd9{bottom:878.864850px;}
.y3{bottom:880.104900px;}
.y102{bottom:881.124150px;}
.y176{bottom:882.028500px;}
.y4c{bottom:883.091100px;}
.y1cf{bottom:884.203350px;}
.y78{bottom:891.595050px;}
.y183{bottom:895.548000px;}
.y1ce{bottom:896.203350px;}
.yd8{bottom:896.729250px;}
.y101{bottom:898.988400px;}
.y175{bottom:899.892750px;}
.y4b{bottom:902.591100px;}
.y2{bottom:907.104900px;}
.y1cd{bottom:908.203350px;}
.y77{bottom:911.095050px;}
.yb{bottom:912.864300px;}
.yd7{bottom:914.593350px;}
.y100{bottom:916.852800px;}
.y174{bottom:917.757000px;}
.y1cc{bottom:920.203350px;}
.y1{bottom:920.604900px;}
.y4a{bottom:922.091100px;}
.y182{bottom:929.960400px;}
.y76{bottom:930.595050px;}
.y1cb{bottom:932.203350px;}
.yd6{bottom:932.457750px;}
.yff{bottom:934.717050px;}
.y173{bottom:935.621400px;}
.y1ca{bottom:944.203350px;}
.y180{bottom:949.572750px;}
.y49{bottom:950.095050px;}
.yd5{bottom:950.322000px;}
.yfe{bottom:952.581300px;}
.y172{bottom:953.485650px;}
.y1c9{bottom:956.203350px;}
.y17f{bottom:956.322750px;}
.y181{bottom:963.072750px;}
.yd4{bottom:968.186250px;}
.y1c8{bottom:968.203350px;}
.y48{bottom:969.595050px;}
.yfd{bottom:970.445550px;}
.y171{bottom:971.350050px;}
.y10{bottom:972.985500px;}
.y1c7{bottom:980.203350px;}
.y186{bottom:981.974100px;}
.yd3{bottom:986.050650px;}
.yfc{bottom:988.309950px;}
.y47{bottom:989.095050px;}
.y170{bottom:989.214150px;}
.y1c6{bottom:992.203350px;}
.y185{bottom:996.974100px;}
.yd2{bottom:1003.914900px;}
.y1c5{bottom:1004.203350px;}
.yfb{bottom:1006.174200px;}
.y16f{bottom:1007.078550px;}
.y46{bottom:1008.595050px;}
.y1c4{bottom:1016.203350px;}
.y17e{bottom:1019.500950px;}
.yd1{bottom:1021.779150px;}
.yfa{bottom:1024.038450px;}
.y16e{bottom:1024.942800px;}
.y45{bottom:1028.095050px;}
.y1c3{bottom:1028.203350px;}
.yd0{bottom:1039.643400px;}
.y1c2{bottom:1040.203350px;}
.yf9{bottom:1041.902700px;}
.y16d{bottom:1044.375600px;}
.y44{bottom:1047.595050px;}
.yd{bottom:1047.889650px;}
.y17d{bottom:1049.392500px;}
.y1c1{bottom:1052.203350px;}
.ycf{bottom:1057.507650px;}
.yf8{bottom:1059.767100px;}
.y16c{bottom:1062.239850px;}
.y1c0{bottom:1064.203350px;}
.y17c{bottom:1067.039250px;}
.y43{bottom:1067.095050px;}
.yce{bottom:1075.372050px;}
.y1bf{bottom:1076.203350px;}
.yf7{bottom:1077.631350px;}
.y16b{bottom:1080.104250px;}
.ye{bottom:1083.927000px;}
.y17b{bottom:1084.686000px;}
.y42{bottom:1086.595050px;}
.y1be{bottom:1088.203350px;}
.ycd{bottom:1093.236300px;}
.yf6{bottom:1095.495600px;}
.y16a{bottom:1097.968500px;}
.y1bd{bottom:1100.203350px;}
.y17a{bottom:1102.332750px;}
.y41{bottom:1106.095050px;}
.ycc{bottom:1111.100700px;}
.y1bc{bottom:1112.203350px;}
.yf5{bottom:1113.359850px;}
.y169{bottom:1115.832750px;}
.y1bb{bottom:1124.203350px;}
.y40{bottom:1125.595050px;}
.ycb{bottom:1128.964800px;}
.y10b{bottom:1130.630550px;}
.y179{bottom:1132.175100px;}
.y1ba{bottom:1136.203350px;}
.y3f{bottom:1145.095050px;}
.y10a{bottom:1145.630550px;}
.ye0{bottom:1146.135000px;}
.y178{bottom:1147.175100px;}
.y1b9{bottom:1148.203350px;}
.y3c{bottom:1187.880600px;}
.h4{height:21.874456px;}
.hb{height:23.690068px;}
.h2{height:32.507812px;}
.h6{height:33.351562px;}
.ha{height:34.500000px;}
.h17{height:36.571289px;}
.h16{height:36.597656px;}
.h5{height:37.494141px;}
.h3{height:37.520508px;}
.hd{height:40.634766px;}
.h13{height:40.664062px;}
.h14{height:41.660156px;}
.hc{height:41.689453px;}
.h11{height:42.720000px;}
.h10{height:44.730469px;}
.h12{height:45.826172px;}
.hf{height:45.858398px;}
.he{height:48.761719px;}
.h7{height:48.796875px;}
.h15{height:51.264000px;}
.h9{height:58.898438px;}
.h18{height:63.597656px;}
.h8{height:84.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:597.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:6.026100px;}
.x4{left:63.779550px;}
.xc{left:70.157400px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x7{left:87.412950px;}
.x20{left:90.779550px;}
.xb{left:95.409450px;}
.x18{left:111.188100px;}
.xe{left:120.076200px;}
.x6{left:128.945700px;}
.x11{left:206.241750px;}
.x10{left:209.368050px;}
.x8{left:215.536500px;}
.x14{left:222.327000px;}
.x13{left:228.079650px;}
.x17{left:248.740200px;}
.x16{left:250.189950px;}
.x5{left:263.870550px;}
.xf{left:281.213250px;}
.x12{left:292.271400px;}
.x15{left:303.326550px;}
.xd{left:459.212550px;}
.x19{left:464.964600px;}
.x1d{left:466.337550px;}
.x21{left:486.212550px;}
.x1a{left:617.203950px;}
.x1e{left:619.187550px;}
.xa{left:638.165100px;}
.x3{left:692.175750px;}
.x1f{left:722.207400px;}
.x1c{left:727.393350px;}
.x1b{left:735.082650px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v1{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.000000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.240000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.wsd{word-spacing:-10.666667pt;}
.ws3{word-spacing:-7.773333pt;}
.ws0{word-spacing:-6.996000pt;}
.wsc{word-spacing:-2.240000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:0.085333pt;}
.ws9{word-spacing:43.292267pt;}
.ws8{word-spacing:260.880000pt;}
.wsb{word-spacing:310.256000pt;}
.ws7{word-spacing:319.841067pt;}
.ws6{word-spacing:374.294933pt;}
.wsa{word-spacing:378.778667pt;}
._4{margin-left:-1944.394667pt;}
._a{margin-left:-11.376000pt;}
._8{margin-left:-9.824000pt;}
._9{margin-left:-7.498667pt;}
._2{margin-left:-5.862400pt;}
._7{margin-left:-4.853867pt;}
._0{margin-left:-3.254933pt;}
._1{margin-left:-2.332800pt;}
._3{margin-left:-1.158400pt;}
._11{width:0.928000pt;}
._21{width:1.961067pt;}
._d{width:2.912000pt;}
._10{width:4.147200pt;}
._e{width:5.306667pt;}
._f{width:6.378667pt;}
._19{width:7.818667pt;}
._c{width:8.885333pt;}
._b{width:9.888000pt;}
._40{width:10.788800pt;}
._5{width:11.685333pt;}
._18{width:13.055467pt;}
._b3{width:14.656533pt;}
._12{width:15.915733pt;}
._13{width:16.907733pt;}
._24{width:17.846400pt;}
._6{width:18.778667pt;}
._1d{width:19.802133pt;}
._1c{width:20.832533pt;}
._15{width:22.093867pt;}
._1a{width:23.677867pt;}
._1b{width:25.390933pt;}
._3f{width:26.828267pt;}
._22{width:27.796267pt;}
._20{width:29.028267pt;}
._23{width:30.747200pt;}
._25{width:32.348800pt;}
._b2{width:34.332800pt;}
._1f{width:36.297067pt;}
._14{width:37.986667pt;}
._16{width:39.729067pt;}
._1e{width:40.873067pt;}
._b0{width:41.864533pt;}
._b1{width:43.530667pt;}
._27{width:44.463467pt;}
._29{width:45.525333pt;}
._28{width:47.302933pt;}
._26{width:52.207467pt;}
._9a{width:53.433600pt;}
._8c{width:59.400000pt;}
._88{width:63.883200pt;}
._8b{width:70.964800pt;}
._ad{width:72.601600pt;}
._82{width:76.455467pt;}
._7a{width:79.053867pt;}
._66{width:81.825600pt;}
._4b{width:83.360533pt;}
._a9{width:84.971200pt;}
._42{width:86.533333pt;}
._79{width:88.828800pt;}
._70{width:91.053867pt;}
._50{width:93.825600pt;}
._8a{width:94.855467pt;}
._8d{width:96.280000pt;}
._4d{width:99.483200pt;}
._65{width:101.018133pt;}
._6d{width:102.864533pt;}
._5b{width:105.825600pt;}
._90{width:106.974933pt;}
._57{width:111.825600pt;}
._6f{width:112.828800pt;}
._7f{width:114.864533pt;}
._6b{width:115.885333pt;}
._61{width:117.825600pt;}
._48{width:119.360533pt;}
._a4{width:120.683733pt;}
._4a{width:125.018133pt;}
._74{width:126.864533pt;}
._76{width:127.885333pt;}
._52{width:129.825600pt;}
._45{width:131.360533pt;}
._2c{width:138.370133pt;}
._4f{width:143.018133pt;}
._86{width:145.053867pt;}
._54{width:147.825600pt;}
._5a{width:149.018133pt;}
._aa{width:151.343467pt;}
._94{width:152.614400pt;}
._2e{width:156.460267pt;}
._93{width:159.286400pt;}
._47{width:161.018133pt;}
._41{width:171.997333pt;}
._63{width:173.018133pt;}
._6c{width:174.946667pt;}
._60{width:179.018133pt;}
._ae{width:183.318400pt;}
._85{width:190.828800pt;}
._9b{width:193.011733pt;}
._44{width:197.018133pt;}
._a1{width:207.323733pt;}
._2d{width:210.084267pt;}
._a3{width:211.355733pt;}
._2b{width:214.881600pt;}
._84{width:217.570667pt;}
._53{width:232.346133pt;}
._92{width:235.270400pt;}
._af{width:243.414400pt;}
._46{width:244.584000pt;}
._77{width:246.850667pt;}
._7c{width:254.866667pt;}
._7b{width:257.554667pt;}
._9d{width:265.712533pt;}
._2f{width:269.547733pt;}
._ab{width:274.424533pt;}
._9f{width:277.712533pt;}
._95{width:281.878400pt;}
._a7{width:287.243733pt;}
._a2{width:294.011733pt;}
._89{width:296.566400pt;}
._68{width:299.208000pt;}
._a6{width:305.867733pt;}
._97{width:316.534400pt;}
._9c{width:319.307733pt;}
._5c{width:320.520000pt;}
._37{width:327.125867pt;}
._56{width:328.488000pt;}
._8f{width:331.270400pt;}
._78{width:333.538667pt;}
._59{width:339.192000pt;}
._7d{width:341.458667pt;}
._6e{width:345.490667pt;}
._35{width:354.485867pt;}
._2a{width:357.066667pt;}
._a0{width:360.587733pt;}
._3d{width:366.485867pt;}
._96{width:368.614400pt;}
._9e{width:373.979733pt;}
._91{width:375.190400pt;}
._8e{width:379.270400pt;}
._a5{width:381.899733pt;}
._99{width:383.158400pt;}
._80{width:392.146667pt;}
._75{width:394.834667pt;}
._6a{width:406.834667pt;}
._71{width:413.506667pt;}
._58{width:415.176000pt;}
._73{width:417.538667pt;}
._38{width:418.853867pt;}
._49{width:427.128000pt;}
._ac{width:430.879467pt;}
._5d{width:435.096000pt;}
._a8{width:440.603733pt;}
._7e{width:452.242667pt;}
._98{width:457.942400pt;}
._81{width:466.882667pt;}
._5f{width:479.784000pt;}
._87{width:481.426667pt;}
._43{width:488.472000pt;}
._72{width:489.538667pt;}
._4c{width:495.144000pt;}
._64{width:496.440000pt;}
._31{width:503.202133pt;}
._39{width:504.540800pt;}
._36{width:509.868800pt;}
._51{width:511.176000pt;}
._3b{width:512.187200pt;}
._3c{width:531.712533pt;}
._5e{width:533.880000pt;}
._34{width:536.535467pt;}
._3a{width:538.348800pt;}
._30{width:545.045867pt;}
._62{width:548.520000pt;}
._33{width:553.365867pt;}
._55{width:555.096000pt;}
._83{width:556.210667pt;}
._69{width:563.064000pt;}
._4e{width:577.176000pt;}
._67{width:637.848000pt;}
._3e{width:659.019200pt;}
._32{width:710.934400pt;}
._17{width:1545.645333pt;}
.fs2{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:18.584667pt;}
.y12{bottom:26.924400pt;}
.yc{bottom:26.934933pt;}
.y3e{bottom:27.472133pt;}
.y3d{bottom:29.759067pt;}
.y96{bottom:29.769467pt;}
.yf{bottom:29.947733pt;}
.ya4{bottom:56.692933pt;}
.y75{bottom:59.185067pt;}
.y122{bottom:61.139067pt;}
.y168{bottom:62.124800pt;}
.y35{bottom:62.423867pt;}
.yc5{bottom:64.780933pt;}
.y1b8{bottom:65.862267pt;}
.y95{bottom:66.744133pt;}
.y14a{bottom:69.683733pt;}
.ya3{bottom:71.359600pt;}
.y74{bottom:76.518400pt;}
.y1b7{bottom:76.528933pt;}
.y121{bottom:77.018533pt;}
.y3b{bottom:78.524400pt;}
.y167{bottom:79.458000pt;}
.y34{bottom:79.757200pt;}
.y211{bottom:81.958533pt;}
.yc4{bottom:82.114267pt;}
.y94{bottom:84.077467pt;}
.ya2{bottom:86.359600pt;}
.y149{bottom:87.017067pt;}
.y1b6{bottom:87.195600pt;}
.y210{bottom:92.625200pt;}
.y120{bottom:92.897867pt;}
.y73{bottom:93.851733pt;}
.y3a{bottom:95.857733pt;}
.y166{bottom:96.791333pt;}
.y33{bottom:97.090533pt;}
.y1b5{bottom:97.862267pt;}
.yc3{bottom:99.447600pt;}
.y93{bottom:101.410800pt;}
.y20f{bottom:103.291867pt;}
.y148{bottom:104.350400pt;}
.ya1{bottom:106.271067pt;}
.y1b4{bottom:108.528933pt;}
.y11f{bottom:108.777200pt;}
.y72{bottom:111.185067pt;}
.y39{bottom:113.191067pt;}
.y20e{bottom:113.958533pt;}
.y165{bottom:114.124667pt;}
.y32{bottom:114.423867pt;}
.yc2{bottom:116.780933pt;}
.y92{bottom:118.744133pt;}
.y1b3{bottom:119.195600pt;}
.y147{bottom:121.683733pt;}
.y20d{bottom:124.625200pt;}
.y11e{bottom:124.656533pt;}
.ya0{bottom:126.182533pt;}
.y71{bottom:128.518400pt;}
.y1b2{bottom:129.862267pt;}
.y38{bottom:130.524400pt;}
.y164{bottom:131.458000pt;}
.y31{bottom:131.757200pt;}
.yc1{bottom:134.114267pt;}
.y20c{bottom:135.291867pt;}
.y91{bottom:136.077467pt;}
.y146{bottom:139.017067pt;}
.y1b1{bottom:140.528933pt;}
.y11d{bottom:140.536000pt;}
.y70{bottom:145.851733pt;}
.y20b{bottom:145.958533pt;}
.y9f{bottom:146.094000pt;}
.y37{bottom:147.857733pt;}
.y163{bottom:148.791333pt;}
.y30{bottom:149.090533pt;}
.y1b0{bottom:151.195600pt;}
.yca{bottom:151.447600pt;}
.y90{bottom:153.410800pt;}
.y145{bottom:156.350400pt;}
.y11c{bottom:156.415333pt;}
.y20a{bottom:156.625200pt;}
.yc0{bottom:159.006667pt;}
.y1af{bottom:161.862267pt;}
.y6f{bottom:163.185067pt;}
.y36{bottom:165.191067pt;}
.y9e{bottom:166.005467pt;}
.y162{bottom:166.124667pt;}
.y2f{bottom:166.423867pt;}
.y209{bottom:167.291867pt;}
.yc9{bottom:168.780933pt;}
.y8f{bottom:170.744133pt;}
.y11b{bottom:172.294667pt;}
.y1ae{bottom:172.528933pt;}
.y144{bottom:173.683733pt;}
.ybf{bottom:176.340000pt;}
.y208{bottom:177.958533pt;}
.y195{bottom:180.518400pt;}
.y1ad{bottom:183.195600pt;}
.y161{bottom:183.458000pt;}
.y9d{bottom:185.916933pt;}
.y6e{bottom:188.077467pt;}
.y11a{bottom:188.174000pt;}
.y207{bottom:188.625200pt;}
.y143{bottom:191.017067pt;}
.ybe{bottom:193.673333pt;}
.y1ac{bottom:193.862267pt;}
.y194{bottom:197.851733pt;}
.y206{bottom:199.291867pt;}
.y160{bottom:200.791333pt;}
.y119{bottom:204.053467pt;}
.y1ab{bottom:204.528933pt;}
.y6d{bottom:205.410800pt;}
.y9c{bottom:205.828267pt;}
.y142{bottom:208.350400pt;}
.y205{bottom:209.958533pt;}
.ybd{bottom:211.006667pt;}
.y193{bottom:215.185067pt;}
.y1aa{bottom:215.195600pt;}
.y15f{bottom:218.124667pt;}
.y118{bottom:219.932800pt;}
.y2e{bottom:220.565600pt;}
.y204{bottom:220.625200pt;}
.y6c{bottom:222.744133pt;}
.y141{bottom:225.683733pt;}
.y9b{bottom:225.739733pt;}
.y1a9{bottom:225.862267pt;}
.ybc{bottom:228.340000pt;}
.y188{bottom:230.303200pt;}
.y203{bottom:231.291867pt;}
.y192{bottom:232.518400pt;}
.y2d{bottom:235.232267pt;}
.y15e{bottom:235.458000pt;}
.y117{bottom:235.812133pt;}
.y1a8{bottom:236.528933pt;}
.y6b{bottom:240.077467pt;}
.y202{bottom:241.958533pt;}
.y140{bottom:243.017067pt;}
.y9a{bottom:245.651200pt;}
.ybb{bottom:245.673333pt;}
.y1a7{bottom:247.195600pt;}
.y187{bottom:247.636533pt;}
.y191{bottom:249.851733pt;}
.y116{bottom:251.691467pt;}
.y201{bottom:252.625200pt;}
.y15d{bottom:252.791333pt;}
.y6a{bottom:257.410800pt;}
.y2c{bottom:257.458000pt;}
.y1a6{bottom:257.862267pt;}
.y13f{bottom:260.350400pt;}
.yba{bottom:263.006667pt;}
.y200{bottom:263.291867pt;}
.y8e{bottom:264.969867pt;}
.y99{bottom:265.562667pt;}
.y190{bottom:267.185067pt;}
.y115{bottom:267.570933pt;}
.y1a5{bottom:268.528933pt;}
.y15c{bottom:270.124667pt;}
.y2b{bottom:272.124667pt;}
.y1ff{bottom:273.958533pt;}
.y69{bottom:274.744133pt;}
.y13e{bottom:277.683733pt;}
.yb9{bottom:280.340000pt;}
.y8d{bottom:282.303200pt;}
.y114{bottom:283.450267pt;}
.y1fe{bottom:284.625200pt;}
.y98{bottom:285.474133pt;}
.y2a{bottom:286.791333pt;}
.y15b{bottom:287.458000pt;}
.y1a4{bottom:289.862267pt;}
.y68{bottom:292.077467pt;}
.y1fd{bottom:295.291867pt;}
.yb8{bottom:297.673333pt;}
.y113{bottom:299.329600pt;}
.y8c{bottom:299.636533pt;}
.y29{bottom:301.458000pt;}
.y13d{bottom:302.576133pt;}
.y15a{bottom:304.791333pt;}
.yc8{bottom:305.232400pt;}
.y97{bottom:305.385600pt;}
.y1fc{bottom:305.958533pt;}
.y67{bottom:309.410800pt;}
.yb7{bottom:315.006667pt;}
.y112{bottom:315.208933pt;}
.y28{bottom:316.124667pt;}
.y1fb{bottom:316.625200pt;}
.y8b{bottom:316.969867pt;}
.y13c{bottom:319.909467pt;}
.y159{bottom:322.124667pt;}
.yc7{bottom:322.565733pt;}
.y1a3{bottom:324.528933pt;}
.ya5{bottom:325.067600pt;}
.y66{bottom:326.744133pt;}
.y1fa{bottom:327.291867pt;}
.y27{bottom:330.791333pt;}
.y111{bottom:331.088400pt;}
.y8a{bottom:334.303200pt;}
.y13b{bottom:337.242800pt;}
.y1f9{bottom:337.958533pt;}
.y158{bottom:339.458000pt;}
.yb6{bottom:339.899067pt;}
.y1a2{bottom:341.862267pt;}
.y65{bottom:344.077467pt;}
.y26{bottom:345.458000pt;}
.y110{bottom:346.967733pt;}
.y1f8{bottom:348.625200pt;}
.y89{bottom:351.636533pt;}
.y13a{bottom:354.576133pt;}
.yb5{bottom:357.232400pt;}
.y1a1{bottom:359.195600pt;}
.y1f7{bottom:359.291867pt;}
.y25{bottom:360.124667pt;}
.y64{bottom:361.410800pt;}
.y10f{bottom:362.847067pt;}
.y157{bottom:364.350400pt;}
.y88{bottom:368.969867pt;}
.y1f6{bottom:369.958533pt;}
.y139{bottom:371.909467pt;}
.yb4{bottom:374.565733pt;}
.y24{bottom:374.791333pt;}
.y1a0{bottom:376.528933pt;}
.y10e{bottom:378.726400pt;}
.y63{bottom:378.744133pt;}
.y1f5{bottom:380.625200pt;}
.y156{bottom:381.683733pt;}
.y87{bottom:386.303200pt;}
.y138{bottom:389.242800pt;}
.y23{bottom:389.458000pt;}
.y1f4{bottom:391.291867pt;}
.yb3{bottom:391.899067pt;}
.y124{bottom:393.721467pt;}
.y19f{bottom:393.862267pt;}
.y62{bottom:396.077467pt;}
.y155{bottom:399.017067pt;}
.y1f3{bottom:401.958533pt;}
.y86{bottom:403.636533pt;}
.y22{bottom:404.124667pt;}
.y137{bottom:406.576133pt;}
.y123{bottom:407.054800pt;}
.yb2{bottom:409.232400pt;}
.y19e{bottom:411.195600pt;}
.y1f2{bottom:412.625200pt;}
.y18f{bottom:413.410800pt;}
.y154{bottom:416.350400pt;}
.y21{bottom:418.791333pt;}
.y61{bottom:420.969867pt;}
.y1f1{bottom:423.291867pt;}
.y136{bottom:423.909467pt;}
.yb1{bottom:426.565733pt;}
.y19d{bottom:428.528933pt;}
.y18e{bottom:430.744133pt;}
.y20{bottom:433.458000pt;}
.y153{bottom:433.683733pt;}
.yf4{bottom:433.694267pt;}
.y1f0{bottom:433.958533pt;}
.yec{bottom:435.909467pt;}
.y60{bottom:438.303200pt;}
.y135{bottom:441.242800pt;}
.yb0{bottom:443.899067pt;}
.y1ef{bottom:444.625200pt;}
.y19c{bottom:445.862267pt;}
.y18d{bottom:448.077467pt;}
.y1f{bottom:448.124667pt;}
.y152{bottom:451.017067pt;}
.yf3{bottom:451.027600pt;}
.y1ee{bottom:455.291867pt;}
.y5f{bottom:455.636533pt;}
.y134{bottom:458.576133pt;}
.yeb{bottom:460.801867pt;}
.yaf{bottom:461.232400pt;}
.y1e{bottom:462.791333pt;}
.y19b{bottom:463.195600pt;}
.y18c{bottom:465.410800pt;}
.y1ed{bottom:465.958533pt;}
.y151{bottom:468.350400pt;}
.yf2{bottom:468.360933pt;}
.y5e{bottom:472.969867pt;}
.y133{bottom:475.909467pt;}
.y1ec{bottom:476.625200pt;}
.y1d{bottom:477.458000pt;}
.yea{bottom:478.135200pt;}
.yae{bottom:478.565733pt;}
.y19a{bottom:480.528933pt;}
.y18b{bottom:482.744133pt;}
.y150{bottom:485.683733pt;}
.yf1{bottom:485.694267pt;}
.y1eb{bottom:487.291867pt;}
.y5d{bottom:490.303200pt;}
.y1c{bottom:492.124667pt;}
.y132{bottom:493.242800pt;}
.ye9{bottom:495.468533pt;}
.yad{bottom:495.899067pt;}
.y199{bottom:497.862267pt;}
.y1ea{bottom:497.958533pt;}
.y18a{bottom:500.077467pt;}
.y14f{bottom:503.017067pt;}
.yf0{bottom:503.027600pt;}
.y1b{bottom:506.791333pt;}
.y5c{bottom:507.636533pt;}
.y1e9{bottom:508.625200pt;}
.y131{bottom:510.576133pt;}
.ye8{bottom:512.801867pt;}
.yac{bottom:513.232400pt;}
.y198{bottom:515.195600pt;}
.y189{bottom:517.410800pt;}
.y1e8{bottom:519.291867pt;}
.y14e{bottom:520.350400pt;}
.yef{bottom:520.360933pt;}
.yc6{bottom:520.791333pt;}
.y1a{bottom:521.458000pt;}
.y5b{bottom:524.969867pt;}
.y130{bottom:527.909467pt;}
.y1e7{bottom:529.958533pt;}
.ye7{bottom:530.135200pt;}
.y197{bottom:532.528933pt;}
.y19{bottom:536.124667pt;}
.y14d{bottom:537.683733pt;}
.yee{bottom:537.694267pt;}
.yab{bottom:538.124667pt;}
.y1e6{bottom:540.625200pt;}
.y5a{bottom:542.303200pt;}
.y12f{bottom:545.242800pt;}
.ye6{bottom:547.468533pt;}
.y196{bottom:549.862267pt;}
.y18{bottom:550.791333pt;}
.y1e5{bottom:551.291867pt;}
.y14c{bottom:555.017067pt;}
.yed{bottom:555.027600pt;}
.yaa{bottom:555.458000pt;}
.y59{bottom:559.636533pt;}
.y1e4{bottom:561.958533pt;}
.y12e{bottom:562.576133pt;}
.y17{bottom:565.458000pt;}
.y85{bottom:567.195600pt;}
.ye5{bottom:572.360933pt;}
.y1e3{bottom:572.625200pt;}
.ya9{bottom:572.791333pt;}
.y58{bottom:576.969867pt;}
.y12d{bottom:579.909467pt;}
.y16{bottom:580.124667pt;}
.y1e2{bottom:583.291867pt;}
.y84{bottom:584.528933pt;}
.ye4{bottom:589.694267pt;}
.ya8{bottom:590.124667pt;}
.y1e1{bottom:593.958533pt;}
.y57{bottom:594.303200pt;}
.y15{bottom:594.791333pt;}
.y12c{bottom:597.242800pt;}
.y83{bottom:601.862267pt;}
.y1e0{bottom:604.625200pt;}
.ye3{bottom:607.027600pt;}
.ya7{bottom:607.458000pt;}
.y14{bottom:609.458000pt;}
.y56{bottom:611.636533pt;}
.y12b{bottom:614.576133pt;}
.y1df{bottom:615.291867pt;}
.y82{bottom:619.195600pt;}
.ya6{bottom:624.791333pt;}
.y1de{bottom:625.958533pt;}
.y55{bottom:628.969867pt;}
.y13{bottom:629.017067pt;}
.y14b{bottom:631.909467pt;}
.y81{bottom:636.528933pt;}
.y1dd{bottom:636.625200pt;}
.y10d{bottom:641.372000pt;}
.y54{bottom:646.303200pt;}
.y1dc{bottom:647.291867pt;}
.y12a{bottom:649.242800pt;}
.y80{bottom:653.862267pt;}
.y10c{bottom:654.705333pt;}
.ye2{bottom:657.905333pt;}
.y1db{bottom:657.958533pt;}
.y53{bottom:663.636533pt;}
.y129{bottom:666.576133pt;}
.y1da{bottom:668.625200pt;}
.y7f{bottom:671.195600pt;}
.ye1{bottom:671.238667pt;}
.y109{bottom:672.065867pt;}
.ya{bottom:674.315467pt;}
.y1d9{bottom:679.291867pt;}
.y52{bottom:680.969867pt;}
.y128{bottom:683.909467pt;}
.ydf{bottom:685.937067pt;}
.y9{bottom:686.315467pt;}
.y108{bottom:687.945333pt;}
.y7e{bottom:688.528933pt;}
.y1d8{bottom:689.958533pt;}
.y51{bottom:698.303200pt;}
.y8{bottom:698.315467pt;}
.y1d7{bottom:700.625200pt;}
.y127{bottom:701.242800pt;}
.yde{bottom:701.816400pt;}
.y107{bottom:703.824667pt;}
.y7d{bottom:705.862267pt;}
.y1d6{bottom:711.291867pt;}
.y50{bottom:715.636533pt;}
.ydd{bottom:717.695733pt;}
.y126{bottom:718.576133pt;}
.y106{bottom:719.704000pt;}
.y1d5{bottom:721.958533pt;}
.y7{bottom:722.315467pt;}
.y7c{bottom:723.195600pt;}
.y1d4{bottom:732.625200pt;}
.y4f{bottom:732.969867pt;}
.ydc{bottom:733.575067pt;}
.y6{bottom:734.315467pt;}
.y105{bottom:735.583333pt;}
.y125{bottom:735.909467pt;}
.y7b{bottom:740.528933pt;}
.y1d3{bottom:743.291867pt;}
.ydb{bottom:749.454400pt;}
.y4e{bottom:750.303200pt;}
.y104{bottom:751.462667pt;}
.y1d2{bottom:753.958533pt;}
.y7a{bottom:757.862267pt;}
.y5{bottom:762.311467pt;}
.y1d1{bottom:764.625200pt;}
.yda{bottom:765.333867pt;}
.y184{bottom:765.454000pt;}
.y103{bottom:767.342133pt;}
.y4d{bottom:767.636533pt;}
.y177{bottom:768.146000pt;}
.y4{bottom:774.311467pt;}
.y79{bottom:775.195600pt;}
.y1d0{bottom:775.291867pt;}
.yd9{bottom:781.213200pt;}
.y3{bottom:782.315467pt;}
.y102{bottom:783.221467pt;}
.y176{bottom:784.025333pt;}
.y4c{bottom:784.969867pt;}
.y1cf{bottom:785.958533pt;}
.y78{bottom:792.528933pt;}
.y183{bottom:796.042667pt;}
.y1ce{bottom:796.625200pt;}
.yd8{bottom:797.092667pt;}
.y101{bottom:799.100800pt;}
.y175{bottom:799.904667pt;}
.y4b{bottom:802.303200pt;}
.y2{bottom:806.315467pt;}
.y1cd{bottom:807.291867pt;}
.y77{bottom:809.862267pt;}
.yb{bottom:811.434933pt;}
.yd7{bottom:812.971867pt;}
.y100{bottom:814.980267pt;}
.y174{bottom:815.784000pt;}
.y1cc{bottom:817.958533pt;}
.y1{bottom:818.315467pt;}
.y4a{bottom:819.636533pt;}
.y182{bottom:826.631467pt;}
.y76{bottom:827.195600pt;}
.y1cb{bottom:828.625200pt;}
.yd6{bottom:828.851333pt;}
.yff{bottom:830.859600pt;}
.y173{bottom:831.663467pt;}
.y1ca{bottom:839.291867pt;}
.y180{bottom:844.064667pt;}
.y49{bottom:844.528933pt;}
.yd5{bottom:844.730667pt;}
.yfe{bottom:846.738933pt;}
.y172{bottom:847.542800pt;}
.y1c9{bottom:849.958533pt;}
.y17f{bottom:850.064667pt;}
.y181{bottom:856.064667pt;}
.yd4{bottom:860.610000pt;}
.y1c8{bottom:860.625200pt;}
.y48{bottom:861.862267pt;}
.yfd{bottom:862.618267pt;}
.y171{bottom:863.422267pt;}
.y10{bottom:864.876000pt;}
.y1c7{bottom:871.291867pt;}
.y186{bottom:872.865867pt;}
.yd3{bottom:876.489467pt;}
.yfc{bottom:878.497733pt;}
.y47{bottom:879.195600pt;}
.y170{bottom:879.301467pt;}
.y1c6{bottom:881.958533pt;}
.y185{bottom:886.199200pt;}
.yd2{bottom:892.368800pt;}
.y1c5{bottom:892.625200pt;}
.yfb{bottom:894.377067pt;}
.y16f{bottom:895.180933pt;}
.y46{bottom:896.528933pt;}
.y1c4{bottom:903.291867pt;}
.y17e{bottom:906.223067pt;}
.yd1{bottom:908.248133pt;}
.yfa{bottom:910.256400pt;}
.y16e{bottom:911.060267pt;}
.y45{bottom:913.862267pt;}
.y1c3{bottom:913.958533pt;}
.yd0{bottom:924.127467pt;}
.y1c2{bottom:924.625200pt;}
.yf9{bottom:926.135733pt;}
.y16d{bottom:928.333867pt;}
.y44{bottom:931.195600pt;}
.yd{bottom:931.457467pt;}
.y17d{bottom:932.793333pt;}
.y1c1{bottom:935.291867pt;}
.ycf{bottom:940.006800pt;}
.yf8{bottom:942.015200pt;}
.y16c{bottom:944.213200pt;}
.y1c0{bottom:945.958533pt;}
.y17c{bottom:948.479333pt;}
.y43{bottom:948.528933pt;}
.yce{bottom:955.886267pt;}
.y1bf{bottom:956.625200pt;}
.yf7{bottom:957.894533pt;}
.y16b{bottom:960.092667pt;}
.ye{bottom:963.490667pt;}
.y17b{bottom:964.165333pt;}
.y42{bottom:965.862267pt;}
.y1be{bottom:967.291867pt;}
.ycd{bottom:971.765600pt;}
.yf6{bottom:973.773867pt;}
.y16a{bottom:975.972000pt;}
.y1bd{bottom:977.958533pt;}
.y17a{bottom:979.851333pt;}
.y41{bottom:983.195600pt;}
.ycc{bottom:987.645067pt;}
.y1bc{bottom:988.625200pt;}
.yf5{bottom:989.653200pt;}
.y169{bottom:991.851333pt;}
.y1bb{bottom:999.291867pt;}
.y40{bottom:1000.528933pt;}
.ycb{bottom:1003.524267pt;}
.y10b{bottom:1005.004933pt;}
.y179{bottom:1006.377867pt;}
.y1ba{bottom:1009.958533pt;}
.y3f{bottom:1017.862267pt;}
.y10a{bottom:1018.338267pt;}
.ye0{bottom:1018.786667pt;}
.y178{bottom:1019.711200pt;}
.y1b9{bottom:1020.625200pt;}
.y3c{bottom:1055.893867pt;}
.h4{height:19.443961pt;}
.hb{height:21.057839pt;}
.h2{height:28.895833pt;}
.h6{height:29.645833pt;}
.ha{height:30.666667pt;}
.h17{height:32.507812pt;}
.h16{height:32.531250pt;}
.h5{height:33.328125pt;}
.h3{height:33.351562pt;}
.hd{height:36.119792pt;}
.h13{height:36.145833pt;}
.h14{height:37.031250pt;}
.hc{height:37.057292pt;}
.h11{height:37.973333pt;}
.h10{height:39.760417pt;}
.h12{height:40.734375pt;}
.hf{height:40.763021pt;}
.he{height:43.343750pt;}
.h7{height:43.375000pt;}
.h15{height:45.568000pt;}
.h9{height:52.354167pt;}
.h18{height:56.531250pt;}
.h8{height:74.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:530.666667pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:5.356533pt;}
.x4{left:56.692933pt;}
.xc{left:62.362133pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x7{left:77.700400pt;}
.x20{left:80.692933pt;}
.xb{left:84.808400pt;}
.x18{left:98.833867pt;}
.xe{left:106.734400pt;}
.x6{left:114.618400pt;}
.x11{left:183.326000pt;}
.x10{left:186.104933pt;}
.x8{left:191.588000pt;}
.x14{left:197.624000pt;}
.x13{left:202.737467pt;}
.x17{left:221.102400pt;}
.x16{left:222.391067pt;}
.x5{left:234.551600pt;}
.xf{left:249.967333pt;}
.x12{left:259.796800pt;}
.x15{left:269.623600pt;}
.xd{left:408.188933pt;}
.x19{left:413.301867pt;}
.x1d{left:414.522267pt;}
.x21{left:432.188933pt;}
.x1a{left:548.625733pt;}
.x1e{left:550.388933pt;}
.xa{left:567.257867pt;}
.x3{left:615.267333pt;}
.x1f{left:641.962133pt;}
.x1c{left:646.571867pt;}
.x1b{left:653.406800pt;}
}




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