
    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_eaf194ada04081b8c3208686.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_4ce7859a4b85a8d6831922ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_87c48518bad246121827811b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_78e84dbe9cb79e906869dfa5.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_242ac1d36874d8924893708e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_b2440943632ee60d52224add.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e4e4c55eb29dc6d0c6475899.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_38fcd577916348d38d2f64d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-48.373800px;}
.v1{vertical-align:-7.086600px;}
.v4{vertical-align:-2.421000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:35.520000px;}
.ls1{letter-spacing:-6.696000px;}
.ls8{letter-spacing:-4.266000px;}
.ls7{letter-spacing:-1.152000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.009000px;}
.ls3{letter-spacing:0.009600px;}
.ls5{letter-spacing:0.012000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.ws27{word-spacing:-15.000000px;}
.ws6e{word-spacing:-13.500000px;}
.ws6d{word-spacing:-12.258000px;}
.ws34{word-spacing:-9.792000px;}
.ws4c{word-spacing:-4.248000px;}
.ws14{word-spacing:-3.960000px;}
.ws1{word-spacing:-3.888000px;}
.ws79{word-spacing:-3.600000px;}
.ws15{word-spacing:-3.456000px;}
.ws18{word-spacing:-3.312000px;}
.ws1f{word-spacing:-3.168000px;}
.ws26{word-spacing:-2.952000px;}
.ws59{word-spacing:-2.664000px;}
.ws5b{word-spacing:-2.520000px;}
.ws52{word-spacing:-2.448000px;}
.wse{word-spacing:-2.376000px;}
.ws78{word-spacing:-2.304000px;}
.wsd{word-spacing:-2.232000px;}
.ws66{word-spacing:-2.088000px;}
.ws45{word-spacing:-2.016000px;}
.ws22{word-spacing:-1.944000px;}
.ws11{word-spacing:-1.872000px;}
.ws4f{word-spacing:-1.728000px;}
.ws29{word-spacing:-1.656000px;}
.ws56{word-spacing:-1.584000px;}
.ws38{word-spacing:-1.512000px;}
.ws20{word-spacing:-1.440000px;}
.ws2e{word-spacing:-1.368000px;}
.ws50{word-spacing:-1.296000px;}
.ws4b{word-spacing:-1.224000px;}
.ws31{word-spacing:-1.152000px;}
.ws24{word-spacing:-1.080000px;}
.ws54{word-spacing:-1.008000px;}
.ws3e{word-spacing:-0.936000px;}
.ws33{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.792000px;}
.ws46{word-spacing:-0.720000px;}
.ws69{word-spacing:-0.648000px;}
.ws5{word-spacing:-0.576000px;}
.ws61{word-spacing:-0.432000px;}
.ws2d{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.216000px;}
.ws5d{word-spacing:-0.144000px;}
.ws36{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.072000px;}
.ws64{word-spacing:0.144000px;}
.ws6f{word-spacing:0.162000px;}
.ws75{word-spacing:0.216000px;}
.wsf{word-spacing:0.288000px;}
.ws6{word-spacing:0.360000px;}
.ws40{word-spacing:0.432000px;}
.ws25{word-spacing:0.576000px;}
.ws12{word-spacing:0.648000px;}
.ws3d{word-spacing:0.792000px;}
.ws58{word-spacing:0.864000px;}
.ws1a{word-spacing:0.936000px;}
.ws1e{word-spacing:1.008000px;}
.ws8{word-spacing:1.080000px;}
.ws6a{word-spacing:1.152000px;}
.ws51{word-spacing:1.296000px;}
.ws21{word-spacing:1.368000px;}
.ws4d{word-spacing:1.440000px;}
.ws17{word-spacing:1.512000px;}
.wsb{word-spacing:1.584000px;}
.ws5f{word-spacing:1.656000px;}
.ws5c{word-spacing:1.728000px;}
.ws37{word-spacing:1.800000px;}
.ws48{word-spacing:1.872000px;}
.ws2a{word-spacing:2.016000px;}
.ws3{word-spacing:2.088000px;}
.ws4{word-spacing:2.160000px;}
.ws63{word-spacing:2.232000px;}
.ws4a{word-spacing:2.304000px;}
.ws65{word-spacing:2.376000px;}
.ws39{word-spacing:2.448000px;}
.ws3f{word-spacing:2.520000px;}
.ws30{word-spacing:2.592000px;}
.ws35{word-spacing:2.664000px;}
.ws7{word-spacing:2.880000px;}
.ws2c{word-spacing:2.952000px;}
.ws53{word-spacing:3.024000px;}
.ws1c{word-spacing:3.096000px;}
.ws5e{word-spacing:3.168000px;}
.ws16{word-spacing:3.240000px;}
.ws28{word-spacing:3.312000px;}
.ws32{word-spacing:3.384000px;}
.ws62{word-spacing:3.528000px;}
.ws49{word-spacing:3.600000px;}
.ws60{word-spacing:3.672000px;}
.ws76{word-spacing:3.744000px;}
.ws3c{word-spacing:3.888000px;}
.ws2{word-spacing:4.032000px;}
.ws2f{word-spacing:4.464000px;}
.ws42{word-spacing:4.608000px;}
.ws7b{word-spacing:4.680000px;}
.ws2b{word-spacing:4.752000px;}
.ws43{word-spacing:5.040000px;}
.ws57{word-spacing:5.112000px;}
.ws4e{word-spacing:5.256000px;}
.ws1d{word-spacing:5.400000px;}
.wsa{word-spacing:5.616000px;}
.ws68{word-spacing:5.760000px;}
.ws9{word-spacing:5.904000px;}
.ws13{word-spacing:6.408000px;}
.ws67{word-spacing:7.056000px;}
.ws47{word-spacing:7.344000px;}
.ws1b{word-spacing:7.704000px;}
.ws7a{word-spacing:7.776000px;}
.ws5a{word-spacing:8.208000px;}
.ws44{word-spacing:8.640000px;}
.ws55{word-spacing:8.856000px;}
.ws3a{word-spacing:9.144000px;}
.ws77{word-spacing:9.720000px;}
.ws3b{word-spacing:10.080000px;}
.ws7c{word-spacing:15.336000px;}
.ws6b{word-spacing:131.779800px;}
.ws6c{word-spacing:345.585000px;}
.ws72{word-spacing:476.810400px;}
.ws41{word-spacing:533.088000px;}
.ws71{word-spacing:586.394400px;}
.ws74{word-spacing:620.954400px;}
.ws73{word-spacing:637.370400px;}
.ws70{word-spacing:671.930400px;}
._14{margin-left:-2570.064600px;}
._11{margin-left:-18.059400px;}
._4{margin-left:-9.244800px;}
._8{margin-left:-8.078400px;}
._3{margin-left:-6.825600px;}
._6{margin-left:-5.731200px;}
._5{margin-left:-4.723200px;}
._e{margin-left:-3.693600px;}
._1{margin-left:-2.541600px;}
._0{margin-left:-1.303200px;}
._7{width:1.483200px;}
._d{width:2.574600px;}
._2{width:3.888000px;}
._10{width:5.126400px;}
._a{width:6.684600px;}
._9{width:7.819800px;}
._36{width:9.676800px;}
._37{width:23.436000px;}
._25{width:54.818400px;}
._b{width:58.020600px;}
._35{width:92.589600px;}
._26{width:96.866400px;}
._2a{width:102.986400px;}
._31{width:141.979200px;}
._28{width:154.970400px;}
._33{width:158.323200px;}
._30{width:163.406400px;}
._1f{width:164.906400px;}
._16{width:195.036000px;}
._19{width:205.903800px;}
._15{width:207.507600px;}
._17{width:218.255400px;}
._18{width:225.464400px;}
._1a{width:252.214800px;}
._2c{width:276.938400px;}
._27{width:278.882400px;}
._1b{width:306.637200px;}
._13{width:309.082200px;}
._1c{width:341.659800px;}
._2f{width:345.423000px;}
._1e{width:346.923000px;}
._23{width:352.898400px;}
._20{width:376.946400px;}
._2b{width:384.866400px;}
._24{width:388.826400px;}
._21{width:420.938400px;}
._2e{width:452.546400px;}
._12{width:515.968200px;}
._2d{width:604.510200px;}
._34{width:652.215000px;}
._29{width:653.715000px;}
._32{width:686.775000px;}
._22{width:688.275000px;}
._c{width:711.170400px;}
._f{width:786.066000px;}
._1d{width:1032.165600px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:48.567750px;}
.y2a{bottom:49.630650px;}
.yd3{bottom:49.630800px;}
.y1{bottom:49.843350px;}
.y11c{bottom:50.693700px;}
.yb8{bottom:51.756750px;}
.y1c8{bottom:55.158300px;}
.y99{bottom:85.254300px;}
.y68{bottom:87.849600px;}
.y11b{bottom:89.506200px;}
.y130{bottom:90.441600px;}
.y63{bottom:94.017150px;}
.y14f{bottom:96.020850px;}
.y46{bottom:96.592800px;}
.y150{bottom:98.539350px;}
.y158{bottom:100.559100px;}
.y12e{bottom:110.293650px;}
.y1c7{bottom:110.930550px;}
.y12f{bottom:112.041600px;}
.y102{bottom:123.931500px;}
.y86{bottom:124.519200px;}
.y116{bottom:124.773000px;}
.y62{bottom:126.417150px;}
.y151{bottom:130.500150px;}
.ye3{bottom:131.166600px;}
.ye1{bottom:132.465750px;}
.y178{bottom:133.235100px;}
.y5b{bottom:135.214950px;}
.yb7{bottom:136.798950px;}
.y1c6{bottom:143.330550px;}
.y1a7{bottom:148.754100px;}
.ye2{bottom:149.166600px;}
.ye0{bottom:150.465750px;}
.y101{bottom:156.331350px;}
.y85{bottom:156.919200px;}
.y115{bottom:157.173000px;}
.y65{bottom:159.734550px;}
.yb6{bottom:169.198950px;}
.y1c5{bottom:175.730550px;}
.y176{bottom:177.154650px;}
.y64{bottom:177.749250px;}
.y1a6{bottom:181.154250px;}
.y29{bottom:187.876950px;}
.y100{bottom:188.731350px;}
.y84{bottom:189.319200px;}
.ycf{bottom:189.336750px;}
.y114{bottom:189.573000px;}
.yb5{bottom:201.599100px;}
.yc1{bottom:201.903750px;}
.y1c4{bottom:208.130550px;}
.y1a5{bottom:213.554100px;}
.y159{bottom:215.112450px;}
.y175{bottom:216.839700px;}
.yff{bottom:221.131500px;}
.y83{bottom:221.719200px;}
.yce{bottom:221.736750px;}
.y113{bottom:221.973000px;}
.yb4{bottom:233.998950px;}
.yc0{bottom:234.303750px;}
.y1c3{bottom:240.530550px;}
.y174{bottom:241.925400px;}
.y1a4{bottom:245.954250px;}
.y28{bottom:252.676950px;}
.yfe{bottom:253.531350px;}
.y82{bottom:254.119200px;}
.ycd{bottom:254.136750px;}
.y112{bottom:254.373000px;}
.y173{bottom:263.525400px;}
.yb3{bottom:266.399100px;}
.ybf{bottom:266.703750px;}
.y1c2{bottom:272.930550px;}
.y157{bottom:274.246200px;}
.y1a3{bottom:278.354250px;}
.y27{bottom:285.076950px;}
.y81{bottom:286.519200px;}
.ycc{bottom:286.536750px;}
.y111{bottom:286.773000px;}
.y152{bottom:298.110300px;}
.yb2{bottom:298.798950px;}
.ybe{bottom:299.103750px;}
.y1c1{bottom:305.330550px;}
.y1a2{bottom:310.754100px;}
.yfd{bottom:318.331350px;}
.y80{bottom:318.919200px;}
.ycb{bottom:318.936750px;}
.yb1{bottom:331.198950px;}
.y1c0{bottom:337.730550px;}
.y44{bottom:338.736900px;}
.y1a1{bottom:343.154250px;}
.y26{bottom:349.876950px;}
.yfc{bottom:350.731350px;}
.y7f{bottom:351.319200px;}
.yca{bottom:351.336750px;}
.y110{bottom:351.573000px;}
.y97{bottom:351.618000px;}
.y15b{bottom:351.965250px;}
.y177{bottom:359.392500px;}
.yb0{bottom:363.599100px;}
.ybd{bottom:363.903750px;}
.y1bf{bottom:370.130550px;}
.y43{bottom:371.136900px;}
.y1a0{bottom:375.554100px;}
.y15a{bottom:377.547600px;}
.y25{bottom:382.276950px;}
.yfb{bottom:383.131500px;}
.y7e{bottom:383.719200px;}
.yc9{bottom:383.736750px;}
.y10f{bottom:383.973000px;}
.y96{bottom:384.018000px;}
.y12d{bottom:393.636900px;}
.yaf{bottom:395.998950px;}
.ybc{bottom:396.303750px;}
.y1be{bottom:402.530550px;}
.y172{bottom:403.335150px;}
.y42{bottom:403.536900px;}
.y19f{bottom:407.954250px;}
.y24{bottom:414.676950px;}
.yfa{bottom:415.531350px;}
.y7d{bottom:416.119200px;}
.y5a{bottom:416.136750px;}
.y10e{bottom:416.373000px;}
.y95{bottom:416.418000px;}
.y12c{bottom:426.036900px;}
.ybb{bottom:428.703750px;}
.y1bd{bottom:434.930550px;}
.y19e{bottom:440.354250px;}
.y171{bottom:443.020200px;}
.y23{bottom:447.076950px;}
.yf9{bottom:447.931350px;}
.y7c{bottom:448.519200px;}
.y59{bottom:448.536750px;}
.y10d{bottom:448.773000px;}
.y94{bottom:448.818000px;}
.yae{bottom:450.898950px;}
.y12b{bottom:458.436900px;}
.yba{bottom:461.103750px;}
.yd1{bottom:464.001150px;}
.y15{bottom:467.254350px;}
.y1bc{bottom:467.330550px;}
.yc{bottom:467.859750px;}
.y19d{bottom:472.754100px;}
.y45{bottom:474.427500px;}
.y15c{bottom:475.275600px;}
.y170{bottom:478.453200px;}
.y22{bottom:479.476950px;}
.yf8{bottom:480.331350px;}
.y58{bottom:480.936750px;}
.y10c{bottom:481.173000px;}
.y93{bottom:481.218000px;}
.yd2{bottom:481.986450px;}
.yd0{bottom:482.001150px;}
.yad{bottom:483.298950px;}
.ydf{bottom:484.959750px;}
.y12a{bottom:490.836900px;}
.yb9{bottom:493.503750px;}
.y153{bottom:495.993750px;}
.y1bb{bottom:499.730550px;}
.y19c{bottom:505.154250px;}
.y21{bottom:511.876950px;}
.y16f{bottom:512.469000px;}
.yf7{bottom:512.731500px;}
.y7b{bottom:513.319200px;}
.y57{bottom:513.336750px;}
.y92{bottom:513.618000px;}
.yac{bottom:515.698950px;}
.yde{bottom:517.359750px;}
.y61{bottom:523.236750px;}
.y129{bottom:523.236900px;}
.y39{bottom:525.733650px;}
.y14{bottom:532.054350px;}
.y1ba{bottom:532.130550px;}
.yb{bottom:532.659750px;}
.y19b{bottom:537.554100px;}
.yc3{bottom:540.522000px;}
.y20{bottom:544.276950px;}
.yf6{bottom:545.131500px;}
.y7a{bottom:545.719200px;}
.y67{bottom:545.736750px;}
.y10b{bottom:545.973000px;}
.y91{bottom:546.018000px;}
.yab{bottom:548.099100px;}
.y16e{bottom:549.319350px;}
.ydd{bottom:549.759750px;}
.y60{bottom:555.636750px;}
.y38{bottom:558.133650px;}
.yc2{bottom:560.293650px;}
.y1b9{bottom:564.530550px;}
.y154{bottom:567.221250px;}
.y19a{bottom:569.954250px;}
.yf5{bottom:577.531350px;}
.y79{bottom:578.119200px;}
.y56{bottom:578.136750px;}
.y10a{bottom:578.373000px;}
.y90{bottom:578.418000px;}
.yaa{bottom:580.498950px;}
.ydc{bottom:582.159750px;}
.y16d{bottom:586.169700px;}
.y5f{bottom:588.036750px;}
.y128{bottom:588.036900px;}
.y37{bottom:590.533650px;}
.y13{bottom:596.854350px;}
.y1b8{bottom:596.930550px;}
.ya{bottom:597.459750px;}
.y199{bottom:602.354250px;}
.yf4{bottom:609.931350px;}
.y78{bottom:610.519200px;}
.y55{bottom:610.536750px;}
.y109{bottom:610.773000px;}
.y8f{bottom:610.818000px;}
.ya9{bottom:612.898950px;}
.ydb{bottom:614.559750px;}
.y11a{bottom:616.396050px;}
.y5e{bottom:620.436750px;}
.y127{bottom:620.436900px;}
.y36{bottom:622.933650px;}
.y1b7{bottom:629.330550px;}
.y9{bottom:629.859750px;}
.y16c{bottom:630.106800px;}
.y198{bottom:634.754250px;}
.yf3{bottom:642.331350px;}
.y77{bottom:642.919200px;}
.y66{bottom:642.936750px;}
.y108{bottom:643.173000px;}
.y8e{bottom:643.218000px;}
.ya8{bottom:645.298950px;}
.yda{bottom:646.959750px;}
.y5d{bottom:652.836750px;}
.y126{bottom:652.836900px;}
.y1f{bottom:654.076950px;}
.y16a{bottom:654.587250px;}
.y35{bottom:655.333650px;}
.y12{bottom:661.654350px;}
.y1b6{bottom:661.730550px;}
.y8{bottom:662.259750px;}
.y197{bottom:667.154250px;}
.y76{bottom:675.319200px;}
.y54{bottom:675.336750px;}
.y107{bottom:675.573000px;}
.y16b{bottom:675.581850px;}
.y8d{bottom:675.618000px;}
.y169{bottom:676.187250px;}
.ya7{bottom:677.698950px;}
.yd9{bottom:679.359750px;}
.y5c{bottom:685.236750px;}
.y125{bottom:685.236900px;}
.y156{bottom:686.569500px;}
.y34{bottom:687.733650px;}
.y1b5{bottom:694.130550px;}
.y196{bottom:699.554100px;}
.yf2{bottom:707.131500px;}
.y75{bottom:707.719200px;}
.y53{bottom:707.736750px;}
.y106{bottom:707.973000px;}
.y8c{bottom:708.018000px;}
.y168{bottom:709.494300px;}
.ya6{bottom:710.099100px;}
.yd8{bottom:711.759750px;}
.y1e{bottom:718.876950px;}
.y33{bottom:720.133650px;}
.y11{bottom:726.454350px;}
.y1b4{bottom:726.530550px;}
.y7{bottom:727.059750px;}
.y195{bottom:731.954250px;}
.yf1{bottom:739.531350px;}
.y74{bottom:740.119200px;}
.y52{bottom:740.136750px;}
.y105{bottom:740.373000px;}
.y8b{bottom:740.418000px;}
.ya5{bottom:742.498950px;}
.yd7{bottom:744.159750px;}
.y124{bottom:750.036900px;}
.y167{bottom:750.596700px;}
.y1d{bottom:751.276950px;}
.y32{bottom:752.533650px;}
.y18a{bottom:756.062850px;}
.y1b3{bottom:758.930550px;}
.y1d4{bottom:759.308550px;}
.y194{bottom:764.354250px;}
.y15d{bottom:766.324500px;}
.yf0{bottom:771.931500px;}
.y73{bottom:772.519200px;}
.y51{bottom:772.536750px;}
.y104{bottom:772.773000px;}
.y8a{bottom:772.818000px;}
.ya4{bottom:774.899100px;}
.yd6{bottom:776.559750px;}
.y123{bottom:782.436900px;}
.y165{bottom:782.854950px;}
.y10{bottom:791.254350px;}
.y1b2{bottom:791.330550px;}
.y1d3{bottom:791.708550px;}
.y6{bottom:791.859750px;}
.y193{bottom:796.754100px;}
.y166{bottom:803.849550px;}
.yef{bottom:804.331350px;}
.y164{bottom:804.454950px;}
.y72{bottom:804.919200px;}
.y50{bottom:804.936750px;}
.y103{bottom:805.173000px;}
.y89{bottom:805.218000px;}
.yd5{bottom:808.959750px;}
.y122{bottom:814.836900px;}
.y189{bottom:814.967250px;}
.y1c{bottom:816.076950px;}
.y31{bottom:817.333650px;}
.y1b1{bottom:823.730550px;}
.y1d2{bottom:824.108400px;}
.y192{bottom:829.154250px;}
.y71{bottom:837.319200px;}
.y4f{bottom:837.336750px;}
.ya3{bottom:839.698950px;}
.yd4{bottom:841.359750px;}
.y163{bottom:845.557200px;}
.y121{bottom:847.236900px;}
.y188{bottom:848.174700px;}
.y1b{bottom:848.476950px;}
.y30{bottom:849.733650px;}
.y98{bottom:851.317350px;}
.yf{bottom:856.054350px;}
.y1b0{bottom:856.130550px;}
.y1d1{bottom:856.508550px;}
.y5{bottom:856.659600px;}
.y41{bottom:857.136900px;}
.y118{bottom:860.261100px;}
.y191{bottom:861.554100px;}
.yee{bottom:869.131500px;}
.y70{bottom:869.719200px;}
.y4e{bottom:869.736750px;}
.ya2{bottom:872.099100px;}
.y186{bottom:872.655150px;}
.y119{bottom:875.575650px;}
.y117{bottom:878.261100px;}
.y120{bottom:879.636900px;}
.y1a{bottom:880.876950px;}
.y2f{bottom:882.133650px;}
.ye5{bottom:884.340750px;}
.y162{bottom:886.659600px;}
.y1af{bottom:888.530550px;}
.y1d0{bottom:888.908550px;}
.y136{bottom:889.042200px;}
.y40{bottom:889.537050px;}
.y187{bottom:893.649900px;}
.y190{bottom:893.954250px;}
.y185{bottom:894.255300px;}
.yed{bottom:901.531350px;}
.y6f{bottom:902.119200px;}
.y4d{bottom:902.136750px;}
.ye4{bottom:902.340750px;}
.ye6{bottom:902.340900px;}
.ya1{bottom:904.498950px;}
.y19{bottom:913.276950px;}
.y2e{bottom:914.533650px;}
.y183{bottom:918.735600px;}
.ye{bottom:920.854350px;}
.y1ae{bottom:920.930550px;}
.y1cf{bottom:921.308550px;}
.y135{bottom:921.442050px;}
.y4{bottom:921.459750px;}
.y3f{bottom:921.936900px;}
.y155{bottom:922.346400px;}
.y161{bottom:926.344650px;}
.y18f{bottom:926.354250px;}
.yec{bottom:933.931500px;}
.y6e{bottom:934.519200px;}
.y4c{bottom:934.536750px;}
.y11f{bottom:934.537050px;}
.ya0{bottom:936.899100px;}
.y184{bottom:939.730350px;}
.y182{bottom:940.335600px;}
.y1ad{bottom:953.330550px;}
.y1ce{bottom:953.708550px;}
.y134{bottom:953.842200px;}
.y3e{bottom:954.336900px;}
.y18e{bottom:958.754100px;}
.y180{bottom:964.816200px;}
.yeb{bottom:966.331500px;}
.yc8{bottom:966.936750px;}
.y4b{bottom:966.936900px;}
.y160{bottom:967.106850px;}
.y9f{bottom:969.298950px;}
.y18{bottom:978.076950px;}
.y2d{bottom:979.333650px;}
.yd{bottom:985.654350px;}
.y1ac{bottom:985.730550px;}
.y181{bottom:985.810800px;}
.y1cd{bottom:986.108400px;}
.y133{bottom:986.242200px;}
.y3{bottom:986.259750px;}
.y17f{bottom:986.416200px;}
.y18d{bottom:991.154250px;}
.y6d{bottom:999.319200px;}
.y13f{bottom:999.319350px;}
.y4a{bottom:999.336750px;}
.y11e{bottom:999.336900px;}
.y9e{bottom:1001.698950px;}
.y17{bottom:1010.477100px;}
.y2c{bottom:1011.733650px;}
.y15f{bottom:1015.151400px;}
.y1ab{bottom:1018.130550px;}
.y1cc{bottom:1018.508550px;}
.y3d{bottom:1019.136900px;}
.y14b{bottom:1019.518950px;}
.y17e{bottom:1020.431850px;}
.y18c{bottom:1023.554100px;}
.yea{bottom:1031.131500px;}
.y147{bottom:1031.131650px;}
.y139{bottom:1031.719200px;}
.y6c{bottom:1031.719350px;}
.yc7{bottom:1031.736750px;}
.y49{bottom:1031.736900px;}
.y13d{bottom:1031.955450px;}
.y9d{bottom:1034.099100px;}
.y143{bottom:1035.971250px;}
.y15e{bottom:1036.751400px;}
.y16{bottom:1042.876950px;}
.y2b{bottom:1044.133650px;}
.y1aa{bottom:1050.530550px;}
.y1cb{bottom:1050.908550px;}
.y3c{bottom:1051.537050px;}
.y14a{bottom:1051.918950px;}
.y17c{bottom:1054.506300px;}
.y14e{bottom:1061.993250px;}
.ye9{bottom:1063.531500px;}
.y146{bottom:1063.531650px;}
.y6b{bottom:1064.119200px;}
.y13e{bottom:1064.119350px;}
.yc6{bottom:1064.136750px;}
.y48{bottom:1064.136900px;}
.y13c{bottom:1064.355450px;}
.y9c{bottom:1066.498950px;}
.y142{bottom:1068.371250px;}
.y17d{bottom:1075.500900px;}
.y17b{bottom:1076.106300px;}
.y132{bottom:1077.469200px;}
.y1a9{bottom:1082.930550px;}
.y1ca{bottom:1083.308550px;}
.y149{bottom:1084.318950px;}
.y14d{bottom:1094.393400px;}
.ye8{bottom:1095.931500px;}
.y145{bottom:1095.931650px;}
.y138{bottom:1096.519200px;}
.y6a{bottom:1096.519350px;}
.yc5{bottom:1096.536750px;}
.y3b{bottom:1096.536900px;}
.y11d{bottom:1096.537050px;}
.y13b{bottom:1096.755450px;}
.y9b{bottom:1098.899100px;}
.y17a{bottom:1100.586750px;}
.y141{bottom:1100.771250px;}
.y88{bottom:1107.618000px;}
.y2{bottom:1107.677100px;}
.y1a8{bottom:1115.330550px;}
.y1c9{bottom:1115.708550px;}
.y148{bottom:1116.718950px;}
.y131{bottom:1120.669200px;}
.y18b{bottom:1120.754100px;}
.y179{bottom:1122.186750px;}
.y14c{bottom:1126.793400px;}
.ye7{bottom:1128.331500px;}
.y144{bottom:1128.331650px;}
.y137{bottom:1128.919200px;}
.y69{bottom:1128.919350px;}
.yc4{bottom:1128.936750px;}
.y3a{bottom:1128.936900px;}
.y13a{bottom:1129.155450px;}
.y87{bottom:1130.118000px;}
.y9a{bottom:1131.298950px;}
.y140{bottom:1133.171250px;}
.h5{height:41.660156px;}
.h9{height:44.172000px;}
.ha{height:47.381836px;}
.h7{height:49.992188px;}
.h8{height:51.264000px;}
.h4{height:52.646484px;}
.h6{height:52.704684px;}
.h2{height:58.896000px;}
.h3{height:63.175781px;}
.hb{height:82.901836px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:82.204650px;}
.x9{left:83.976300px;}
.x2{left:85.039350px;}
.x32{left:89.763750px;}
.x2e{left:91.789350px;}
.x2d{left:106.204650px;}
.x2f{left:272.497950px;}
.x18{left:284.997150px;}
.x19{left:301.197150px;}
.x1a{left:317.397150px;}
.x1e{left:330.644250px;}
.x1b{left:333.597150px;}
.x10{left:343.464600px;}
.x5{left:360.000000px;}
.x1c{left:375.677400px;}
.x1d{left:382.997400px;}
.x1f{left:386.313600px;}
.x20{left:402.513600px;}
.x6{left:440.314950px;}
.xe{left:452.125950px;}
.xc{left:460.629900px;}
.x8{left:464.881950px;}
.xd{left:467.716500px;}
.x14{left:471.882600px;}
.x11{left:485.905500px;}
.x2a{left:529.543650px;}
.x2b{left:545.743650px;}
.x15{left:558.469650px;}
.x16{left:574.669650px;}
.x3{left:588.189000px;}
.x17{left:590.869650px;}
.x26{left:595.336500px;}
.x28{left:609.623100px;}
.x29{left:625.823100px;}
.x23{left:627.162450px;}
.x31{left:632.852400px;}
.x30{left:635.746950px;}
.x24{left:643.362450px;}
.x25{left:659.562450px;}
.x27{left:719.642850px;}
.x21{left:736.725600px;}
.x22{left:752.925600px;}
.x13{left:764.686950px;}
.x12{left:765.749850px;}
.xf{left:766.812900px;}
.xb{left:768.938850px;}
.xa{left:770.601300px;}
.x4{left:772.963500px;}
.x7{left:774.853200px;}
.x2c{left:776.541000px;}
.x1{left:777.747750px;}
.x33{left:807.874050px;}
@media print{
.v3{vertical-align:-42.998933pt;}
.v1{vertical-align:-6.299200pt;}
.v4{vertical-align:-2.152000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.573333pt;}
.ls1{letter-spacing:-5.952000pt;}
.ls8{letter-spacing:-3.792000pt;}
.ls7{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.008000pt;}
.ls3{letter-spacing:0.008533pt;}
.ls5{letter-spacing:0.010667pt;}
.ws10{word-spacing:-16.000000pt;}
.ws27{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-12.000000pt;}
.ws6d{word-spacing:-10.896000pt;}
.ws34{word-spacing:-8.704000pt;}
.ws4c{word-spacing:-3.776000pt;}
.ws14{word-spacing:-3.520000pt;}
.ws1{word-spacing:-3.456000pt;}
.ws79{word-spacing:-3.200000pt;}
.ws15{word-spacing:-3.072000pt;}
.ws18{word-spacing:-2.944000pt;}
.ws1f{word-spacing:-2.816000pt;}
.ws26{word-spacing:-2.624000pt;}
.ws59{word-spacing:-2.368000pt;}
.ws5b{word-spacing:-2.240000pt;}
.ws52{word-spacing:-2.176000pt;}
.wse{word-spacing:-2.112000pt;}
.ws78{word-spacing:-2.048000pt;}
.wsd{word-spacing:-1.984000pt;}
.ws66{word-spacing:-1.856000pt;}
.ws45{word-spacing:-1.792000pt;}
.ws22{word-spacing:-1.728000pt;}
.ws11{word-spacing:-1.664000pt;}
.ws4f{word-spacing:-1.536000pt;}
.ws29{word-spacing:-1.472000pt;}
.ws56{word-spacing:-1.408000pt;}
.ws38{word-spacing:-1.344000pt;}
.ws20{word-spacing:-1.280000pt;}
.ws2e{word-spacing:-1.216000pt;}
.ws50{word-spacing:-1.152000pt;}
.ws4b{word-spacing:-1.088000pt;}
.ws31{word-spacing:-1.024000pt;}
.ws24{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.896000pt;}
.ws3e{word-spacing:-0.832000pt;}
.ws33{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.704000pt;}
.ws46{word-spacing:-0.640000pt;}
.ws69{word-spacing:-0.576000pt;}
.ws5{word-spacing:-0.512000pt;}
.ws61{word-spacing:-0.384000pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.192000pt;}
.ws5d{word-spacing:-0.128000pt;}
.ws36{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.064000pt;}
.ws64{word-spacing:0.128000pt;}
.ws6f{word-spacing:0.144000pt;}
.ws75{word-spacing:0.192000pt;}
.wsf{word-spacing:0.256000pt;}
.ws6{word-spacing:0.320000pt;}
.ws40{word-spacing:0.384000pt;}
.ws25{word-spacing:0.512000pt;}
.ws12{word-spacing:0.576000pt;}
.ws3d{word-spacing:0.704000pt;}
.ws58{word-spacing:0.768000pt;}
.ws1a{word-spacing:0.832000pt;}
.ws1e{word-spacing:0.896000pt;}
.ws8{word-spacing:0.960000pt;}
.ws6a{word-spacing:1.024000pt;}
.ws51{word-spacing:1.152000pt;}
.ws21{word-spacing:1.216000pt;}
.ws4d{word-spacing:1.280000pt;}
.ws17{word-spacing:1.344000pt;}
.wsb{word-spacing:1.408000pt;}
.ws5f{word-spacing:1.472000pt;}
.ws5c{word-spacing:1.536000pt;}
.ws37{word-spacing:1.600000pt;}
.ws48{word-spacing:1.664000pt;}
.ws2a{word-spacing:1.792000pt;}
.ws3{word-spacing:1.856000pt;}
.ws4{word-spacing:1.920000pt;}
.ws63{word-spacing:1.984000pt;}
.ws4a{word-spacing:2.048000pt;}
.ws65{word-spacing:2.112000pt;}
.ws39{word-spacing:2.176000pt;}
.ws3f{word-spacing:2.240000pt;}
.ws30{word-spacing:2.304000pt;}
.ws35{word-spacing:2.368000pt;}
.ws7{word-spacing:2.560000pt;}
.ws2c{word-spacing:2.624000pt;}
.ws53{word-spacing:2.688000pt;}
.ws1c{word-spacing:2.752000pt;}
.ws5e{word-spacing:2.816000pt;}
.ws16{word-spacing:2.880000pt;}
.ws28{word-spacing:2.944000pt;}
.ws32{word-spacing:3.008000pt;}
.ws62{word-spacing:3.136000pt;}
.ws49{word-spacing:3.200000pt;}
.ws60{word-spacing:3.264000pt;}
.ws76{word-spacing:3.328000pt;}
.ws3c{word-spacing:3.456000pt;}
.ws2{word-spacing:3.584000pt;}
.ws2f{word-spacing:3.968000pt;}
.ws42{word-spacing:4.096000pt;}
.ws7b{word-spacing:4.160000pt;}
.ws2b{word-spacing:4.224000pt;}
.ws43{word-spacing:4.480000pt;}
.ws57{word-spacing:4.544000pt;}
.ws4e{word-spacing:4.672000pt;}
.ws1d{word-spacing:4.800000pt;}
.wsa{word-spacing:4.992000pt;}
.ws68{word-spacing:5.120000pt;}
.ws9{word-spacing:5.248000pt;}
.ws13{word-spacing:5.696000pt;}
.ws67{word-spacing:6.272000pt;}
.ws47{word-spacing:6.528000pt;}
.ws1b{word-spacing:6.848000pt;}
.ws7a{word-spacing:6.912000pt;}
.ws5a{word-spacing:7.296000pt;}
.ws44{word-spacing:7.680000pt;}
.ws55{word-spacing:7.872000pt;}
.ws3a{word-spacing:8.128000pt;}
.ws77{word-spacing:8.640000pt;}
.ws3b{word-spacing:8.960000pt;}
.ws7c{word-spacing:13.632000pt;}
.ws6b{word-spacing:117.137600pt;}
.ws6c{word-spacing:307.186667pt;}
.ws72{word-spacing:423.831467pt;}
.ws41{word-spacing:473.856000pt;}
.ws71{word-spacing:521.239467pt;}
.ws74{word-spacing:551.959467pt;}
.ws73{word-spacing:566.551467pt;}
.ws70{word-spacing:597.271467pt;}
._14{margin-left:-2284.501867pt;}
._11{margin-left:-16.052800pt;}
._4{margin-left:-8.217600pt;}
._8{margin-left:-7.180800pt;}
._3{margin-left:-6.067200pt;}
._6{margin-left:-5.094400pt;}
._5{margin-left:-4.198400pt;}
._e{margin-left:-3.283200pt;}
._1{margin-left:-2.259200pt;}
._0{margin-left:-1.158400pt;}
._7{width:1.318400pt;}
._d{width:2.288533pt;}
._2{width:3.456000pt;}
._10{width:4.556800pt;}
._a{width:5.941867pt;}
._9{width:6.950933pt;}
._36{width:8.601600pt;}
._37{width:20.832000pt;}
._25{width:48.727467pt;}
._b{width:51.573867pt;}
._35{width:82.301867pt;}
._26{width:86.103467pt;}
._2a{width:91.543467pt;}
._31{width:126.203733pt;}
._28{width:137.751467pt;}
._33{width:140.731733pt;}
._30{width:145.250133pt;}
._1f{width:146.583467pt;}
._16{width:173.365333pt;}
._19{width:183.025600pt;}
._15{width:184.451200pt;}
._17{width:194.004800pt;}
._18{width:200.412800pt;}
._1a{width:224.190933pt;}
._2c{width:246.167467pt;}
._27{width:247.895467pt;}
._1b{width:272.566400pt;}
._13{width:274.739733pt;}
._1c{width:303.697600pt;}
._2f{width:307.042667pt;}
._1e{width:308.376000pt;}
._23{width:313.687467pt;}
._20{width:335.063467pt;}
._2b{width:342.103467pt;}
._24{width:345.623467pt;}
._21{width:374.167467pt;}
._2e{width:402.263467pt;}
._12{width:458.638400pt;}
._2d{width:537.342400pt;}
._34{width:579.746667pt;}
._29{width:581.080000pt;}
._32{width:610.466667pt;}
._22{width:611.800000pt;}
._c{width:632.151467pt;}
._f{width:698.725333pt;}
._1d{width:917.480533pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:43.171333pt;}
.y2a{bottom:44.116133pt;}
.yd3{bottom:44.116267pt;}
.y1{bottom:44.305200pt;}
.y11c{bottom:45.061067pt;}
.yb8{bottom:46.006000pt;}
.y1c8{bottom:49.029600pt;}
.y99{bottom:75.781600pt;}
.y68{bottom:78.088533pt;}
.y11b{bottom:79.561067pt;}
.y130{bottom:80.392533pt;}
.y63{bottom:83.570800pt;}
.y14f{bottom:85.351867pt;}
.y46{bottom:85.860267pt;}
.y150{bottom:87.590533pt;}
.y158{bottom:89.385867pt;}
.y12e{bottom:98.038800pt;}
.y1c7{bottom:98.604933pt;}
.y12f{bottom:99.592533pt;}
.y102{bottom:110.161333pt;}
.y86{bottom:110.683733pt;}
.y116{bottom:110.909333pt;}
.y62{bottom:112.370800pt;}
.y151{bottom:116.000133pt;}
.ye3{bottom:116.592533pt;}
.ye1{bottom:117.747333pt;}
.y178{bottom:118.431200pt;}
.y5b{bottom:120.191067pt;}
.yb7{bottom:121.599067pt;}
.y1c6{bottom:127.404933pt;}
.y1a7{bottom:132.225867pt;}
.ye2{bottom:132.592533pt;}
.ye0{bottom:133.747333pt;}
.y101{bottom:138.961200pt;}
.y85{bottom:139.483733pt;}
.y115{bottom:139.709333pt;}
.y65{bottom:141.986267pt;}
.yb6{bottom:150.399067pt;}
.y1c5{bottom:156.204933pt;}
.y176{bottom:157.470800pt;}
.y64{bottom:157.999333pt;}
.y1a6{bottom:161.026000pt;}
.y29{bottom:167.001733pt;}
.y100{bottom:167.761200pt;}
.y84{bottom:168.283733pt;}
.ycf{bottom:168.299333pt;}
.y114{bottom:168.509333pt;}
.yb5{bottom:179.199200pt;}
.yc1{bottom:179.470000pt;}
.y1c4{bottom:185.004933pt;}
.y1a5{bottom:189.825867pt;}
.y159{bottom:191.211067pt;}
.y175{bottom:192.746400pt;}
.yff{bottom:196.561333pt;}
.y83{bottom:197.083733pt;}
.yce{bottom:197.099333pt;}
.y113{bottom:197.309333pt;}
.yb4{bottom:207.999067pt;}
.yc0{bottom:208.270000pt;}
.y1c3{bottom:213.804933pt;}
.y174{bottom:215.044800pt;}
.y1a4{bottom:218.626000pt;}
.y28{bottom:224.601733pt;}
.yfe{bottom:225.361200pt;}
.y82{bottom:225.883733pt;}
.ycd{bottom:225.899333pt;}
.y112{bottom:226.109333pt;}
.y173{bottom:234.244800pt;}
.yb3{bottom:236.799200pt;}
.ybf{bottom:237.070000pt;}
.y1c2{bottom:242.604933pt;}
.y157{bottom:243.774400pt;}
.y1a3{bottom:247.426000pt;}
.y27{bottom:253.401733pt;}
.y81{bottom:254.683733pt;}
.ycc{bottom:254.699333pt;}
.y111{bottom:254.909333pt;}
.y152{bottom:264.986933pt;}
.yb2{bottom:265.599067pt;}
.ybe{bottom:265.870000pt;}
.y1c1{bottom:271.404933pt;}
.y1a2{bottom:276.225867pt;}
.yfd{bottom:282.961200pt;}
.y80{bottom:283.483733pt;}
.ycb{bottom:283.499333pt;}
.yb1{bottom:294.399067pt;}
.y1c0{bottom:300.204933pt;}
.y44{bottom:301.099467pt;}
.y1a1{bottom:305.026000pt;}
.y26{bottom:311.001733pt;}
.yfc{bottom:311.761200pt;}
.y7f{bottom:312.283733pt;}
.yca{bottom:312.299333pt;}
.y110{bottom:312.509333pt;}
.y97{bottom:312.549333pt;}
.y15b{bottom:312.858000pt;}
.y177{bottom:319.460000pt;}
.yb0{bottom:323.199200pt;}
.ybd{bottom:323.470000pt;}
.y1bf{bottom:329.004933pt;}
.y43{bottom:329.899467pt;}
.y1a0{bottom:333.825867pt;}
.y15a{bottom:335.597867pt;}
.y25{bottom:339.801733pt;}
.yfb{bottom:340.561333pt;}
.y7e{bottom:341.083733pt;}
.yc9{bottom:341.099333pt;}
.y10f{bottom:341.309333pt;}
.y96{bottom:341.349333pt;}
.y12d{bottom:349.899467pt;}
.yaf{bottom:351.999067pt;}
.ybc{bottom:352.270000pt;}
.y1be{bottom:357.804933pt;}
.y172{bottom:358.520133pt;}
.y42{bottom:358.699467pt;}
.y19f{bottom:362.626000pt;}
.y24{bottom:368.601733pt;}
.yfa{bottom:369.361200pt;}
.y7d{bottom:369.883733pt;}
.y5a{bottom:369.899333pt;}
.y10e{bottom:370.109333pt;}
.y95{bottom:370.149333pt;}
.y12c{bottom:378.699467pt;}
.ybb{bottom:381.070000pt;}
.y1bd{bottom:386.604933pt;}
.y19e{bottom:391.426000pt;}
.y171{bottom:393.795733pt;}
.y23{bottom:397.401733pt;}
.yf9{bottom:398.161200pt;}
.y7c{bottom:398.683733pt;}
.y59{bottom:398.699333pt;}
.y10d{bottom:398.909333pt;}
.y94{bottom:398.949333pt;}
.yae{bottom:400.799067pt;}
.y12b{bottom:407.499467pt;}
.yba{bottom:409.870000pt;}
.yd1{bottom:412.445467pt;}
.y15{bottom:415.337200pt;}
.y1bc{bottom:415.404933pt;}
.yc{bottom:415.875333pt;}
.y19d{bottom:420.225867pt;}
.y45{bottom:421.713333pt;}
.y15c{bottom:422.467200pt;}
.y170{bottom:425.291733pt;}
.y22{bottom:426.201733pt;}
.yf8{bottom:426.961200pt;}
.y58{bottom:427.499333pt;}
.y10c{bottom:427.709333pt;}
.y93{bottom:427.749333pt;}
.yd2{bottom:428.432400pt;}
.yd0{bottom:428.445467pt;}
.yad{bottom:429.599067pt;}
.ydf{bottom:431.075333pt;}
.y12a{bottom:436.299467pt;}
.yb9{bottom:438.670000pt;}
.y153{bottom:440.883333pt;}
.y1bb{bottom:444.204933pt;}
.y19c{bottom:449.026000pt;}
.y21{bottom:455.001733pt;}
.y16f{bottom:455.528000pt;}
.yf7{bottom:455.761333pt;}
.y7b{bottom:456.283733pt;}
.y57{bottom:456.299333pt;}
.y92{bottom:456.549333pt;}
.yac{bottom:458.399067pt;}
.yde{bottom:459.875333pt;}
.y61{bottom:465.099333pt;}
.y129{bottom:465.099467pt;}
.y39{bottom:467.318800pt;}
.y14{bottom:472.937200pt;}
.y1ba{bottom:473.004933pt;}
.yb{bottom:473.475333pt;}
.y19b{bottom:477.825867pt;}
.yc3{bottom:480.464000pt;}
.y20{bottom:483.801733pt;}
.yf6{bottom:484.561333pt;}
.y7a{bottom:485.083733pt;}
.y67{bottom:485.099333pt;}
.y10b{bottom:485.309333pt;}
.y91{bottom:485.349333pt;}
.yab{bottom:487.199200pt;}
.y16e{bottom:488.283867pt;}
.ydd{bottom:488.675333pt;}
.y60{bottom:493.899333pt;}
.y38{bottom:496.118800pt;}
.yc2{bottom:498.038800pt;}
.y1b9{bottom:501.804933pt;}
.y154{bottom:504.196667pt;}
.y19a{bottom:506.626000pt;}
.yf5{bottom:513.361200pt;}
.y79{bottom:513.883733pt;}
.y56{bottom:513.899333pt;}
.y10a{bottom:514.109333pt;}
.y90{bottom:514.149333pt;}
.yaa{bottom:515.999067pt;}
.ydc{bottom:517.475333pt;}
.y16d{bottom:521.039733pt;}
.y5f{bottom:522.699333pt;}
.y128{bottom:522.699467pt;}
.y37{bottom:524.918800pt;}
.y13{bottom:530.537200pt;}
.y1b8{bottom:530.604933pt;}
.ya{bottom:531.075333pt;}
.y199{bottom:535.426000pt;}
.yf4{bottom:542.161200pt;}
.y78{bottom:542.683733pt;}
.y55{bottom:542.699333pt;}
.y109{bottom:542.909333pt;}
.y8f{bottom:542.949333pt;}
.ya9{bottom:544.799067pt;}
.ydb{bottom:546.275333pt;}
.y11a{bottom:547.907600pt;}
.y5e{bottom:551.499333pt;}
.y127{bottom:551.499467pt;}
.y36{bottom:553.718800pt;}
.y1b7{bottom:559.404933pt;}
.y9{bottom:559.875333pt;}
.y16c{bottom:560.094933pt;}
.y198{bottom:564.226000pt;}
.yf3{bottom:570.961200pt;}
.y77{bottom:571.483733pt;}
.y66{bottom:571.499333pt;}
.y108{bottom:571.709333pt;}
.y8e{bottom:571.749333pt;}
.ya8{bottom:573.599067pt;}
.yda{bottom:575.075333pt;}
.y5d{bottom:580.299333pt;}
.y126{bottom:580.299467pt;}
.y1f{bottom:581.401733pt;}
.y16a{bottom:581.855333pt;}
.y35{bottom:582.518800pt;}
.y12{bottom:588.137200pt;}
.y1b6{bottom:588.204933pt;}
.y8{bottom:588.675333pt;}
.y197{bottom:593.026000pt;}
.y76{bottom:600.283733pt;}
.y54{bottom:600.299333pt;}
.y107{bottom:600.509333pt;}
.y16b{bottom:600.517200pt;}
.y8d{bottom:600.549333pt;}
.y169{bottom:601.055333pt;}
.ya7{bottom:602.399067pt;}
.yd9{bottom:603.875333pt;}
.y5c{bottom:609.099333pt;}
.y125{bottom:609.099467pt;}
.y156{bottom:610.284000pt;}
.y34{bottom:611.318800pt;}
.y1b5{bottom:617.004933pt;}
.y196{bottom:621.825867pt;}
.yf2{bottom:628.561333pt;}
.y75{bottom:629.083733pt;}
.y53{bottom:629.099333pt;}
.y106{bottom:629.309333pt;}
.y8c{bottom:629.349333pt;}
.y168{bottom:630.661600pt;}
.ya6{bottom:631.199200pt;}
.yd8{bottom:632.675333pt;}
.y1e{bottom:639.001733pt;}
.y33{bottom:640.118800pt;}
.y11{bottom:645.737200pt;}
.y1b4{bottom:645.804933pt;}
.y7{bottom:646.275333pt;}
.y195{bottom:650.626000pt;}
.yf1{bottom:657.361200pt;}
.y74{bottom:657.883733pt;}
.y52{bottom:657.899333pt;}
.y105{bottom:658.109333pt;}
.y8b{bottom:658.149333pt;}
.ya5{bottom:659.999067pt;}
.yd7{bottom:661.475333pt;}
.y124{bottom:666.699467pt;}
.y167{bottom:667.197067pt;}
.y1d{bottom:667.801733pt;}
.y32{bottom:668.918800pt;}
.y18a{bottom:672.055867pt;}
.y1b3{bottom:674.604933pt;}
.y1d4{bottom:674.940933pt;}
.y194{bottom:679.426000pt;}
.y15d{bottom:681.177333pt;}
.yf0{bottom:686.161333pt;}
.y73{bottom:686.683733pt;}
.y51{bottom:686.699333pt;}
.y104{bottom:686.909333pt;}
.y8a{bottom:686.949333pt;}
.ya4{bottom:688.799200pt;}
.yd6{bottom:690.275333pt;}
.y123{bottom:695.499467pt;}
.y165{bottom:695.871067pt;}
.y10{bottom:703.337200pt;}
.y1b2{bottom:703.404933pt;}
.y1d3{bottom:703.740933pt;}
.y6{bottom:703.875333pt;}
.y193{bottom:708.225867pt;}
.y166{bottom:714.532933pt;}
.yef{bottom:714.961200pt;}
.y164{bottom:715.071067pt;}
.y72{bottom:715.483733pt;}
.y50{bottom:715.499333pt;}
.y103{bottom:715.709333pt;}
.y89{bottom:715.749333pt;}
.yd5{bottom:719.075333pt;}
.y122{bottom:724.299467pt;}
.y189{bottom:724.415333pt;}
.y1c{bottom:725.401733pt;}
.y31{bottom:726.518800pt;}
.y1b1{bottom:732.204933pt;}
.y1d2{bottom:732.540800pt;}
.y192{bottom:737.026000pt;}
.y71{bottom:744.283733pt;}
.y4f{bottom:744.299333pt;}
.ya3{bottom:746.399067pt;}
.yd4{bottom:747.875333pt;}
.y163{bottom:751.606400pt;}
.y121{bottom:753.099467pt;}
.y188{bottom:753.933067pt;}
.y1b{bottom:754.201733pt;}
.y30{bottom:755.318800pt;}
.y98{bottom:756.726533pt;}
.yf{bottom:760.937200pt;}
.y1b0{bottom:761.004933pt;}
.y1d1{bottom:761.340933pt;}
.y5{bottom:761.475200pt;}
.y41{bottom:761.899467pt;}
.y118{bottom:764.676533pt;}
.y191{bottom:765.825867pt;}
.yee{bottom:772.561333pt;}
.y70{bottom:773.083733pt;}
.y4e{bottom:773.099333pt;}
.ya2{bottom:775.199200pt;}
.y186{bottom:775.693467pt;}
.y119{bottom:778.289467pt;}
.y117{bottom:780.676533pt;}
.y120{bottom:781.899467pt;}
.y1a{bottom:783.001733pt;}
.y2f{bottom:784.118800pt;}
.ye5{bottom:786.080667pt;}
.y162{bottom:788.141867pt;}
.y1af{bottom:789.804933pt;}
.y1d0{bottom:790.140933pt;}
.y136{bottom:790.259733pt;}
.y40{bottom:790.699600pt;}
.y187{bottom:794.355467pt;}
.y190{bottom:794.626000pt;}
.y185{bottom:794.893600pt;}
.yed{bottom:801.361200pt;}
.y6f{bottom:801.883733pt;}
.y4d{bottom:801.899333pt;}
.ye4{bottom:802.080667pt;}
.ye6{bottom:802.080800pt;}
.ya1{bottom:803.999067pt;}
.y19{bottom:811.801733pt;}
.y2e{bottom:812.918800pt;}
.y183{bottom:816.653867pt;}
.ye{bottom:818.537200pt;}
.y1ae{bottom:818.604933pt;}
.y1cf{bottom:818.940933pt;}
.y135{bottom:819.059600pt;}
.y4{bottom:819.075333pt;}
.y3f{bottom:819.499467pt;}
.y155{bottom:819.863467pt;}
.y161{bottom:823.417467pt;}
.y18f{bottom:823.426000pt;}
.yec{bottom:830.161333pt;}
.y6e{bottom:830.683733pt;}
.y4c{bottom:830.699333pt;}
.y11f{bottom:830.699600pt;}
.ya0{bottom:832.799200pt;}
.y184{bottom:835.315867pt;}
.y182{bottom:835.853867pt;}
.y1ad{bottom:847.404933pt;}
.y1ce{bottom:847.740933pt;}
.y134{bottom:847.859733pt;}
.y3e{bottom:848.299467pt;}
.y18e{bottom:852.225867pt;}
.y180{bottom:857.614400pt;}
.yeb{bottom:858.961333pt;}
.yc8{bottom:859.499333pt;}
.y4b{bottom:859.499467pt;}
.y160{bottom:859.650533pt;}
.y9f{bottom:861.599067pt;}
.y18{bottom:869.401733pt;}
.y2d{bottom:870.518800pt;}
.yd{bottom:876.137200pt;}
.y1ac{bottom:876.204933pt;}
.y181{bottom:876.276267pt;}
.y1cd{bottom:876.540800pt;}
.y133{bottom:876.659733pt;}
.y3{bottom:876.675333pt;}
.y17f{bottom:876.814400pt;}
.y18d{bottom:881.026000pt;}
.y6d{bottom:888.283733pt;}
.y13f{bottom:888.283867pt;}
.y4a{bottom:888.299333pt;}
.y11e{bottom:888.299467pt;}
.y9e{bottom:890.399067pt;}
.y17{bottom:898.201867pt;}
.y2c{bottom:899.318800pt;}
.y15f{bottom:902.356800pt;}
.y1ab{bottom:905.004933pt;}
.y1cc{bottom:905.340933pt;}
.y3d{bottom:905.899467pt;}
.y14b{bottom:906.239067pt;}
.y17e{bottom:907.050533pt;}
.y18c{bottom:909.825867pt;}
.yea{bottom:916.561333pt;}
.y147{bottom:916.561467pt;}
.y139{bottom:917.083733pt;}
.y6c{bottom:917.083867pt;}
.yc7{bottom:917.099333pt;}
.y49{bottom:917.099467pt;}
.y13d{bottom:917.293733pt;}
.y9d{bottom:919.199200pt;}
.y143{bottom:920.863333pt;}
.y15e{bottom:921.556800pt;}
.y16{bottom:927.001733pt;}
.y2b{bottom:928.118800pt;}
.y1aa{bottom:933.804933pt;}
.y1cb{bottom:934.140933pt;}
.y3c{bottom:934.699600pt;}
.y14a{bottom:935.039067pt;}
.y17c{bottom:937.338933pt;}
.y14e{bottom:943.994000pt;}
.ye9{bottom:945.361333pt;}
.y146{bottom:945.361467pt;}
.y6b{bottom:945.883733pt;}
.y13e{bottom:945.883867pt;}
.yc6{bottom:945.899333pt;}
.y48{bottom:945.899467pt;}
.y13c{bottom:946.093733pt;}
.y9c{bottom:947.999067pt;}
.y142{bottom:949.663333pt;}
.y17d{bottom:956.000800pt;}
.y17b{bottom:956.538933pt;}
.y132{bottom:957.750400pt;}
.y1a9{bottom:962.604933pt;}
.y1ca{bottom:962.940933pt;}
.y149{bottom:963.839067pt;}
.y14d{bottom:972.794133pt;}
.ye8{bottom:974.161333pt;}
.y145{bottom:974.161467pt;}
.y138{bottom:974.683733pt;}
.y6a{bottom:974.683867pt;}
.yc5{bottom:974.699333pt;}
.y3b{bottom:974.699467pt;}
.y11d{bottom:974.699600pt;}
.y13b{bottom:974.893733pt;}
.y9b{bottom:976.799200pt;}
.y17a{bottom:978.299333pt;}
.y141{bottom:978.463333pt;}
.y88{bottom:984.549333pt;}
.y2{bottom:984.601867pt;}
.y1a8{bottom:991.404933pt;}
.y1c9{bottom:991.740933pt;}
.y148{bottom:992.639067pt;}
.y131{bottom:996.150400pt;}
.y18b{bottom:996.225867pt;}
.y179{bottom:997.499333pt;}
.y14c{bottom:1001.594133pt;}
.ye7{bottom:1002.961333pt;}
.y144{bottom:1002.961467pt;}
.y137{bottom:1003.483733pt;}
.y69{bottom:1003.483867pt;}
.yc4{bottom:1003.499333pt;}
.y3a{bottom:1003.499467pt;}
.y13a{bottom:1003.693733pt;}
.y87{bottom:1004.549333pt;}
.y9a{bottom:1005.599067pt;}
.y140{bottom:1007.263333pt;}
.h5{height:37.031250pt;}
.h9{height:39.264000pt;}
.ha{height:42.117188pt;}
.h7{height:44.437500pt;}
.h8{height:45.568000pt;}
.h4{height:46.796875pt;}
.h6{height:46.848608pt;}
.h2{height:52.352000pt;}
.h3{height:56.156250pt;}
.hb{height:73.690521pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:73.070800pt;}
.x9{left:74.645600pt;}
.x2{left:75.590533pt;}
.x32{left:79.790000pt;}
.x2e{left:81.590533pt;}
.x2d{left:94.404133pt;}
.x2f{left:242.220400pt;}
.x18{left:253.330800pt;}
.x19{left:267.730800pt;}
.x1a{left:282.130800pt;}
.x1e{left:293.906000pt;}
.x1b{left:296.530800pt;}
.x10{left:305.301867pt;}
.x5{left:320.000000pt;}
.x1c{left:333.935467pt;}
.x1d{left:340.442133pt;}
.x1f{left:343.389867pt;}
.x20{left:357.789867pt;}
.x6{left:391.391067pt;}
.xe{left:401.889733pt;}
.xc{left:409.448800pt;}
.x8{left:413.228400pt;}
.xd{left:415.748000pt;}
.x14{left:419.451200pt;}
.x11{left:431.916000pt;}
.x2a{left:470.705467pt;}
.x2b{left:485.105467pt;}
.x15{left:496.417467pt;}
.x16{left:510.817467pt;}
.x3{left:522.834667pt;}
.x17{left:525.217467pt;}
.x26{left:529.188000pt;}
.x28{left:541.887200pt;}
.x29{left:556.287200pt;}
.x23{left:557.477733pt;}
.x31{left:562.535467pt;}
.x30{left:565.108400pt;}
.x24{left:571.877733pt;}
.x25{left:586.277733pt;}
.x27{left:639.682533pt;}
.x21{left:654.867200pt;}
.x22{left:669.267200pt;}
.x13{left:679.721733pt;}
.x12{left:680.666533pt;}
.xf{left:681.611467pt;}
.xb{left:683.501200pt;}
.xa{left:684.978933pt;}
.x4{left:687.078667pt;}
.x7{left:688.758400pt;}
.x2c{left:690.258667pt;}
.x1{left:691.331333pt;}
.x33{left:718.110267pt;}
}




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