
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_603818b2ac45495e1cbddf18.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f88326292b92fcc6385d6f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_84cffb669d9cd6e3a16ba29f.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_4b6c203b0bb89fda9a049db9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_008383e239b3be7466d86c48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_e6125f95f51e32b81665f85a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c7b7c98a70e928e0f58f028e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_5a6aa109601422bf1deacec8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_92fbcebe46128fa74d39e6ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5f272b9b97f0c083d47f90ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_b338cbaf071cce5e96d47a9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.891113;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_fdcc9b38703d0abf73340945.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.055176;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);}
.v4{vertical-align:-105.120000px;}
.v3{vertical-align:-84.960000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls13{letter-spacing:-2.880000px;}
.ls15{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.lsd{letter-spacing:4.320000px;}
.ls8{letter-spacing:8.789760px;}
.ls7{letter-spacing:33.984000px;}
.ls3{letter-spacing:54.864000px;}
.lsa{letter-spacing:140.400000px;}
.ls4{letter-spacing:272.160000px;}
.ls2{letter-spacing:997.200000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.wsd{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wse{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.970240px;}
.ws0{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._32{margin-left:-15.125760px;}
._1d{margin-left:-9.230400px;}
._1c{margin-left:-8.064000px;}
._1e{margin-left:-6.608160px;}
._18{margin-left:-5.358240px;}
._2{margin-left:-4.145760px;}
._b{margin-left:-2.415840px;}
._1{margin-left:-1.260000px;}
._0{width:1.061760px;}
._4{width:2.088000px;}
._9{width:3.211680px;}
._6{width:4.703040px;}
._5{width:5.895360px;}
._12{width:6.955200px;}
._a{width:8.002080px;}
._3{width:9.144000px;}
._8{width:10.664640px;}
._7{width:11.716800px;}
._d{width:13.368000px;}
._c{width:14.400000px;}
._e{width:15.408000px;}
._f{width:16.518240px;}
._22{width:17.708640px;}
._15{width:19.002240px;}
._14{width:20.016000px;}
._16{width:21.096000px;}
._17{width:22.176000px;}
._19{width:23.184000px;}
._13{width:25.128000px;}
._10{width:27.000000px;}
._11{width:28.098240px;}
._1b{width:29.214240px;}
._1a{width:30.653760px;}
._21{width:32.256000px;}
._2f{width:33.366720px;}
._35{width:34.560000px;}
._36{width:35.856000px;}
._38{width:40.554240px;}
._26{width:47.664000px;}
._25{width:49.032000px;}
._2b{width:50.760000px;}
._2c{width:51.840000px;}
._29{width:62.856000px;}
._2a{width:64.008000px;}
._39{width:71.856000px;}
._2d{width:79.776000px;}
._2e{width:80.904480px;}
._20{width:89.784000px;}
._1f{width:90.792000px;}
._23{width:99.360000px;}
._24{width:101.016000px;}
._3b{width:102.816000px;}
._30{width:107.496000px;}
._31{width:108.504000px;}
._34{width:112.494240px;}
._33{width:113.904000px;}
._37{width:128.592000px;}
._3a{width:138.168000px;}
._27{width:162.576000px;}
._28{width:163.728000px;}
._3c{width:216.504000px;}
._3d{width:217.656000px;}
.fc2{color:rgb(14,33,48);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:3.954000px;}
.y93{bottom:3.960000px;}
.yf5{bottom:5.580000px;}
.y12d{bottom:5.754000px;}
.y8f{bottom:5.760000px;}
.y102{bottom:6.660000px;}
.y108{bottom:7.920000px;}
.y100{bottom:9.540000px;}
.yc5{bottom:24.654000px;}
.y92{bottom:24.660000px;}
.yb5{bottom:24.690000px;}
.y16d{bottom:24.705000px;}
.yf1{bottom:25.380000px;}
.y96{bottom:26.280000px;}
.y127{bottom:31.500000px;}
.y135{bottom:31.680000px;}
.y114{bottom:37.260000px;}
.y153{bottom:42.654000px;}
.y150{bottom:42.660000px;}
.y14c{bottom:45.360000px;}
.y91{bottom:45.390000px;}
.yc2{bottom:46.794000px;}
.yca{bottom:46.800000px;}
.y12b{bottom:52.194000px;}
.y11f{bottom:52.200000px;}
.y134{bottom:52.380000px;}
.y95{bottom:57.240000px;}
.y99{bottom:57.420000px;}
.y9b{bottom:57.465000px;}
.y2{bottom:57.996000px;}
.y152{bottom:60.654000px;}
.y14f{bottom:60.660000px;}
.y155{bottom:60.690000px;}
.y14b{bottom:66.060000px;}
.yc1{bottom:67.494000px;}
.yc9{bottom:67.530000px;}
.y122{bottom:75.645000px;}
.y14a{bottom:86.760000px;}
.yb7{bottom:88.200000px;}
.yf7{bottom:89.685000px;}
.y170{bottom:89.820000px;}
.y17b{bottom:92.736000px;}
.y16b{bottom:97.236000px;}
.y12a{bottom:97.956000px;}
.yfc{bottom:98.100000px;}
.ye3{bottom:98.496000px;}
.y175{bottom:99.576000px;}
.y1bc{bottom:100.296000px;}
.y5b{bottom:104.796000px;}
.yc7{bottom:105.696000px;}
.y1a2{bottom:107.136000px;}
.y149{bottom:107.460000px;}
.yad{bottom:108.900000px;}
.y188{bottom:110.196000px;}
.y8e{bottom:113.976000px;}
.y174{bottom:120.276000px;}
.y151{bottom:120.996000px;}
.y104{bottom:121.170000px;}
.y12e{bottom:121.176000px;}
.y11b{bottom:121.356000px;}
.y71{bottom:122.256000px;}
.yee{bottom:125.496000px;}
.yc0{bottom:127.116000px;}
.y148{bottom:128.160000px;}
.ybc{bottom:130.545000px;}
.y1bb{bottom:131.436000px;}
.y17a{bottom:134.136000px;}
.y1a1{bottom:138.096000px;}
.y16a{bottom:138.636000px;}
.y2c{bottom:139.896000px;}
.y173{bottom:140.976000px;}
.y1d9{bottom:143.316000px;}
.y12c{bottom:144.396000px;}
.y10d{bottom:145.260000px;}
.y5a{bottom:146.196000px;}
.yc4{bottom:148.536000px;}
.y147{bottom:148.860000px;}
.y89{bottom:149.976000px;}
.yb1{bottom:151.230000px;}
.ybb{bottom:151.245000px;}
.y8d{bottom:151.590000px;}
.y182{bottom:156.630000px;}
.y16f{bottom:158.430000px;}
.y2b{bottom:160.410000px;}
.y1fe{bottom:161.310000px;}
.y1ba{bottom:162.390000px;}
.y11a{bottom:162.750000px;}
.y70{bottom:163.650000px;}
.y10c{bottom:165.960000px;}
.yed{bottom:166.890000px;}
.y126{bottom:167.790000px;}
.y1a0{bottom:169.230000px;}
.y146{bottom:169.560000px;}
.y1d8{bottom:174.450000px;}
.y179{bottom:175.530000px;}
.y1d2{bottom:179.310000px;}
.y172{bottom:179.850000px;}
.y169{bottom:180.030000px;}
.yaa{bottom:180.210000px;}
.y2a{bottom:180.930000px;}
.ye2{bottom:181.290000px;}
.y45{bottom:183.270000px;}
.y1e9{bottom:186.330000px;}
.y59{bottom:187.590000px;}
.y145{bottom:190.260000px;}
.yc3{bottom:190.650000px;}
.y129{bottom:191.010000px;}
.y88{bottom:191.370000px;}
.y1fd{bottom:192.270000px;}
.y187{bottom:192.990000px;}
.y202{bottom:193.350000px;}
.y181{bottom:198.030000px;}
.y14e{bottom:199.290000px;}
.y19f{bottom:200.190000px;}
.y29{bottom:201.270000px;}
.y119{bottom:204.150000px;}
.y6f{bottom:205.050000px;}
.y1b9{bottom:205.410000px;}
.yec{bottom:208.290000px;}
.y1d1{bottom:210.450000px;}
.yba{bottom:212.070000px;}
.y128{bottom:214.230000px;}
.y178{bottom:216.930000px;}
.y1e8{bottom:217.470000px;}
.y168{bottom:221.430000px;}
.ya9{bottom:221.610000px;}
.y28{bottom:221.790000px;}
.ye1{bottom:222.690000px;}
.y171{bottom:222.870000px;}
.y1fc{bottom:223.410000px;}
.y44{bottom:224.670000px;}
.y58{bottom:228.990000px;}
.y87{bottom:232.770000px;}
.y186{bottom:234.390000px;}
.y1b8{bottom:236.550000px;}
.y121{bottom:237.450000px;}
.y180{bottom:239.430000px;}
.y1d0{bottom:241.410000px;}
.y27{bottom:242.310000px;}
.y19e{bottom:243.210000px;}
.y16e{bottom:244.290000px;}
.y118{bottom:245.550000px;}
.y6e{bottom:246.450000px;}
.y1e7{bottom:248.430000px;}
.yeb{bottom:249.690000px;}
.ye0{bottom:253.650000px;}
.ybf{bottom:254.190000px;}
.y177{bottom:258.330000px;}
.y125{bottom:260.670000px;}
.y26{bottom:262.830000px;}
.y16c{bottom:265.710000px;}
.y43{bottom:266.070000px;}
.y1fb{bottom:266.430000px;}
.y1b7{bottom:267.510000px;}
.y57{bottom:270.390000px;}
.y19d{bottom:274.350000px;}
.ya8{bottom:275.070000px;}
.y185{bottom:275.790000px;}
.y14d{bottom:277.410000px;}
.y17f{bottom:280.650000px;}
.y25{bottom:283.215000px;}
.y124{bottom:283.935000px;}
.y1cf{bottom:284.475000px;}
.y86{bottom:286.095000px;}
.y117{bottom:286.995000px;}
.y6d{bottom:287.895000px;}
.yea{bottom:291.135000px;}
.y1e6{bottom:291.495000px;}
.ybe{bottom:296.535000px;}
.y1fa{bottom:297.435000px;}
.y1b6{bottom:298.695000px;}
.y144{bottom:298.875000px;}
.y176{bottom:299.775000px;}
.y24{bottom:303.735000px;}
.y167{bottom:304.275000px;}
.y19c{bottom:305.355000px;}
.ydf{bottom:307.155000px;}
.y123{bottom:307.335000px;}
.y201{bottom:310.575000px;}
.y56{bottom:311.835000px;}
.y1ce{bottom:315.615000px;}
.ya7{bottom:316.515000px;}
.y184{bottom:317.235000px;}
.y42{bottom:319.575000px;}
.y17e{bottom:322.095000px;}
.y1e5{bottom:322.635000px;}
.y23{bottom:324.255000px;}
.y85{bottom:327.495000px;}
.y116{bottom:328.395000px;}
.y1f9{bottom:328.575000px;}
.y6c{bottom:329.295000px;}
.y11e{bottom:330.555000px;}
.ye9{bottom:332.535000px;}
.y19b{bottom:336.495000px;}
.ybd{bottom:338.655000px;}
.y8c{bottom:341.175000px;}
.y1b5{bottom:341.715000px;}
.y22{bottom:344.775000px;}
.y166{bottom:345.675000px;}
.yde{bottom:348.555000px;}
.y55{bottom:353.235000px;}
.y1e4{bottom:353.595000px;}
.y120{bottom:353.775000px;}
.y1cd{bottom:358.635000px;}
.y115{bottom:359.355000px;}
.y41{bottom:360.975000px;}
.y17d{bottom:363.495000px;}
.y21{bottom:365.115000px;}
.y84{bottom:368.895000px;}
.ya6{bottom:369.795000px;}
.y6b{bottom:370.695000px;}
.y1f8{bottom:371.595000px;}
.y1b4{bottom:372.675000px;}
.ye8{bottom:373.935000px;}
.y10b{bottom:376.995000px;}
.y19a{bottom:379.515000px;}
.yb6{bottom:380.775000px;}
.y73{bottom:382.575000px;}
.y20{bottom:385.635000px;}
.y165{bottom:387.075000px;}
.y1cc{bottom:389.595000px;}
.ydd{bottom:389.955000px;}
.y54{bottom:394.635000px;}
.y1e3{bottom:396.795000px;}
.y11d{bottom:400.215000px;}
.y40{bottom:402.375000px;}
.y1f7{bottom:402.555000px;}
.y1b3{bottom:403.815000px;}
.y17c{bottom:404.895000px;}
.y1f{bottom:406.155000px;}
.y199{bottom:410.475000px;}
.ya5{bottom:411.195000px;}
.y6a{bottom:412.095000px;}
.ye7{bottom:415.335000px;}
.y1d7{bottom:415.695000px;}
.y1cb{bottom:420.735000px;}
.y83{bottom:422.355000px;}
.yb9{bottom:422.895000px;}
.y72{bottom:423.975000px;}
.y1e{bottom:425.235000px;}
.y1e2{bottom:427.755000px;}
.y164{bottom:428.475000px;}
.ydc{bottom:431.355000px;}
.y113{bottom:431.715000px;}
.y1f6{bottom:433.695000px;}
.y53{bottom:436.035000px;}
.y198{bottom:441.615000px;}
.y3f{bottom:443.775000px;}
.y1d{bottom:444.495000px;}
.y11c{bottom:446.295000px;}
.y1b2{bottom:446.835000px;}
.y1ca{bottom:451.695000px;}
.ya4{bottom:452.595000px;}
.y112{bottom:453.135000px;}
.y69{bottom:453.495000px;}
.ye6{bottom:456.735000px;}
.y1e1{bottom:458.895000px;}
.y82{bottom:463.755000px;}
.yb8{bottom:465.015000px;}
.y8b{bottom:465.375000px;}
.y1c{bottom:466.635000px;}
.y163{bottom:469.875000px;}
.y197{bottom:472.575000px;}
.ydb{bottom:472.755000px;}
.y111{bottom:474.555000px;}
.y1f5{bottom:476.715000px;}
.y52{bottom:477.435000px;}
.y1b1{bottom:477.795000px;}
.y1c9{bottom:482.835000px;}
.y3e{bottom:485.175000px;}
.ya3{bottom:493.995000px;}
.y68{bottom:494.895000px;}
.y110{bottom:495.975000px;}
.ye5{bottom:498.135000px;}
.y1e0{bottom:501.915000px;}
.y196{bottom:503.715000px;}
.y81{bottom:505.155000px;}
.y8a{bottom:506.775000px;}
.yb0{bottom:507.135000px;}
.y1f4{bottom:507.675000px;}
.y1b0{bottom:508.935000px;}
.y162{bottom:511.275000px;}
.y1c8{bottom:513.795000px;}
.y10f{bottom:517.395000px;}
.y51{bottom:518.835000px;}
.y1b{bottom:520.455000px;}
.y1d6{bottom:520.995000px;}
.yda{bottom:526.215000px;}
.y3d{bottom:526.575000px;}
.ye4{bottom:529.095000px;}
.y143{bottom:531.255000px;}
.y1df{bottom:532.875000px;}
.ya2{bottom:535.395000px;}
.y183{bottom:536.295000px;}
.y1f3{bottom:538.815000px;}
.y10e{bottom:538.995000px;}
.y1a{bottom:541.155000px;}
.y1c7{bottom:544.935000px;}
.y80{bottom:546.555000px;}
.y67{bottom:548.175000px;}
.yb4{bottom:549.435000px;}
.y1af{bottom:551.955000px;}
.y161{bottom:552.675000px;}
.y195{bottom:554.835000px;}
.y50{bottom:560.235000px;}
.y103{bottom:560.415000px;}
.y19{bottom:563.115000px;}
.y1de{bottom:564.015000px;}
.yd9{bottom:567.645000px;}
.y3c{bottom:568.005000px;}
.y142{bottom:572.685000px;}
.y1c6{bottom:575.925000px;}
.ya1{bottom:576.825000px;}
.y10a{bottom:581.865000px;}
.y1ae{bottom:582.945000px;}
.y18{bottom:585.105000px;}
.y66{bottom:589.605000px;}
.yb3{bottom:591.585000px;}
.y194{bottom:592.845000px;}
.y160{bottom:594.105000px;}
.y7f{bottom:600.045000px;}
.y4f{bottom:601.665000px;}
.y109{bottom:603.285000px;}
.y1dd{bottom:607.065000px;}
.y17{bottom:607.245000px;}
.yd8{bottom:609.045000px;}
.y3b{bottom:609.405000px;}
.y1f2{bottom:613.005000px;}
.y141{bottom:614.085000px;}
.ya0{bottom:618.225000px;}
.y1c5{bottom:618.945000px;}
.y200{bottom:626.145000px;}
.y107{bottom:628.665000px;}
.y16{bottom:629.205000px;}
.y65{bottom:631.005000px;}
.yb2{bottom:633.705000px;}
.y15f{bottom:635.505000px;}
.y1dc{bottom:638.025000px;}
.y7e{bottom:641.445000px;}
.y193{bottom:642.705000px;}
.y4e{bottom:643.065000px;}
.y1f1{bottom:643.965000px;}
.y1d5{bottom:645.045000px;}
.y1c4{bottom:650.085000px;}
.yd7{bottom:650.445000px;}
.y3a{bottom:650.805000px;}
.y15{bottom:651.165000px;}
.y106{bottom:654.225000px;}
.y140{bottom:655.485000px;}
.y1ad{bottom:657.105000px;}
.y9f{bottom:659.625000px;}
.y1db{bottom:669.165000px;}
.y64{bottom:672.405000px;}
.yac{bottom:675.825000px;}
.y15e{bottom:676.905000px;}
.y105{bottom:677.625000px;}
.y192{bottom:680.685000px;}
.y1c3{bottom:681.045000px;}
.y7d{bottom:682.845000px;}
.y4d{bottom:684.465000px;}
.y1f0{bottom:687.165000px;}
.y1ac{bottom:688.245000px;}
.yd6{bottom:691.845000px;}
.y39{bottom:692.205000px;}
.y14{bottom:693.105000px;}
.y13f{bottom:696.885000px;}
.yfb{bottom:699.045000px;}
.y9e{bottom:702.645000px;}
.y1c2{bottom:712.185000px;}
.y63{bottom:713.805000px;}
.yaf{bottom:717.945000px;}
.y15d{bottom:718.305000px;}
.y191{bottom:718.665000px;}
.y1ab{bottom:719.205000px;}
.y101{bottom:720.465000px;}
.y7c{bottom:724.245000px;}
.y4c{bottom:725.865000px;}
.y13{bottom:729.645000px;}
.y1ff{bottom:731.265000px;}
.yd5{bottom:733.245000px;}
.y38{bottom:733.605000px;}
.y9d{bottom:733.785000px;}
.y13e{bottom:738.285000px;}
.y1c1{bottom:743.145000px;}
.yff{bottom:744.585000px;}
.y1ef{bottom:749.805000px;}
.y1d4{bottom:750.345000px;}
.y62{bottom:755.205000px;}
.y190{bottom:756.645000px;}
.y15c{bottom:759.705000px;}
.yae{bottom:760.065000px;}
.y1aa{bottom:762.225000px;}
.y12{bottom:762.765000px;}
.y7b{bottom:765.645000px;}
.y4b{bottom:767.265000px;}
.yfe{bottom:771.585000px;}
.y1c0{bottom:774.285000px;}
.yd4{bottom:774.645000px;}
.y37{bottom:775.005000px;}
.y9c{bottom:776.805000px;}
.y13d{bottom:779.685000px;}
.y11{bottom:785.085000px;}
.y1ee{bottom:792.825000px;}
.yfd{bottom:793.185000px;}
.y1a9{bottom:793.365000px;}
.y9a{bottom:794.265000px;}
.y18f{bottom:794.625000px;}
.y61{bottom:796.605000px;}
.y15b{bottom:801.105000px;}
.yab{bottom:802.185000px;}
.y1bf{bottom:805.245000px;}
.y7a{bottom:807.045000px;}
.y4a{bottom:808.665000px;}
.yf6{bottom:814.605000px;}
.yd3{bottom:816.045000px;}
.y36{bottom:816.405000px;}
.y10{bottom:819.465000px;}
.y13c{bottom:821.085000px;}
.y1ed{bottom:823.785000px;}
.y1a8{bottom:824.325000px;}
.yfa{bottom:836.025000px;}
.y1be{bottom:836.385000px;}
.y60{bottom:838.005000px;}
.y15a{bottom:842.505000px;}
.y18e{bottom:844.485000px;}
.y79{bottom:848.490000px;}
.y49{bottom:850.110000px;}
.yf{bottom:853.890000px;}
.y1ec{bottom:854.970000px;}
.y1d3{bottom:855.510000px;}
.yd2{bottom:857.490000px;}
.y35{bottom:857.850000px;}
.y13b{bottom:862.530000px;}
.y1a7{bottom:867.390000px;}
.y98{bottom:869.190000px;}
.ye{bottom:876.210000px;}
.yf9{bottom:878.910000px;}
.y5f{bottom:879.450000px;}
.y18d{bottom:882.510000px;}
.y159{bottom:883.950000px;}
.y78{bottom:889.890000px;}
.y48{bottom:891.510000px;}
.y1eb{bottom:897.990000px;}
.yd{bottom:898.530000px;}
.yd1{bottom:898.890000px;}
.y34{bottom:899.250000px;}
.yf8{bottom:900.330000px;}
.y13a{bottom:903.930000px;}
.y158{bottom:904.650000px;}
.y18c{bottom:920.490000px;}
.y5e{bottom:920.850000px;}
.yf4{bottom:921.930000px;}
.y157{bottom:922.110000px;}
.y1ea{bottom:928.950000px;}
.y1a6{bottom:929.490000px;}
.y77{bottom:931.290000px;}
.yc{bottom:932.910000px;}
.yd0{bottom:940.290000px;}
.y33{bottom:940.650000px;}
.y1da{bottom:941.550000px;}
.y97{bottom:944.070000px;}
.yf3{bottom:944.970000px;}
.y139{bottom:945.330000px;}
.yb{bottom:953.610000px;}
.y18b{bottom:958.470000px;}
.y1bd{bottom:960.630000px;}
.y5d{bottom:962.250000px;}
.yf0{bottom:966.390000px;}
.y76{bottom:972.510000px;}
.ya{bottom:974.310000px;}
.y138{bottom:976.290000px;}
.ycf{bottom:981.510000px;}
.y32{bottom:982.050000px;}
.yf2{bottom:987.810000px;}
.y133{bottom:993.750000px;}
.y18a{bottom:996.270000px;}
.y156{bottom:1000.230000px;}
.y9{bottom:1001.850000px;}
.y5c{bottom:1003.650000px;}
.yef{bottom:1009.230000px;}
.y75{bottom:1013.910000px;}
.y8{bottom:1015.710000px;}
.y137{bottom:1017.150000px;}
.y94{bottom:1018.950000px;}
.yce{bottom:1022.910000px;}
.y31{bottom:1023.450000px;}
.y1a5{bottom:1034.610000px;}
.y7{bottom:1036.410000px;}
.y136{bottom:1040.370000px;}
.y74{bottom:1045.050000px;}
.y189{bottom:1046.310000px;}
.ycd{bottom:1054.050000px;}
.y30{bottom:1054.410000px;}
.y6{bottom:1057.110000px;}
.y130{bottom:1063.590000px;}
.yc8{bottom:1071.510000px;}
.y1a4{bottom:1077.810000px;}
.y154{bottom:1078.350000px;}
.y5{bottom:1079.070000px;}
.y132{bottom:1086.810000px;}
.y2f{bottom:1088.070000px;}
.ycc{bottom:1092.930000px;}
.y90{bottom:1093.650000px;}
.y47{bottom:1098.510000px;}
.y4{bottom:1106.610000px;}
.y1a3{bottom:1108.770000px;}
.y131{bottom:1110.030000px;}
.y2e{bottom:1120.650000px;}
.y12f{bottom:1133.280000px;}
.y3{bottom:1134.360000px;}
.ycb{bottom:1135.080000px;}
.y46{bottom:1139.940000px;}
.y2d{bottom:1141.200000px;}
.y1{bottom:1192.860000px;}
.h14{height:20.700000px;}
.h1e{height:20.736000px;}
.h1c{height:22.320000px;}
.hf{height:22.500000px;}
.h29{height:22.536000px;}
.h21{height:23.400000px;}
.h23{height:24.660000px;}
.h20{height:26.280000px;}
.h6{height:36.768867px;}
.h16{height:41.400000px;}
.h18{height:41.436000px;}
.h1b{height:42.120000px;}
.h26{height:50.800781px;}
.h25{height:54.000000px;}
.h2{height:60.855469px;}
.h10{height:62.136000px;}
.he{height:64.546875px;}
.h9{height:65.010937px;}
.hc{height:66.757500px;}
.h4{height:67.565039px;}
.h27{height:68.940000px;}
.h2a{height:68.976000px;}
.h2b{height:69.120000px;}
.h5{height:70.664062px;}
.h7{height:71.824219px;}
.h8{height:72.562500px;}
.h11{height:73.980000px;}
.hb{height:74.004654px;}
.h12{height:74.160000px;}
.h13{height:74.196000px;}
.hd{height:74.953125px;}
.h2f{height:75.482227px;}
.h2d{height:77.400000px;}
.h2e{height:77.436000px;}
.h19{height:84.240000px;}
.h1a{height:84.276000px;}
.ha{height:84.898125px;}
.h28{height:92.376000px;}
.h3{height:96.508125px;}
.h1d{height:106.416000px;}
.h30{height:106.560000px;}
.h1f{height:114.840000px;}
.h15{height:125.640000px;}
.h22{height:137.916000px;}
.h17{height:167.970000px;}
.h24{height:182.700000px;}
.h2c{height:207.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:52.200000px;}
.w1b{width:61.560000px;}
.we{width:63.360000px;}
.w19{width:63.396000px;}
.wf{width:73.080000px;}
.wb{width:75.060000px;}
.w12{width:101.700000px;}
.w17{width:101.736000px;}
.w13{width:101.880000px;}
.w11{width:101.916000px;}
.w16{width:102.240000px;}
.w14{width:103.716000px;}
.w10{width:105.516000px;}
.w15{width:114.156000px;}
.wd{width:115.956000px;}
.w18{width:117.360000px;}
.wc{width:117.576000px;}
.w4{width:119.520000px;}
.w9{width:151.380000px;}
.w7{width:151.950000px;}
.w5{width:211.935000px;}
.w8{width:251.715000px;}
.wa{width:272.595000px;}
.w6{width:510.375000px;}
.w3{width:638.250000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.776000px;}
.x1{left:84.959987px;}
.x9{left:111.995987px;}
.x3{left:121.715987px;}
.xa{left:138.995987px;}
.x7{left:146.015987px;}
.x6{left:184.349987px;}
.x1b{left:190.290000px;}
.x15{left:192.090000px;}
.xe{left:238.530000px;}
.x16{left:294.915000px;}
.xd{left:298.515000px;}
.x1c{left:305.175000px;}
.x8{left:329.114987px;}
.x10{left:359.175000px;}
.x4{left:360.794987px;}
.x17{left:397.335000px;}
.x1d{left:408.135000px;}
.x11{left:434.955000px;}
.x5{left:451.694987px;}
.x2{left:459.974987px;}
.xf{left:491.145000px;}
.x18{left:500.145000px;}
.x1e{left:510.585000px;}
.x12{left:553.245000px;}
.x19{left:602.745000px;}
.x1f{left:628.665000px;}
.x13{left:669.930000px;}
.x20{left:692.790000px;}
.x1a{left:705.390000px;}
.xc{left:724.830000px;}
.x14{left:734.190000px;}
.x21{left:745.710000px;}
@media print{
.v4{vertical-align:-93.440000pt;}
.v3{vertical-align:-75.520000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-2.560000pt;}
.ls15{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls8{letter-spacing:7.813120pt;}
.ls7{letter-spacing:30.208000pt;}
.ls3{letter-spacing:48.768000pt;}
.lsa{letter-spacing:124.800000pt;}
.ls4{letter-spacing:241.920000pt;}
.ls2{letter-spacing:886.400000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsd{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.306880pt;}
.ws0{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._32{margin-left:-13.445120pt;}
._1d{margin-left:-8.204800pt;}
._1c{margin-left:-7.168000pt;}
._1e{margin-left:-5.873920pt;}
._18{margin-left:-4.762880pt;}
._2{margin-left:-3.685120pt;}
._b{margin-left:-2.147413pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.943787pt;}
._4{width:1.856000pt;}
._9{width:2.854827pt;}
._6{width:4.180480pt;}
._5{width:5.240320pt;}
._12{width:6.182400pt;}
._a{width:7.112960pt;}
._3{width:8.128000pt;}
._8{width:9.479680pt;}
._7{width:10.414933pt;}
._d{width:11.882667pt;}
._c{width:12.800000pt;}
._e{width:13.696000pt;}
._f{width:14.682880pt;}
._22{width:15.741013pt;}
._15{width:16.890880pt;}
._14{width:17.792000pt;}
._16{width:18.752000pt;}
._17{width:19.712000pt;}
._19{width:20.608000pt;}
._13{width:22.336000pt;}
._10{width:24.000000pt;}
._11{width:24.976213pt;}
._1b{width:25.968213pt;}
._1a{width:27.247787pt;}
._21{width:28.672000pt;}
._2f{width:29.659307pt;}
._35{width:30.720000pt;}
._36{width:31.872000pt;}
._38{width:36.048213pt;}
._26{width:42.368000pt;}
._25{width:43.584000pt;}
._2b{width:45.120000pt;}
._2c{width:46.080000pt;}
._29{width:55.872000pt;}
._2a{width:56.896000pt;}
._39{width:63.872000pt;}
._2d{width:70.912000pt;}
._2e{width:71.915093pt;}
._20{width:79.808000pt;}
._1f{width:80.704000pt;}
._23{width:88.320000pt;}
._24{width:89.792000pt;}
._3b{width:91.392000pt;}
._30{width:95.552000pt;}
._31{width:96.448000pt;}
._34{width:99.994880pt;}
._33{width:101.248000pt;}
._37{width:114.304000pt;}
._3a{width:122.816000pt;}
._27{width:144.512000pt;}
._28{width:145.536000pt;}
._3c{width:192.448000pt;}
._3d{width:193.472000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:3.514667pt;}
.y93{bottom:3.520000pt;}
.yf5{bottom:4.960000pt;}
.y12d{bottom:5.114667pt;}
.y8f{bottom:5.120000pt;}
.y102{bottom:5.920000pt;}
.y108{bottom:7.040000pt;}
.y100{bottom:8.480000pt;}
.yc5{bottom:21.914667pt;}
.y92{bottom:21.920000pt;}
.yb5{bottom:21.946667pt;}
.y16d{bottom:21.960000pt;}
.yf1{bottom:22.560000pt;}
.y96{bottom:23.360000pt;}
.y127{bottom:28.000000pt;}
.y135{bottom:28.160000pt;}
.y114{bottom:33.120000pt;}
.y153{bottom:37.914667pt;}
.y150{bottom:37.920000pt;}
.y14c{bottom:40.320000pt;}
.y91{bottom:40.346667pt;}
.yc2{bottom:41.594667pt;}
.yca{bottom:41.600000pt;}
.y12b{bottom:46.394667pt;}
.y11f{bottom:46.400000pt;}
.y134{bottom:46.560000pt;}
.y95{bottom:50.880000pt;}
.y99{bottom:51.040000pt;}
.y9b{bottom:51.080000pt;}
.y2{bottom:51.552000pt;}
.y152{bottom:53.914667pt;}
.y14f{bottom:53.920000pt;}
.y155{bottom:53.946667pt;}
.y14b{bottom:58.720000pt;}
.yc1{bottom:59.994667pt;}
.yc9{bottom:60.026667pt;}
.y122{bottom:67.240000pt;}
.y14a{bottom:77.120000pt;}
.yb7{bottom:78.400000pt;}
.yf7{bottom:79.720000pt;}
.y170{bottom:79.840000pt;}
.y17b{bottom:82.432000pt;}
.y16b{bottom:86.432000pt;}
.y12a{bottom:87.072000pt;}
.yfc{bottom:87.200000pt;}
.ye3{bottom:87.552000pt;}
.y175{bottom:88.512000pt;}
.y1bc{bottom:89.152000pt;}
.y5b{bottom:93.152000pt;}
.yc7{bottom:93.952000pt;}
.y1a2{bottom:95.232000pt;}
.y149{bottom:95.520000pt;}
.yad{bottom:96.800000pt;}
.y188{bottom:97.952000pt;}
.y8e{bottom:101.312000pt;}
.y174{bottom:106.912000pt;}
.y151{bottom:107.552000pt;}
.y104{bottom:107.706667pt;}
.y12e{bottom:107.712000pt;}
.y11b{bottom:107.872000pt;}
.y71{bottom:108.672000pt;}
.yee{bottom:111.552000pt;}
.yc0{bottom:112.992000pt;}
.y148{bottom:113.920000pt;}
.ybc{bottom:116.040000pt;}
.y1bb{bottom:116.832000pt;}
.y17a{bottom:119.232000pt;}
.y1a1{bottom:122.752000pt;}
.y16a{bottom:123.232000pt;}
.y2c{bottom:124.352000pt;}
.y173{bottom:125.312000pt;}
.y1d9{bottom:127.392000pt;}
.y12c{bottom:128.352000pt;}
.y10d{bottom:129.120000pt;}
.y5a{bottom:129.952000pt;}
.yc4{bottom:132.032000pt;}
.y147{bottom:132.320000pt;}
.y89{bottom:133.312000pt;}
.yb1{bottom:134.426667pt;}
.ybb{bottom:134.440000pt;}
.y8d{bottom:134.746667pt;}
.y182{bottom:139.226667pt;}
.y16f{bottom:140.826667pt;}
.y2b{bottom:142.586667pt;}
.y1fe{bottom:143.386667pt;}
.y1ba{bottom:144.346667pt;}
.y11a{bottom:144.666667pt;}
.y70{bottom:145.466667pt;}
.y10c{bottom:147.520000pt;}
.yed{bottom:148.346667pt;}
.y126{bottom:149.146667pt;}
.y1a0{bottom:150.426667pt;}
.y146{bottom:150.720000pt;}
.y1d8{bottom:155.066667pt;}
.y179{bottom:156.026667pt;}
.y1d2{bottom:159.386667pt;}
.y172{bottom:159.866667pt;}
.y169{bottom:160.026667pt;}
.yaa{bottom:160.186667pt;}
.y2a{bottom:160.826667pt;}
.ye2{bottom:161.146667pt;}
.y45{bottom:162.906667pt;}
.y1e9{bottom:165.626667pt;}
.y59{bottom:166.746667pt;}
.y145{bottom:169.120000pt;}
.yc3{bottom:169.466667pt;}
.y129{bottom:169.786667pt;}
.y88{bottom:170.106667pt;}
.y1fd{bottom:170.906667pt;}
.y187{bottom:171.546667pt;}
.y202{bottom:171.866667pt;}
.y181{bottom:176.026667pt;}
.y14e{bottom:177.146667pt;}
.y19f{bottom:177.946667pt;}
.y29{bottom:178.906667pt;}
.y119{bottom:181.466667pt;}
.y6f{bottom:182.266667pt;}
.y1b9{bottom:182.586667pt;}
.yec{bottom:185.146667pt;}
.y1d1{bottom:187.066667pt;}
.yba{bottom:188.506667pt;}
.y128{bottom:190.426667pt;}
.y178{bottom:192.826667pt;}
.y1e8{bottom:193.306667pt;}
.y168{bottom:196.826667pt;}
.ya9{bottom:196.986667pt;}
.y28{bottom:197.146667pt;}
.ye1{bottom:197.946667pt;}
.y171{bottom:198.106667pt;}
.y1fc{bottom:198.586667pt;}
.y44{bottom:199.706667pt;}
.y58{bottom:203.546667pt;}
.y87{bottom:206.906667pt;}
.y186{bottom:208.346667pt;}
.y1b8{bottom:210.266667pt;}
.y121{bottom:211.066667pt;}
.y180{bottom:212.826667pt;}
.y1d0{bottom:214.586667pt;}
.y27{bottom:215.386667pt;}
.y19e{bottom:216.186667pt;}
.y16e{bottom:217.146667pt;}
.y118{bottom:218.266667pt;}
.y6e{bottom:219.066667pt;}
.y1e7{bottom:220.826667pt;}
.yeb{bottom:221.946667pt;}
.ye0{bottom:225.466667pt;}
.ybf{bottom:225.946667pt;}
.y177{bottom:229.626667pt;}
.y125{bottom:231.706667pt;}
.y26{bottom:233.626667pt;}
.y16c{bottom:236.186667pt;}
.y43{bottom:236.506667pt;}
.y1fb{bottom:236.826667pt;}
.y1b7{bottom:237.786667pt;}
.y57{bottom:240.346667pt;}
.y19d{bottom:243.866667pt;}
.ya8{bottom:244.506667pt;}
.y185{bottom:245.146667pt;}
.y14d{bottom:246.586667pt;}
.y17f{bottom:249.466667pt;}
.y25{bottom:251.746667pt;}
.y124{bottom:252.386667pt;}
.y1cf{bottom:252.866667pt;}
.y86{bottom:254.306667pt;}
.y117{bottom:255.106667pt;}
.y6d{bottom:255.906667pt;}
.yea{bottom:258.786667pt;}
.y1e6{bottom:259.106667pt;}
.ybe{bottom:263.586667pt;}
.y1fa{bottom:264.386667pt;}
.y1b6{bottom:265.506667pt;}
.y144{bottom:265.666667pt;}
.y176{bottom:266.466667pt;}
.y24{bottom:269.986667pt;}
.y167{bottom:270.466667pt;}
.y19c{bottom:271.426667pt;}
.ydf{bottom:273.026667pt;}
.y123{bottom:273.186667pt;}
.y201{bottom:276.066667pt;}
.y56{bottom:277.186667pt;}
.y1ce{bottom:280.546667pt;}
.ya7{bottom:281.346667pt;}
.y184{bottom:281.986667pt;}
.y42{bottom:284.066667pt;}
.y17e{bottom:286.306667pt;}
.y1e5{bottom:286.786667pt;}
.y23{bottom:288.226667pt;}
.y85{bottom:291.106667pt;}
.y116{bottom:291.906667pt;}
.y1f9{bottom:292.066667pt;}
.y6c{bottom:292.706667pt;}
.y11e{bottom:293.826667pt;}
.ye9{bottom:295.586667pt;}
.y19b{bottom:299.106667pt;}
.ybd{bottom:301.026667pt;}
.y8c{bottom:303.266667pt;}
.y1b5{bottom:303.746667pt;}
.y22{bottom:306.466667pt;}
.y166{bottom:307.266667pt;}
.yde{bottom:309.826667pt;}
.y55{bottom:313.986667pt;}
.y1e4{bottom:314.306667pt;}
.y120{bottom:314.466667pt;}
.y1cd{bottom:318.786667pt;}
.y115{bottom:319.426667pt;}
.y41{bottom:320.866667pt;}
.y17d{bottom:323.106667pt;}
.y21{bottom:324.546667pt;}
.y84{bottom:327.906667pt;}
.ya6{bottom:328.706667pt;}
.y6b{bottom:329.506667pt;}
.y1f8{bottom:330.306667pt;}
.y1b4{bottom:331.266667pt;}
.ye8{bottom:332.386667pt;}
.y10b{bottom:335.106667pt;}
.y19a{bottom:337.346667pt;}
.yb6{bottom:338.466667pt;}
.y73{bottom:340.066667pt;}
.y20{bottom:342.786667pt;}
.y165{bottom:344.066667pt;}
.y1cc{bottom:346.306667pt;}
.ydd{bottom:346.626667pt;}
.y54{bottom:350.786667pt;}
.y1e3{bottom:352.706667pt;}
.y11d{bottom:355.746667pt;}
.y40{bottom:357.666667pt;}
.y1f7{bottom:357.826667pt;}
.y1b3{bottom:358.946667pt;}
.y17c{bottom:359.906667pt;}
.y1f{bottom:361.026667pt;}
.y199{bottom:364.866667pt;}
.ya5{bottom:365.506667pt;}
.y6a{bottom:366.306667pt;}
.ye7{bottom:369.186667pt;}
.y1d7{bottom:369.506667pt;}
.y1cb{bottom:373.986667pt;}
.y83{bottom:375.426667pt;}
.yb9{bottom:375.906667pt;}
.y72{bottom:376.866667pt;}
.y1e{bottom:377.986667pt;}
.y1e2{bottom:380.226667pt;}
.y164{bottom:380.866667pt;}
.ydc{bottom:383.426667pt;}
.y113{bottom:383.746667pt;}
.y1f6{bottom:385.506667pt;}
.y53{bottom:387.586667pt;}
.y198{bottom:392.546667pt;}
.y3f{bottom:394.466667pt;}
.y1d{bottom:395.106667pt;}
.y11c{bottom:396.706667pt;}
.y1b2{bottom:397.186667pt;}
.y1ca{bottom:401.506667pt;}
.ya4{bottom:402.306667pt;}
.y112{bottom:402.786667pt;}
.y69{bottom:403.106667pt;}
.ye6{bottom:405.986667pt;}
.y1e1{bottom:407.906667pt;}
.y82{bottom:412.226667pt;}
.yb8{bottom:413.346667pt;}
.y8b{bottom:413.666667pt;}
.y1c{bottom:414.786667pt;}
.y163{bottom:417.666667pt;}
.y197{bottom:420.066667pt;}
.ydb{bottom:420.226667pt;}
.y111{bottom:421.826667pt;}
.y1f5{bottom:423.746667pt;}
.y52{bottom:424.386667pt;}
.y1b1{bottom:424.706667pt;}
.y1c9{bottom:429.186667pt;}
.y3e{bottom:431.266667pt;}
.ya3{bottom:439.106667pt;}
.y68{bottom:439.906667pt;}
.y110{bottom:440.866667pt;}
.ye5{bottom:442.786667pt;}
.y1e0{bottom:446.146667pt;}
.y196{bottom:447.746667pt;}
.y81{bottom:449.026667pt;}
.y8a{bottom:450.466667pt;}
.yb0{bottom:450.786667pt;}
.y1f4{bottom:451.266667pt;}
.y1b0{bottom:452.386667pt;}
.y162{bottom:454.466667pt;}
.y1c8{bottom:456.706667pt;}
.y10f{bottom:459.906667pt;}
.y51{bottom:461.186667pt;}
.y1b{bottom:462.626667pt;}
.y1d6{bottom:463.106667pt;}
.yda{bottom:467.746667pt;}
.y3d{bottom:468.066667pt;}
.ye4{bottom:470.306667pt;}
.y143{bottom:472.226667pt;}
.y1df{bottom:473.666667pt;}
.ya2{bottom:475.906667pt;}
.y183{bottom:476.706667pt;}
.y1f3{bottom:478.946667pt;}
.y10e{bottom:479.106667pt;}
.y1a{bottom:481.026667pt;}
.y1c7{bottom:484.386667pt;}
.y80{bottom:485.826667pt;}
.y67{bottom:487.266667pt;}
.yb4{bottom:488.386667pt;}
.y1af{bottom:490.626667pt;}
.y161{bottom:491.266667pt;}
.y195{bottom:493.186667pt;}
.y50{bottom:497.986667pt;}
.y103{bottom:498.146667pt;}
.y19{bottom:500.546667pt;}
.y1de{bottom:501.346667pt;}
.yd9{bottom:504.573333pt;}
.y3c{bottom:504.893333pt;}
.y142{bottom:509.053333pt;}
.y1c6{bottom:511.933333pt;}
.ya1{bottom:512.733333pt;}
.y10a{bottom:517.213333pt;}
.y1ae{bottom:518.173333pt;}
.y18{bottom:520.093333pt;}
.y66{bottom:524.093333pt;}
.yb3{bottom:525.853333pt;}
.y194{bottom:526.973333pt;}
.y160{bottom:528.093333pt;}
.y7f{bottom:533.373333pt;}
.y4f{bottom:534.813333pt;}
.y109{bottom:536.253333pt;}
.y1dd{bottom:539.613333pt;}
.y17{bottom:539.773333pt;}
.yd8{bottom:541.373333pt;}
.y3b{bottom:541.693333pt;}
.y1f2{bottom:544.893333pt;}
.y141{bottom:545.853333pt;}
.ya0{bottom:549.533333pt;}
.y1c5{bottom:550.173333pt;}
.y200{bottom:556.573333pt;}
.y107{bottom:558.813333pt;}
.y16{bottom:559.293333pt;}
.y65{bottom:560.893333pt;}
.yb2{bottom:563.293333pt;}
.y15f{bottom:564.893333pt;}
.y1dc{bottom:567.133333pt;}
.y7e{bottom:570.173333pt;}
.y193{bottom:571.293333pt;}
.y4e{bottom:571.613333pt;}
.y1f1{bottom:572.413333pt;}
.y1d5{bottom:573.373333pt;}
.y1c4{bottom:577.853333pt;}
.yd7{bottom:578.173333pt;}
.y3a{bottom:578.493333pt;}
.y15{bottom:578.813333pt;}
.y106{bottom:581.533333pt;}
.y140{bottom:582.653333pt;}
.y1ad{bottom:584.093333pt;}
.y9f{bottom:586.333333pt;}
.y1db{bottom:594.813333pt;}
.y64{bottom:597.693333pt;}
.yac{bottom:600.733333pt;}
.y15e{bottom:601.693333pt;}
.y105{bottom:602.333333pt;}
.y192{bottom:605.053333pt;}
.y1c3{bottom:605.373333pt;}
.y7d{bottom:606.973333pt;}
.y4d{bottom:608.413333pt;}
.y1f0{bottom:610.813333pt;}
.y1ac{bottom:611.773333pt;}
.yd6{bottom:614.973333pt;}
.y39{bottom:615.293333pt;}
.y14{bottom:616.093333pt;}
.y13f{bottom:619.453333pt;}
.yfb{bottom:621.373333pt;}
.y9e{bottom:624.573333pt;}
.y1c2{bottom:633.053333pt;}
.y63{bottom:634.493333pt;}
.yaf{bottom:638.173333pt;}
.y15d{bottom:638.493333pt;}
.y191{bottom:638.813333pt;}
.y1ab{bottom:639.293333pt;}
.y101{bottom:640.413333pt;}
.y7c{bottom:643.773333pt;}
.y4c{bottom:645.213333pt;}
.y13{bottom:648.573333pt;}
.y1ff{bottom:650.013333pt;}
.yd5{bottom:651.773333pt;}
.y38{bottom:652.093333pt;}
.y9d{bottom:652.253333pt;}
.y13e{bottom:656.253333pt;}
.y1c1{bottom:660.573333pt;}
.yff{bottom:661.853333pt;}
.y1ef{bottom:666.493333pt;}
.y1d4{bottom:666.973333pt;}
.y62{bottom:671.293333pt;}
.y190{bottom:672.573333pt;}
.y15c{bottom:675.293333pt;}
.yae{bottom:675.613333pt;}
.y1aa{bottom:677.533333pt;}
.y12{bottom:678.013333pt;}
.y7b{bottom:680.573333pt;}
.y4b{bottom:682.013333pt;}
.yfe{bottom:685.853333pt;}
.y1c0{bottom:688.253333pt;}
.yd4{bottom:688.573333pt;}
.y37{bottom:688.893333pt;}
.y9c{bottom:690.493333pt;}
.y13d{bottom:693.053333pt;}
.y11{bottom:697.853333pt;}
.y1ee{bottom:704.733333pt;}
.yfd{bottom:705.053333pt;}
.y1a9{bottom:705.213333pt;}
.y9a{bottom:706.013333pt;}
.y18f{bottom:706.333333pt;}
.y61{bottom:708.093333pt;}
.y15b{bottom:712.093333pt;}
.yab{bottom:713.053333pt;}
.y1bf{bottom:715.773333pt;}
.y7a{bottom:717.373333pt;}
.y4a{bottom:718.813333pt;}
.yf6{bottom:724.093333pt;}
.yd3{bottom:725.373333pt;}
.y36{bottom:725.693333pt;}
.y10{bottom:728.413333pt;}
.y13c{bottom:729.853333pt;}
.y1ed{bottom:732.253333pt;}
.y1a8{bottom:732.733333pt;}
.yfa{bottom:743.133333pt;}
.y1be{bottom:743.453333pt;}
.y60{bottom:744.893333pt;}
.y15a{bottom:748.893333pt;}
.y18e{bottom:750.653333pt;}
.y79{bottom:754.213333pt;}
.y49{bottom:755.653333pt;}
.yf{bottom:759.013333pt;}
.y1ec{bottom:759.973333pt;}
.y1d3{bottom:760.453333pt;}
.yd2{bottom:762.213333pt;}
.y35{bottom:762.533333pt;}
.y13b{bottom:766.693333pt;}
.y1a7{bottom:771.013333pt;}
.y98{bottom:772.613333pt;}
.ye{bottom:778.853333pt;}
.yf9{bottom:781.253333pt;}
.y5f{bottom:781.733333pt;}
.y18d{bottom:784.453333pt;}
.y159{bottom:785.733333pt;}
.y78{bottom:791.013333pt;}
.y48{bottom:792.453333pt;}
.y1eb{bottom:798.213333pt;}
.yd{bottom:798.693333pt;}
.yd1{bottom:799.013333pt;}
.y34{bottom:799.333333pt;}
.yf8{bottom:800.293333pt;}
.y13a{bottom:803.493333pt;}
.y158{bottom:804.133333pt;}
.y18c{bottom:818.213333pt;}
.y5e{bottom:818.533333pt;}
.yf4{bottom:819.493333pt;}
.y157{bottom:819.653333pt;}
.y1ea{bottom:825.733333pt;}
.y1a6{bottom:826.213333pt;}
.y77{bottom:827.813333pt;}
.yc{bottom:829.253333pt;}
.yd0{bottom:835.813333pt;}
.y33{bottom:836.133333pt;}
.y1da{bottom:836.933333pt;}
.y97{bottom:839.173333pt;}
.yf3{bottom:839.973333pt;}
.y139{bottom:840.293333pt;}
.yb{bottom:847.653333pt;}
.y18b{bottom:851.973333pt;}
.y1bd{bottom:853.893333pt;}
.y5d{bottom:855.333333pt;}
.yf0{bottom:859.013333pt;}
.y76{bottom:864.453333pt;}
.ya{bottom:866.053333pt;}
.y138{bottom:867.813333pt;}
.ycf{bottom:872.453333pt;}
.y32{bottom:872.933333pt;}
.yf2{bottom:878.053333pt;}
.y133{bottom:883.333333pt;}
.y18a{bottom:885.573333pt;}
.y156{bottom:889.093333pt;}
.y9{bottom:890.533333pt;}
.y5c{bottom:892.133333pt;}
.yef{bottom:897.093333pt;}
.y75{bottom:901.253333pt;}
.y8{bottom:902.853333pt;}
.y137{bottom:904.133333pt;}
.y94{bottom:905.733333pt;}
.yce{bottom:909.253333pt;}
.y31{bottom:909.733333pt;}
.y1a5{bottom:919.653333pt;}
.y7{bottom:921.253333pt;}
.y136{bottom:924.773333pt;}
.y74{bottom:928.933333pt;}
.y189{bottom:930.053333pt;}
.ycd{bottom:936.933333pt;}
.y30{bottom:937.253333pt;}
.y6{bottom:939.653333pt;}
.y130{bottom:945.413333pt;}
.yc8{bottom:952.453333pt;}
.y1a4{bottom:958.053333pt;}
.y154{bottom:958.533333pt;}
.y5{bottom:959.173333pt;}
.y132{bottom:966.053333pt;}
.y2f{bottom:967.173333pt;}
.ycc{bottom:971.493333pt;}
.y90{bottom:972.133333pt;}
.y47{bottom:976.453333pt;}
.y4{bottom:983.653333pt;}
.y1a3{bottom:985.573333pt;}
.y131{bottom:986.693333pt;}
.y2e{bottom:996.133333pt;}
.y12f{bottom:1007.360000pt;}
.y3{bottom:1008.320000pt;}
.ycb{bottom:1008.960000pt;}
.y46{bottom:1013.280000pt;}
.y2d{bottom:1014.400000pt;}
.y1{bottom:1060.320000pt;}
.h14{height:18.400000pt;}
.h1e{height:18.432000pt;}
.h1c{height:19.840000pt;}
.hf{height:20.000000pt;}
.h29{height:20.032000pt;}
.h21{height:20.800000pt;}
.h23{height:21.920000pt;}
.h20{height:23.360000pt;}
.h6{height:32.683437pt;}
.h16{height:36.800000pt;}
.h18{height:36.832000pt;}
.h1b{height:37.440000pt;}
.h26{height:45.156250pt;}
.h25{height:48.000000pt;}
.h2{height:54.093750pt;}
.h10{height:55.232000pt;}
.he{height:57.375000pt;}
.h9{height:57.787500pt;}
.hc{height:59.340000pt;}
.h4{height:60.057813pt;}
.h27{height:61.280000pt;}
.h2a{height:61.312000pt;}
.h2b{height:61.440000pt;}
.h5{height:62.812500pt;}
.h7{height:63.843750pt;}
.h8{height:64.500000pt;}
.h11{height:65.760000pt;}
.hb{height:65.781915pt;}
.h12{height:65.920000pt;}
.h13{height:65.952000pt;}
.hd{height:66.625000pt;}
.h2f{height:67.095313pt;}
.h2d{height:68.800000pt;}
.h2e{height:68.832000pt;}
.h19{height:74.880000pt;}
.h1a{height:74.912000pt;}
.ha{height:75.465000pt;}
.h28{height:82.112000pt;}
.h3{height:85.785000pt;}
.h1d{height:94.592000pt;}
.h30{height:94.720000pt;}
.h1f{height:102.080000pt;}
.h15{height:111.680000pt;}
.h22{height:122.592000pt;}
.h17{height:149.306667pt;}
.h24{height:162.400000pt;}
.h2c{height:184.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:46.400000pt;}
.w1b{width:54.720000pt;}
.we{width:56.320000pt;}
.w19{width:56.352000pt;}
.wf{width:64.960000pt;}
.wb{width:66.720000pt;}
.w12{width:90.400000pt;}
.w17{width:90.432000pt;}
.w13{width:90.560000pt;}
.w11{width:90.592000pt;}
.w16{width:90.880000pt;}
.w14{width:92.192000pt;}
.w10{width:93.792000pt;}
.w15{width:101.472000pt;}
.wd{width:103.072000pt;}
.w18{width:104.320000pt;}
.wc{width:104.512000pt;}
.w4{width:106.240000pt;}
.w9{width:134.560000pt;}
.w7{width:135.066667pt;}
.w5{width:188.386667pt;}
.w8{width:223.746667pt;}
.wa{width:242.306667pt;}
.w6{width:453.666667pt;}
.w3{width:567.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.912000pt;}
.x1{left:75.519988pt;}
.x9{left:99.551988pt;}
.x3{left:108.191988pt;}
.xa{left:123.551988pt;}
.x7{left:129.791988pt;}
.x6{left:163.866655pt;}
.x1b{left:169.146667pt;}
.x15{left:170.746667pt;}
.xe{left:212.026667pt;}
.x16{left:262.146667pt;}
.xd{left:265.346667pt;}
.x1c{left:271.266667pt;}
.x8{left:292.546655pt;}
.x10{left:319.266667pt;}
.x4{left:320.706655pt;}
.x17{left:353.186667pt;}
.x1d{left:362.786667pt;}
.x11{left:386.626667pt;}
.x5{left:401.506655pt;}
.x2{left:408.866655pt;}
.xf{left:436.573333pt;}
.x18{left:444.573333pt;}
.x1e{left:453.853333pt;}
.x12{left:491.773333pt;}
.x19{left:535.773333pt;}
.x1f{left:558.813333pt;}
.x13{left:595.493333pt;}
.x20{left:615.813333pt;}
.x1a{left:627.013333pt;}
.xc{left:644.293333pt;}
.x14{left:652.613333pt;}
.x21{left:662.853333pt;}
}




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