
    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_a84a861f3f8807e378a36fc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925000;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_d48472c87a739b452fc0e408.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_eae47b41ee8616fc82c00e9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.818000;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_3eb8fae40c40c8de7e03a07e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_b65c49b7b83965dc417d8f4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_8a0c7ae7509f752453703a4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687000;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_aed8cffc99380fadfed54f54.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_3acfe3974a5705c7015121bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_d88fa736d7fb376035814993.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_cbe475ed9749d2b783d6655e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.228584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228584,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-5.424000px;}
.lsd{letter-spacing:-2.394000px;}
.lse{letter-spacing:-1.740000px;}
.ls5{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.330000px;}
.ls7{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.285000px;}
.ls1{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.855000px;}
.ls2{letter-spacing:2.400000px;}
.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;}
}
.ws21{word-spacing:-56.715000px;}
.ws2{word-spacing:-55.440000px;}
.ws19{word-spacing:-24.720000px;}
.ws18{word-spacing:-20.016000px;}
.wsf{word-spacing:-16.701000px;}
.ws10{word-spacing:-16.380000px;}
.wse{word-spacing:-15.561000px;}
.ws1c{word-spacing:-15.558000px;}
.ws1{word-spacing:-15.012000px;}
.ws20{word-spacing:-13.452000px;}
.ws11{word-spacing:-13.104000px;}
.ws3{word-spacing:-12.420000px;}
.ws16{word-spacing:-8.660400px;}
.ws17{word-spacing:-8.659800px;}
.ws7{word-spacing:-7.668000px;}
.ws6{word-spacing:-6.156000px;}
.ws4{word-spacing:-5.724000px;}
.ws8{word-spacing:-5.238000px;}
.ws9{word-spacing:-2.808000px;}
.ws1f{word-spacing:-2.400000px;}
.ws12{word-spacing:-2.109000px;}
.ws1a{word-spacing:-0.513000px;}
.ws14{word-spacing:-0.378000px;}
.ws1b{word-spacing:-0.171000px;}
.ws13{word-spacing:-0.162000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.240000px;}
.ws5{word-spacing:0.270000px;}
.ws1e{word-spacing:0.282000px;}
.wsb{word-spacing:0.285000px;}
.ws1d{word-spacing:0.288000px;}
.ws22{word-spacing:0.330000px;}
.wsc{word-spacing:0.960000px;}
.wsd{word-spacing:1.440000px;}
.wsa{word-spacing:197.538000px;}
._2{margin-left:-17.490000px;}
._3{margin-left:-9.571800px;}
._7{margin-left:-6.600000px;}
._5{margin-left:-5.436000px;}
._0{margin-left:-3.774000px;}
._1{margin-left:-1.887000px;}
._6{width:1.072800px;}
._8{width:2.271000px;}
._4{width:4.591800px;}
._d{width:42.123000px;}
._a{width:217.206000px;}
._9{width:229.152000px;}
._b{width:233.904000px;}
._c{width:244.398000px;}
.fc5{color:rgb(29,113,184);}
.fc3{color:rgb(243,146,0);}
.fc2{color:transparent;}
.fc1{color:rgb(56,168,224);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs9{font-size:120.000000px;}
.fsc{font-size:174.000000px;}
.fs4{font-size:180.000000px;}
.fs2{font-size:318.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.305750px;}
.y4c{bottom:85.585200px;}
.y224{bottom:86.486850px;}
.yc6{bottom:91.170000px;}
.y5f{bottom:99.051450px;}
.y223{bottom:101.486850px;}
.y4b{bottom:104.338200px;}
.yc5{bottom:106.920000px;}
.y222{bottom:116.486850px;}
.y5e{bottom:117.804450px;}
.y1e1{bottom:121.561950px;}
.y4a{bottom:123.091200px;}
.y221{bottom:131.486850px;}
.y5d{bottom:136.557450px;}
.y1e0{bottom:140.311950px;}
.y49{bottom:141.844200px;}
.y198{bottom:146.281500px;}
.y220{bottom:146.486850px;}
.y5c{bottom:155.310450px;}
.y1df{bottom:159.061950px;}
.y48{bottom:160.597200px;}
.y21f{bottom:161.486850px;}
.y197{bottom:165.031500px;}
.y5b{bottom:174.063450px;}
.y1de{bottom:177.811950px;}
.y47{bottom:179.350200px;}
.y202{bottom:179.873850px;}
.y5a{bottom:192.816450px;}
.y196{bottom:194.411400px;}
.y1dd{bottom:196.561950px;}
.y46{bottom:198.103200px;}
.y201{bottom:198.623850px;}
.y59{bottom:211.569450px;}
.y195{bottom:213.161400px;}
.y1dc{bottom:215.311950px;}
.y45{bottom:216.856200px;}
.y200{bottom:217.373850px;}
.y58{bottom:230.322450px;}
.y1db{bottom:234.061950px;}
.y1ff{bottom:236.123850px;}
.y194{bottom:242.541300px;}
.y44{bottom:244.110150px;}
.y57{bottom:249.075450px;}
.y1da{bottom:252.811950px;}
.y1fe{bottom:254.873850px;}
.y56{bottom:267.828450px;}
.y1d9{bottom:271.561950px;}
.y193{bottom:271.921200px;}
.y1fd{bottom:273.623850px;}
.y9c{bottom:283.092000px;}
.y43{bottom:286.048950px;}
.y55{bottom:286.581450px;}
.y1d8{bottom:290.311950px;}
.y1fc{bottom:292.373850px;}
.y9b{bottom:298.842000px;}
.y192{bottom:301.301100px;}
.y42{bottom:304.801950px;}
.y54{bottom:305.334450px;}
.yd0{bottom:306.141750px;}
.y1d7{bottom:309.061950px;}
.y9a{bottom:317.592000px;}
.y191{bottom:320.051100px;}
.y41{bottom:323.554950px;}
.y1fb{bottom:323.879700px;}
.ycf{bottom:324.891750px;}
.y53{bottom:334.717950px;}
.y1d6{bottom:340.567950px;}
.y40{bottom:342.307950px;}
.yce{bottom:343.641750px;}
.y190{bottom:349.431000px;}
.y1fa{bottom:352.379700px;}
.y52{bottom:353.470950px;}
.y3f{bottom:361.060950px;}
.ycd{bottom:370.895700px;}
.y51{bottom:372.223950px;}
.yc9{bottom:373.391700px;}
.y18f{bottom:378.810900px;}
.y3e{bottom:379.813950px;}
.y99{bottom:381.705300px;}
.yc8{bottom:389.141700px;}
.y50{bottom:390.976950px;}
.y1b7{bottom:395.018550px;}
.y98{bottom:397.455300px;}
.y18e{bottom:397.560900px;}
.y3d{bottom:398.566950px;}
.y1d5{bottom:398.672850px;}
.yc7{bottom:404.891700px;}
.y4f{bottom:409.729950px;}
.y1f9{bottom:410.484600px;}
.y1b6{bottom:413.768550px;}
.yc4{bottom:414.232200px;}
.y3c{bottom:417.319950px;}
.y1d4{bottom:417.422850px;}
.ybf{bottom:423.357000px;}
.y4e{bottom:428.482950px;}
.y1f8{bottom:429.234600px;}
.yc3{bottom:429.982200px;}
.y1b5{bottom:432.518550px;}
.y1d3{bottom:436.172850px;}
.ybe{bottom:439.107000px;}
.y3b{bottom:444.573900px;}
.y4d{bottom:447.235950px;}
.yc2{bottom:447.858150px;}
.y1f7{bottom:447.984600px;}
.y1b4{bottom:451.268550px;}
.ybd{bottom:454.857000px;}
.y1d2{bottom:454.922850px;}
.y235{bottom:461.572050px;}
.yc1{bottom:463.608150px;}
.yb7{bottom:463.814100px;}
.ye0{bottom:466.595550px;}
.y1f6{bottom:466.734600px;}
.y1b3{bottom:470.018550px;}
.ybc{bottom:470.607000px;}
.y1d1{bottom:473.672850px;}
.yc0{bottom:479.358150px;}
.yb6{bottom:479.564100px;}
.y18b{bottom:483.005100px;}
.y21a{bottom:484.056750px;}
.y234{bottom:484.072050px;}
.ydf{bottom:485.345550px;}
.y1f5{bottom:485.484600px;}
.y60{bottom:487.125600px;}
.y1b2{bottom:488.768550px;}
.y129{bottom:491.365200px;}
.yb8{bottom:493.737600px;}
.y10a{bottom:493.774350px;}
.yb5{bottom:495.314100px;}
.y219{bottom:502.806750px;}
.y1d0{bottom:503.052750px;}
.y2e{bottom:503.954250px;}
.y18a{bottom:504.005100px;}
.yde{bottom:504.095550px;}
.y1f4{bottom:504.234600px;}
.y233{bottom:506.572050px;}
.y128{bottom:511.165200px;}
.y109{bottom:512.524350px;}
.y1b1{bottom:518.149050px;}
.y2d{bottom:519.704250px;}
.y1cf{bottom:521.802750px;}
.ydd{bottom:522.845550px;}
.y1f3{bottom:522.984600px;}
.y189{bottom:525.005100px;}
.y127{bottom:529.915200px;}
.y218{bottom:532.186650px;}
.y97{bottom:534.697950px;}
.y108{bottom:535.526400px;}
.y1b0{bottom:536.899050px;}
.y232{bottom:539.701950px;}
.ybb{bottom:540.516150px;}
.y1ce{bottom:540.552750px;}
.ye7{bottom:541.595550px;}
.y1f2{bottom:541.734600px;}
.y126{bottom:548.665200px;}
.y96{bottom:550.447950px;}
.y217{bottom:550.936650px;}
.ydc{bottom:552.225450px;}
.y1af{bottom:555.649050px;}
.yba{bottom:556.266150px;}
.y1cd{bottom:559.302750px;}
.ye6{bottom:560.345550px;}
.y1f1{bottom:560.484600px;}
.y231{bottom:562.201950px;}
.y145{bottom:563.164200px;}
.y95{bottom:566.197950px;}
.y3a{bottom:566.848500px;}
.y125{bottom:567.415200px;}
.y216{bottom:569.686650px;}
.ydb{bottom:570.975450px;}
.y107{bottom:571.284150px;}
.yb9{bottom:572.016150px;}
.y1ae{bottom:574.399050px;}
.y1c{bottom:575.952450px;}
.y161{bottom:576.303000px;}
.y1cc{bottom:578.052750px;}
.ye5{bottom:579.095550px;}
.y1f0{bottom:579.234600px;}
.y144{bottom:581.914200px;}
.y230{bottom:584.701950px;}
.y39{bottom:585.601500px;}
.y124{bottom:586.165200px;}
.y215{bottom:588.436650px;}
.y106{bottom:590.034150px;}
.y18d{bottom:591.713250px;}
.y1ad{bottom:593.149050px;}
.y160{bottom:595.053000px;}
.y188{bottom:595.259700px;}
.y1cb{bottom:596.802750px;}
.y1ef{bottom:597.984600px;}
.y90{bottom:599.058750px;}
.y1b{bottom:599.455950px;}
.yda{bottom:600.355350px;}
.y143{bottom:600.664200px;}
.yaf{bottom:603.154500px;}
.y38{bottom:604.354500px;}
.y123{bottom:604.915200px;}
.y214{bottom:607.186650px;}
.y22f{bottom:607.201950px;}
.y18c{bottom:607.463250px;}
.ye4{bottom:608.475450px;}
.y105{bottom:608.784150px;}
.y1ac{bottom:611.899050px;}
.y15f{bottom:613.803000px;}
.y187{bottom:614.009700px;}
.y8f{bottom:614.808750px;}
.y1ee{bottom:616.734600px;}
.yae{bottom:618.904500px;}
.yd9{bottom:619.105350px;}
.y142{bottom:619.414200px;}
.yb4{bottom:619.568400px;}
.y37{bottom:623.085450px;}
.y122{bottom:623.665200px;}
.y1a{bottom:623.715450px;}
.y1ca{bottom:626.182650px;}
.ye3{bottom:627.225450px;}
.y94{bottom:627.323850px;}
.y104{bottom:627.534150px;}
.y22e{bottom:629.701950px;}
.y8e{bottom:630.558750px;}
.y15e{bottom:632.553000px;}
.y186{bottom:632.759700px;}
.yb3{bottom:635.318400px;}
.y1ed{bottom:635.484600px;}
.yad{bottom:636.780450px;}
.yd8{bottom:637.855350px;}
.y213{bottom:638.692500px;}
.y1ab{bottom:641.279550px;}
.y121{bottom:642.415200px;}
.y141{bottom:642.416250px;}
.y93{bottom:643.073850px;}
.y1c9{bottom:644.932650px;}
.y103{bottom:646.284150px;}
.y19{bottom:647.974950px;}
.y185{bottom:651.509700px;}
.y22d{bottom:652.201950px;}
.y36{bottom:652.468950px;}
.yb2{bottom:653.194350px;}
.y1ec{bottom:654.234600px;}
.y15d{bottom:655.554900px;}
.yd7{bottom:656.605350px;}
.y92{bottom:658.823850px;}
.y1aa{bottom:660.029550px;}
.y120{bottom:661.165200px;}
.y1c8{bottom:663.682650px;}
.y102{bottom:665.034150px;}
.yb1{bottom:668.944350px;}
.y140{bottom:669.670200px;}
.y184{bottom:670.259700px;}
.y35{bottom:671.221950px;}
.y18{bottom:672.234450px;}
.y1eb{bottom:672.984600px;}
.y91{bottom:674.573850px;}
.y22c{bottom:674.701950px;}
.yd6{bottom:675.355350px;}
.y1a9{bottom:678.780000px;}
.y11f{bottom:679.915200px;}
.y1c7{bottom:682.432650px;}
.y101{bottom:683.784150px;}
.yb0{bottom:684.694350px;}
.y183{bottom:689.009700px;}
.yac{bottom:689.808000px;}
.y34{bottom:689.974950px;}
.y15c{bottom:691.312800px;}
.y1ea{bottom:691.734600px;}
.yd5{bottom:694.105350px;}
.y17{bottom:696.477300px;}
.y212{bottom:696.797400px;}
.y22b{bottom:697.201950px;}
.y11e{bottom:698.665200px;}
.y1c6{bottom:701.182650px;}
.y100{bottom:702.534150px;}
.yab{bottom:704.808000px;}
.y2c{bottom:705.794850px;}
.y182{bottom:707.759700px;}
.y15b{bottom:710.062800px;}
.y1a8{bottom:710.285550px;}
.ye2{bottom:711.069900px;}
.y8d{bottom:713.335200px;}
.y211{bottom:715.547400px;}
.y13f{bottom:715.882050px;}
.y11d{bottom:717.415200px;}
.y33{bottom:719.358450px;}
.y22a{bottom:719.701950px;}
.y1c5{bottom:719.932650px;}
.y16{bottom:720.736800px;}
.yaa{bottom:721.933950px;}
.y1e9{bottom:723.240450px;}
.yff{bottom:725.536200px;}
.y181{bottom:726.509700px;}
.y15a{bottom:728.812800px;}
.y8c{bottom:729.085200px;}
.y170{bottom:729.368250px;}
.yd4{bottom:729.819900px;}
.y2b{bottom:732.794850px;}
.y13e{bottom:734.632050px;}
.y11c{bottom:736.165200px;}
.y32{bottom:738.111450px;}
.y1c4{bottom:738.682650px;}
.ya9{bottom:739.059900px;}
.y210{bottom:740.675400px;}
.y8b{bottom:744.835200px;}
.y15{bottom:744.996300px;}
.y180{bottom:745.259700px;}
.y159{bottom:747.562800px;}
.y16f{bottom:748.118250px;}
.yd3{bottom:748.569900px;}
.y1e8{bottom:751.740450px;}
.y229{bottom:752.831850px;}
.y13d{bottom:753.382050px;}
.ya8{bottom:754.059900px;}
.y11b{bottom:754.915200px;}
.y31{bottom:756.864450px;}
.y1c3{bottom:757.432650px;}
.y20f{bottom:759.425400px;}
.y2a{bottom:759.794850px;}
.yfe{bottom:761.294100px;}
.y17f{bottom:764.009700px;}
.ye1{bottom:765.534600px;}
.y158{bottom:766.312800px;}
.y16e{bottom:766.868250px;}
.ya7{bottom:769.059900px;}
.y14{bottom:769.255800px;}
.y13c{bottom:772.131900px;}
.y11a{bottom:773.665350px;}
.y228{bottom:775.331850px;}
.y1c2{bottom:776.182650px;}
.yfd{bottom:780.044100px;}
.y17e{bottom:782.759700px;}
.y30{bottom:784.118250px;}
.yd2{bottom:784.284600px;}
.y20e{bottom:784.553250px;}
.y13{bottom:785.000250px;}
.y157{bottom:785.062800px;}
.y13b{bottom:790.881900px;}
.y119{bottom:792.415350px;}
.y1c1{bottom:794.932650px;}
.y29{bottom:795.298350px;}
.y227{bottom:797.831850px;}
.y16d{bottom:798.374100px;}
.yfc{bottom:798.794100px;}
.y1a7{bottom:800.268150px;}
.y17d{bottom:801.509700px;}
.y20d{bottom:803.303250px;}
.y156{bottom:803.812800px;}
.y12{bottom:809.242950px;}
.y13a{bottom:809.631900px;}
.y1e7{bottom:809.845500px;}
.y118{bottom:811.165350px;}
.y1c0{bottom:813.682650px;}
.yfb{bottom:817.544100px;}
.y1a6{bottom:819.021150px;}
.yd1{bottom:819.999150px;}
.y17c{bottom:820.259700px;}
.y226{bottom:820.331850px;}
.y28{bottom:822.298350px;}
.y155{bottom:822.562800px;}
.y139{bottom:828.381900px;}
.y20c{bottom:828.431250px;}
.y1e6{bottom:828.595500px;}
.ya6{bottom:831.492300px;}
.y1bf{bottom:832.432650px;}
.y11{bottom:833.502450px;}
.y117{bottom:834.167250px;}
.yfa{bottom:836.294100px;}
.y1a5{bottom:837.774150px;}
.y17b{bottom:839.009700px;}
.y225{bottom:842.831850px;}
.y8a{bottom:842.862600px;}
.y83{bottom:845.319450px;}
.y154{bottom:845.564850px;}
.ya5{bottom:846.492300px;}
.y138{bottom:847.131900px;}
.y1e5{bottom:847.345500px;}
.y27{bottom:849.298350px;}
.yf9{bottom:855.044100px;}
.y1a4{bottom:856.527150px;}
.y17a{bottom:857.759700px;}
.y10{bottom:857.761950px;}
.y20b{bottom:857.811150px;}
.y82{bottom:858.063450px;}
.y89{bottom:858.612600px;}
.ya4{bottom:863.618250px;}
.yeb{bottom:863.672400px;}
.y1be{bottom:863.938500px;}
.y137{bottom:865.881900px;}
.y1e4{bottom:866.095500px;}
.y116{bottom:869.925150px;}
.y73{bottom:870.735450px;}
.y78{bottom:870.759450px;}
.y81{bottom:870.807450px;}
.y16c{bottom:871.360800px;}
.yf8{bottom:873.794100px;}
.y88{bottom:874.362600px;}
.y1a3{bottom:875.280150px;}
.y26{bottom:876.298350px;}
.y179{bottom:876.509700px;}
.y20a{bottom:876.561150px;}
.ya3{bottom:878.618250px;}
.y153{bottom:881.322750px;}
.yf{bottom:882.016050px;}
.y66{bottom:883.407450px;}
.y6a{bottom:883.431450px;}
.y6e{bottom:883.455450px;}
.yea{bottom:883.472400px;}
.y72{bottom:883.479450px;}
.y77{bottom:883.503450px;}
.y7c{bottom:883.527450px;}
.y80{bottom:883.551450px;}
.y136{bottom:884.631900px;}
.y1e3{bottom:884.845500px;}
.y115{bottom:888.675150px;}
.y16b{bottom:890.110800px;}
.y21e{bottom:891.850500px;}
.y1bd{bottom:892.438500px;}
.yf7{bottom:892.544100px;}
.ya2{bottom:893.618250px;}
.y178{bottom:895.259700px;}
.y65{bottom:896.151450px;}
.y69{bottom:896.175450px;}
.y6d{bottom:896.199450px;}
.y71{bottom:896.223450px;}
.y76{bottom:896.247450px;}
.y7b{bottom:896.271450px;}
.y7f{bottom:896.295450px;}
.y152{bottom:900.072750px;}
.ye9{bottom:902.222400px;}
.y25{bottom:903.298500px;}
.y135{bottom:903.381900px;}
.y1e2{bottom:903.595500px;}
.y4{bottom:904.268400px;}
.y1a2{bottom:904.646550px;}
.ye{bottom:906.275550px;}
.y114{bottom:907.425150px;}
.y209{bottom:908.067150px;}
.y16a{bottom:908.860800px;}
.y64{bottom:908.895450px;}
.y68{bottom:908.919450px;}
.y6c{bottom:908.943450px;}
.y70{bottom:908.967450px;}
.y75{bottom:908.991450px;}
.y7a{bottom:909.015450px;}
.y7e{bottom:909.039450px;}
.yf6{bottom:911.294100px;}
.y177{bottom:914.009700px;}
.y151{bottom:918.822750px;}
.y63{bottom:921.639450px;}
.y67{bottom:921.663450px;}
.y6b{bottom:921.687450px;}
.y6f{bottom:921.711450px;}
.y74{bottom:921.735450px;}
.y79{bottom:921.759450px;}
.y7d{bottom:921.783450px;}
.yd{bottom:922.014300px;}
.y134{bottom:922.131900px;}
.y1a1{bottom:925.651050px;}
.y113{bottom:926.175150px;}
.y169{bottom:927.610800px;}
.ye8{bottom:929.476350px;}
.yf5{bottom:930.044100px;}
.y24{bottom:930.298500px;}
.y176{bottom:932.759700px;}
.y150{bottom:937.572750px;}
.y21d{bottom:941.350500px;}
.y112{bottom:944.925150px;}
.y133{bottom:945.133950px;}
.yc{bottom:946.273800px;}
.y1a0{bottom:946.655550px;}
.yf4{bottom:948.794100px;}
.y84{bottom:951.469650px;}
.y175{bottom:951.509700px;}
.ya1{bottom:954.350700px;}
.y14f{bottom:956.322750px;}
.y168{bottom:956.990700px;}
.y111{bottom:963.675150px;}
.y23{bottom:965.802000px;}
.y208{bottom:966.172050px;}
.yf3{bottom:967.544100px;}
.y19f{bottom:967.660050px;}
.ya0{bottom:969.350700px;}
.y174{bottom:970.259700px;}
.yb{bottom:970.511100px;}
.y1bc{bottom:970.852350px;}
.y14e{bottom:975.072750px;}
.y87{bottom:975.575250px;}
.y167{bottom:975.740700px;}
.y132{bottom:980.891850px;}
.y3{bottom:981.925350px;}
.y110{bottom:982.425150px;}
.y62{bottom:983.135850px;}
.y9f{bottom:984.350700px;}
.y207{bottom:984.922050px;}
.yf2{bottom:986.294100px;}
.y173{bottom:989.009700px;}
.y1bb{bottom:989.602350px;}
.y21c{bottom:990.850500px;}
.y86{bottom:991.325250px;}
.y22{bottom:992.802000px;}
.y14d{bottom:993.822750px;}
.y166{bottom:994.490700px;}
.ya{bottom:994.770600px;}
.y19e{bottom:999.283350px;}
.y9e{bottom:999.350700px;}
.y131{bottom:999.641850px;}
.ycc{bottom:1003.607700px;}
.y206{bottom:1003.672050px;}
.yf1{bottom:1005.044100px;}
.y10f{bottom:1005.427050px;}
.y1ba{bottom:1008.352350px;}
.y14c{bottom:1012.572750px;}
.y165{bottom:1013.240700px;}
.y9d{bottom:1014.350700px;}
.y19d{bottom:1018.036350px;}
.y130{bottom:1018.391850px;}
.y9{bottom:1019.030100px;}
.y21{bottom:1019.802000px;}
.y205{bottom:1022.422050px;}
.yf0{bottom:1023.794100px;}
.y1b9{bottom:1027.102350px;}
.y14b{bottom:1031.322750px;}
.y164{bottom:1031.990700px;}
.y61{bottom:1035.254400px;}
.y12f{bottom:1037.141850px;}
.y21b{bottom:1040.350500px;}
.y10e{bottom:1041.184950px;}
.y8{bottom:1043.289600px;}
.yef{bottom:1046.796000px;}
.y20{bottom:1046.802000px;}
.y19c{bottom:1047.419850px;}
.y14a{bottom:1050.072750px;}
.y172{bottom:1052.866650px;}
.y204{bottom:1053.928050px;}
.ycb{bottom:1054.088550px;}
.y1b8{bottom:1054.356300px;}
.y12e{bottom:1055.891850px;}
.y10d{bottom:1059.934950px;}
.y163{bottom:1063.496550px;}
.y19b{bottom:1066.163850px;}
.y7{bottom:1067.549100px;}
.y149{bottom:1073.074800px;}
.y1f{bottom:1073.802000px;}
.yee{bottom:1074.049950px;}
.y12d{bottom:1074.641850px;}
.y10c{bottom:1078.684950px;}
.y5{bottom:1081.913400px;}
.y19a{bottom:1084.916850px;}
.yed{bottom:1094.749950px;}
.y10b{bottom:1097.434950px;}
.y12c{bottom:1097.643750px;}
.y1e{bottom:1100.802000px;}
.y199{bottom:1103.669850px;}
.y148{bottom:1108.832550px;}
.y85{bottom:1110.894600px;}
.y171{bottom:1112.341800px;}
.y6{bottom:1112.803050px;}
.y203{bottom:1113.402900px;}
.yca{bottom:1113.563550px;}
.y12b{bottom:1116.393750px;}
.y162{bottom:1122.971700px;}
.y2f{bottom:1124.495850px;}
.y147{bottom:1127.582550px;}
.y1d{bottom:1127.802000px;}
.yec{bottom:1135.175700px;}
.y12a{bottom:1143.647700px;}
.y146{bottom:1146.332550px;}
.y2{bottom:1201.406550px;}
.h4{height:34.944000px;}
.h2{height:35.184000px;}
.h3{height:37.128000px;}
.h9{height:39.582000px;}
.h8{height:40.284000px;}
.hb{height:40.305600px;}
.hd{height:40.350600px;}
.hc{height:40.351200px;}
.he{height:40.371000px;}
.ha{height:40.372800px;}
.h11{height:41.667000px;}
.h12{height:41.781000px;}
.h17{height:42.237000px;}
.h15{height:42.522000px;}
.h16{height:44.460000px;}
.h1b{height:48.246000px;}
.h18{height:48.378000px;}
.h14{height:49.236000px;}
.h10{height:53.712000px;}
.hf{height:61.572000px;}
.h6{height:80.568000px;}
.h13{height:86.160000px;}
.h1a{height:127.542000px;}
.h7{height:129.240000px;}
.h19{height:129.804000px;}
.h5{height:228.324000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:70.157550px;}
.x5{left:91.417350px;}
.x3{left:119.055150px;}
.x2{left:120.118050px;}
.x9{left:125.799000px;}
.xa{left:128.451000px;}
.x7{left:132.546000px;}
.x2d{left:134.358600px;}
.x8{left:135.651000px;}
.x27{left:137.650500px;}
.xb{left:140.307000px;}
.x26{left:143.920350px;}
.x23{left:146.628300px;}
.x28{left:149.812650px;}
.x25{left:151.201800px;}
.x35{left:153.070800px;}
.x36{left:161.574750px;}
.x24{left:166.542000px;}
.x37{left:195.590550px;}
.xd{left:214.059000px;}
.xe{left:216.951000px;}
.xc{left:221.931000px;}
.x2e{left:243.142500px;}
.x2f{left:244.559400px;}
.x31{left:246.614100px;}
.x11{left:312.639000px;}
.x10{left:318.855000px;}
.xf{left:320.535000px;}
.x39{left:369.921300px;}
.x12{left:403.347000px;}
.x14{left:404.895000px;}
.x13{left:406.779000px;}
.x15{left:414.999000px;}
.x6{left:457.086600px;}
.x34{left:478.346400px;}
.x2b{left:482.431950px;}
.x33{left:485.914500px;}
.x29{left:487.348050px;}
.x32{left:491.191200px;}
.x2a{left:492.484800px;}
.x2c{left:494.594100px;}
.x16{left:496.035000px;}
.x19{left:501.687000px;}
.x18{left:505.707000px;}
.x17{left:512.139000px;}
.x1d{left:587.751000px;}
.x1b{left:590.199000px;}
.x30{left:592.883850px;}
.x1a{left:598.731000px;}
.x1c{left:602.511000px;}
.x21{left:676.191000px;}
.x20{left:679.263000px;}
.x22{left:686.019000px;}
.x1e{left:692.523000px;}
.x1f{left:699.675000px;}
.x38{left:760.514250px;}
.x1{left:767.186250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-4.821333pt;}
.lsd{letter-spacing:-2.128000pt;}
.lse{letter-spacing:-1.546667pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.253333pt;}
.ls1{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.760000pt;}
.ls2{letter-spacing:2.133333pt;}
.ws21{word-spacing:-50.413333pt;}
.ws2{word-spacing:-49.280000pt;}
.ws19{word-spacing:-21.973333pt;}
.ws18{word-spacing:-17.792000pt;}
.wsf{word-spacing:-14.845333pt;}
.ws10{word-spacing:-14.560000pt;}
.wse{word-spacing:-13.832000pt;}
.ws1c{word-spacing:-13.829333pt;}
.ws1{word-spacing:-13.344000pt;}
.ws20{word-spacing:-11.957333pt;}
.ws11{word-spacing:-11.648000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws16{word-spacing:-7.698133pt;}
.ws17{word-spacing:-7.697600pt;}
.ws7{word-spacing:-6.816000pt;}
.ws6{word-spacing:-5.472000pt;}
.ws4{word-spacing:-5.088000pt;}
.ws8{word-spacing:-4.656000pt;}
.ws9{word-spacing:-2.496000pt;}
.ws1f{word-spacing:-2.133333pt;}
.ws12{word-spacing:-1.874667pt;}
.ws1a{word-spacing:-0.456000pt;}
.ws14{word-spacing:-0.336000pt;}
.ws1b{word-spacing:-0.152000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.213333pt;}
.ws5{word-spacing:0.240000pt;}
.ws1e{word-spacing:0.250667pt;}
.wsb{word-spacing:0.253333pt;}
.ws1d{word-spacing:0.256000pt;}
.ws22{word-spacing:0.293333pt;}
.wsc{word-spacing:0.853333pt;}
.wsd{word-spacing:1.280000pt;}
.wsa{word-spacing:175.589333pt;}
._2{margin-left:-15.546667pt;}
._3{margin-left:-8.508267pt;}
._7{margin-left:-5.866667pt;}
._5{margin-left:-4.832000pt;}
._0{margin-left:-3.354667pt;}
._1{margin-left:-1.677333pt;}
._6{width:0.953600pt;}
._8{width:2.018667pt;}
._4{width:4.081600pt;}
._d{width:37.442667pt;}
._a{width:193.072000pt;}
._9{width:203.690667pt;}
._b{width:207.914667pt;}
._c{width:217.242667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs9{font-size:106.666667pt;}
.fsc{font-size:154.666667pt;}
.fs4{font-size:160.000000pt;}
.fs2{font-size:282.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:35.827333pt;}
.y4c{bottom:76.075733pt;}
.y224{bottom:76.877200pt;}
.yc6{bottom:81.040000pt;}
.y5f{bottom:88.045733pt;}
.y223{bottom:90.210533pt;}
.y4b{bottom:92.745067pt;}
.yc5{bottom:95.040000pt;}
.y222{bottom:103.543867pt;}
.y5e{bottom:104.715067pt;}
.y1e1{bottom:108.055067pt;}
.y4a{bottom:109.414400pt;}
.y221{bottom:116.877200pt;}
.y5d{bottom:121.384400pt;}
.y1e0{bottom:124.721733pt;}
.y49{bottom:126.083733pt;}
.y198{bottom:130.028000pt;}
.y220{bottom:130.210533pt;}
.y5c{bottom:138.053733pt;}
.y1df{bottom:141.388400pt;}
.y48{bottom:142.753067pt;}
.y21f{bottom:143.543867pt;}
.y197{bottom:146.694667pt;}
.y5b{bottom:154.723067pt;}
.y1de{bottom:158.055067pt;}
.y47{bottom:159.422400pt;}
.y202{bottom:159.887867pt;}
.y5a{bottom:171.392400pt;}
.y196{bottom:172.810133pt;}
.y1dd{bottom:174.721733pt;}
.y46{bottom:176.091733pt;}
.y201{bottom:176.554533pt;}
.y59{bottom:188.061733pt;}
.y195{bottom:189.476800pt;}
.y1dc{bottom:191.388400pt;}
.y45{bottom:192.761067pt;}
.y200{bottom:193.221200pt;}
.y58{bottom:204.731067pt;}
.y1db{bottom:208.055067pt;}
.y1ff{bottom:209.887867pt;}
.y194{bottom:215.592267pt;}
.y44{bottom:216.986800pt;}
.y57{bottom:221.400400pt;}
.y1da{bottom:224.721733pt;}
.y1fe{bottom:226.554533pt;}
.y56{bottom:238.069733pt;}
.y1d9{bottom:241.388400pt;}
.y193{bottom:241.707733pt;}
.y1fd{bottom:243.221200pt;}
.y9c{bottom:251.637333pt;}
.y43{bottom:254.265733pt;}
.y55{bottom:254.739067pt;}
.y1d8{bottom:258.055067pt;}
.y1fc{bottom:259.887867pt;}
.y9b{bottom:265.637333pt;}
.y192{bottom:267.823200pt;}
.y42{bottom:270.935067pt;}
.y54{bottom:271.408400pt;}
.yd0{bottom:272.126000pt;}
.y1d7{bottom:274.721733pt;}
.y9a{bottom:282.304000pt;}
.y191{bottom:284.489867pt;}
.y41{bottom:287.604400pt;}
.y1fb{bottom:287.893067pt;}
.ycf{bottom:288.792667pt;}
.y53{bottom:297.527067pt;}
.y1d6{bottom:302.727067pt;}
.y40{bottom:304.273733pt;}
.yce{bottom:305.459333pt;}
.y190{bottom:310.605333pt;}
.y1fa{bottom:313.226400pt;}
.y52{bottom:314.196400pt;}
.y3f{bottom:320.943067pt;}
.ycd{bottom:329.685067pt;}
.y51{bottom:330.865733pt;}
.yc9{bottom:331.903733pt;}
.y18f{bottom:336.720800pt;}
.y3e{bottom:337.612400pt;}
.y99{bottom:339.293600pt;}
.yc8{bottom:345.903733pt;}
.y50{bottom:347.535067pt;}
.y1b7{bottom:351.127600pt;}
.y98{bottom:353.293600pt;}
.y18e{bottom:353.387467pt;}
.y3d{bottom:354.281733pt;}
.y1d5{bottom:354.375867pt;}
.yc7{bottom:359.903733pt;}
.y4f{bottom:364.204400pt;}
.y1f9{bottom:364.875200pt;}
.y1b6{bottom:367.794267pt;}
.yc4{bottom:368.206400pt;}
.y3c{bottom:370.951067pt;}
.y1d4{bottom:371.042533pt;}
.ybf{bottom:376.317333pt;}
.y4e{bottom:380.873733pt;}
.y1f8{bottom:381.541867pt;}
.yc3{bottom:382.206400pt;}
.y1b5{bottom:384.460933pt;}
.y1d3{bottom:387.709200pt;}
.ybe{bottom:390.317333pt;}
.y3b{bottom:395.176800pt;}
.y4d{bottom:397.543067pt;}
.yc2{bottom:398.096133pt;}
.y1f7{bottom:398.208533pt;}
.y1b4{bottom:401.127600pt;}
.ybd{bottom:404.317333pt;}
.y1d2{bottom:404.375867pt;}
.y235{bottom:410.286267pt;}
.yc1{bottom:412.096133pt;}
.yb7{bottom:412.279200pt;}
.ye0{bottom:414.751600pt;}
.y1f6{bottom:414.875200pt;}
.y1b3{bottom:417.794267pt;}
.ybc{bottom:418.317333pt;}
.y1d1{bottom:421.042533pt;}
.yc0{bottom:426.096133pt;}
.yb6{bottom:426.279200pt;}
.y18b{bottom:429.337867pt;}
.y21a{bottom:430.272667pt;}
.y234{bottom:430.286267pt;}
.ydf{bottom:431.418267pt;}
.y1f5{bottom:431.541867pt;}
.y60{bottom:433.000533pt;}
.y1b2{bottom:434.460933pt;}
.y129{bottom:436.769067pt;}
.yb8{bottom:438.877867pt;}
.y10a{bottom:438.910533pt;}
.yb5{bottom:440.279200pt;}
.y219{bottom:446.939333pt;}
.y1d0{bottom:447.158000pt;}
.y2e{bottom:447.959333pt;}
.y18a{bottom:448.004533pt;}
.yde{bottom:448.084933pt;}
.y1f4{bottom:448.208533pt;}
.y233{bottom:450.286267pt;}
.y128{bottom:454.369067pt;}
.y109{bottom:455.577200pt;}
.y1b1{bottom:460.576933pt;}
.y2d{bottom:461.959333pt;}
.y1cf{bottom:463.824667pt;}
.ydd{bottom:464.751600pt;}
.y1f3{bottom:464.875200pt;}
.y189{bottom:466.671200pt;}
.y127{bottom:471.035733pt;}
.y218{bottom:473.054800pt;}
.y97{bottom:475.287067pt;}
.y108{bottom:476.023467pt;}
.y1b0{bottom:477.243600pt;}
.y232{bottom:479.735067pt;}
.ybb{bottom:480.458800pt;}
.y1ce{bottom:480.491333pt;}
.ye7{bottom:481.418267pt;}
.y1f2{bottom:481.541867pt;}
.y126{bottom:487.702400pt;}
.y96{bottom:489.287067pt;}
.y217{bottom:489.721467pt;}
.ydc{bottom:490.867067pt;}
.y1af{bottom:493.910267pt;}
.yba{bottom:494.458800pt;}
.y1cd{bottom:497.158000pt;}
.ye6{bottom:498.084933pt;}
.y1f1{bottom:498.208533pt;}
.y231{bottom:499.735067pt;}
.y145{bottom:500.590400pt;}
.y95{bottom:503.287067pt;}
.y3a{bottom:503.865333pt;}
.y125{bottom:504.369067pt;}
.y216{bottom:506.388133pt;}
.ydb{bottom:507.533733pt;}
.y107{bottom:507.808133pt;}
.yb9{bottom:508.458800pt;}
.y1ae{bottom:510.576933pt;}
.y1c{bottom:511.957733pt;}
.y161{bottom:512.269333pt;}
.y1cc{bottom:513.824667pt;}
.ye5{bottom:514.751600pt;}
.y1f0{bottom:514.875200pt;}
.y144{bottom:517.257067pt;}
.y230{bottom:519.735067pt;}
.y39{bottom:520.534667pt;}
.y124{bottom:521.035733pt;}
.y215{bottom:523.054800pt;}
.y106{bottom:524.474800pt;}
.y18d{bottom:525.967333pt;}
.y1ad{bottom:527.243600pt;}
.y160{bottom:528.936000pt;}
.y188{bottom:529.119733pt;}
.y1cb{bottom:530.491333pt;}
.y1ef{bottom:531.541867pt;}
.y90{bottom:532.496667pt;}
.y1b{bottom:532.849733pt;}
.yda{bottom:533.649200pt;}
.y143{bottom:533.923733pt;}
.yaf{bottom:536.137333pt;}
.y38{bottom:537.204000pt;}
.y123{bottom:537.702400pt;}
.y214{bottom:539.721467pt;}
.y22f{bottom:539.735067pt;}
.y18c{bottom:539.967333pt;}
.ye4{bottom:540.867067pt;}
.y105{bottom:541.141467pt;}
.y1ac{bottom:543.910267pt;}
.y15f{bottom:545.602667pt;}
.y187{bottom:545.786400pt;}
.y8f{bottom:546.496667pt;}
.y1ee{bottom:548.208533pt;}
.yae{bottom:550.137333pt;}
.yd9{bottom:550.315867pt;}
.y142{bottom:550.590400pt;}
.yb4{bottom:550.727467pt;}
.y37{bottom:553.853733pt;}
.y122{bottom:554.369067pt;}
.y1a{bottom:554.413733pt;}
.y1ca{bottom:556.606800pt;}
.ye3{bottom:557.533733pt;}
.y94{bottom:557.621200pt;}
.y104{bottom:557.808133pt;}
.y22e{bottom:559.735067pt;}
.y8e{bottom:560.496667pt;}
.y15e{bottom:562.269333pt;}
.y186{bottom:562.453067pt;}
.yb3{bottom:564.727467pt;}
.y1ed{bottom:564.875200pt;}
.yad{bottom:566.027067pt;}
.yd8{bottom:566.982533pt;}
.y213{bottom:567.726667pt;}
.y1ab{bottom:570.026267pt;}
.y121{bottom:571.035733pt;}
.y141{bottom:571.036667pt;}
.y93{bottom:571.621200pt;}
.y1c9{bottom:573.273467pt;}
.y103{bottom:574.474800pt;}
.y19{bottom:575.977733pt;}
.y185{bottom:579.119733pt;}
.y22d{bottom:579.735067pt;}
.y36{bottom:579.972400pt;}
.yb2{bottom:580.617200pt;}
.y1ec{bottom:581.541867pt;}
.y15d{bottom:582.715467pt;}
.yd7{bottom:583.649200pt;}
.y92{bottom:585.621200pt;}
.y1aa{bottom:586.692933pt;}
.y120{bottom:587.702400pt;}
.y1c8{bottom:589.940133pt;}
.y102{bottom:591.141467pt;}
.yb1{bottom:594.617200pt;}
.y140{bottom:595.262400pt;}
.y184{bottom:595.786400pt;}
.y35{bottom:596.641733pt;}
.y18{bottom:597.541733pt;}
.y1eb{bottom:598.208533pt;}
.y91{bottom:599.621200pt;}
.y22c{bottom:599.735067pt;}
.yd6{bottom:600.315867pt;}
.y1a9{bottom:603.360000pt;}
.y11f{bottom:604.369067pt;}
.y1c7{bottom:606.606800pt;}
.y101{bottom:607.808133pt;}
.yb0{bottom:608.617200pt;}
.y183{bottom:612.453067pt;}
.yac{bottom:613.162667pt;}
.y34{bottom:613.311067pt;}
.y15c{bottom:614.500267pt;}
.y1ea{bottom:614.875200pt;}
.yd5{bottom:616.982533pt;}
.y17{bottom:619.090933pt;}
.y212{bottom:619.375467pt;}
.y22b{bottom:619.735067pt;}
.y11e{bottom:621.035733pt;}
.y1c6{bottom:623.273467pt;}
.y100{bottom:624.474800pt;}
.yab{bottom:626.496000pt;}
.y2c{bottom:627.373200pt;}
.y182{bottom:629.119733pt;}
.y15b{bottom:631.166933pt;}
.y1a8{bottom:631.364933pt;}
.ye2{bottom:632.062133pt;}
.y8d{bottom:634.075733pt;}
.y211{bottom:636.042133pt;}
.y13f{bottom:636.339600pt;}
.y11d{bottom:637.702400pt;}
.y33{bottom:639.429733pt;}
.y22a{bottom:639.735067pt;}
.y1c5{bottom:639.940133pt;}
.y16{bottom:640.654933pt;}
.yaa{bottom:641.719067pt;}
.y1e9{bottom:642.880400pt;}
.yff{bottom:644.921067pt;}
.y181{bottom:645.786400pt;}
.y15a{bottom:647.833600pt;}
.y8c{bottom:648.075733pt;}
.y170{bottom:648.327333pt;}
.yd4{bottom:648.728800pt;}
.y2b{bottom:651.373200pt;}
.y13e{bottom:653.006267pt;}
.y11c{bottom:654.369067pt;}
.y32{bottom:656.099067pt;}
.y1c4{bottom:656.606800pt;}
.ya9{bottom:656.942133pt;}
.y210{bottom:658.378133pt;}
.y8b{bottom:662.075733pt;}
.y15{bottom:662.218933pt;}
.y180{bottom:662.453067pt;}
.y159{bottom:664.500267pt;}
.y16f{bottom:664.994000pt;}
.yd3{bottom:665.395467pt;}
.y1e8{bottom:668.213733pt;}
.y229{bottom:669.183867pt;}
.y13d{bottom:669.672933pt;}
.ya8{bottom:670.275467pt;}
.y11b{bottom:671.035733pt;}
.y31{bottom:672.768400pt;}
.y1c3{bottom:673.273467pt;}
.y20f{bottom:675.044800pt;}
.y2a{bottom:675.373200pt;}
.yfe{bottom:676.705867pt;}
.y17f{bottom:679.119733pt;}
.ye1{bottom:680.475200pt;}
.y158{bottom:681.166933pt;}
.y16e{bottom:681.660667pt;}
.ya7{bottom:683.608800pt;}
.y14{bottom:683.782933pt;}
.y13c{bottom:686.339467pt;}
.y11a{bottom:687.702533pt;}
.y228{bottom:689.183867pt;}
.y1c2{bottom:689.940133pt;}
.yfd{bottom:693.372533pt;}
.y17e{bottom:695.786400pt;}
.y30{bottom:696.994000pt;}
.yd2{bottom:697.141867pt;}
.y20e{bottom:697.380667pt;}
.y13{bottom:697.778000pt;}
.y157{bottom:697.833600pt;}
.y13b{bottom:703.006133pt;}
.y119{bottom:704.369200pt;}
.y1c1{bottom:706.606800pt;}
.y29{bottom:706.931867pt;}
.y227{bottom:709.183867pt;}
.y16d{bottom:709.665867pt;}
.yfc{bottom:710.039200pt;}
.y1a7{bottom:711.349467pt;}
.y17d{bottom:712.453067pt;}
.y20d{bottom:714.047333pt;}
.y156{bottom:714.500267pt;}
.y12{bottom:719.327067pt;}
.y13a{bottom:719.672800pt;}
.y1e7{bottom:719.862667pt;}
.y118{bottom:721.035867pt;}
.y1c0{bottom:723.273467pt;}
.yfb{bottom:726.705867pt;}
.y1a6{bottom:728.018800pt;}
.yd1{bottom:728.888133pt;}
.y17c{bottom:729.119733pt;}
.y226{bottom:729.183867pt;}
.y28{bottom:730.931867pt;}
.y155{bottom:731.166933pt;}
.y139{bottom:736.339467pt;}
.y20c{bottom:736.383333pt;}
.y1e6{bottom:736.529333pt;}
.ya6{bottom:739.104267pt;}
.y1bf{bottom:739.940133pt;}
.y11{bottom:740.891067pt;}
.y117{bottom:741.482000pt;}
.yfa{bottom:743.372533pt;}
.y1a5{bottom:744.688133pt;}
.y17b{bottom:745.786400pt;}
.y225{bottom:749.183867pt;}
.y8a{bottom:749.211200pt;}
.y83{bottom:751.395067pt;}
.y154{bottom:751.613200pt;}
.ya5{bottom:752.437600pt;}
.y138{bottom:753.006133pt;}
.y1e5{bottom:753.196000pt;}
.y27{bottom:754.931867pt;}
.yf9{bottom:760.039200pt;}
.y1a4{bottom:761.357467pt;}
.y17a{bottom:762.453067pt;}
.y10{bottom:762.455067pt;}
.y20b{bottom:762.498800pt;}
.y82{bottom:762.723067pt;}
.y89{bottom:763.211200pt;}
.ya4{bottom:767.660667pt;}
.yeb{bottom:767.708800pt;}
.y1be{bottom:767.945333pt;}
.y137{bottom:769.672800pt;}
.y1e4{bottom:769.862667pt;}
.y116{bottom:773.266800pt;}
.y73{bottom:773.987067pt;}
.y78{bottom:774.008400pt;}
.y81{bottom:774.051067pt;}
.y16c{bottom:774.542933pt;}
.yf8{bottom:776.705867pt;}
.y88{bottom:777.211200pt;}
.y1a3{bottom:778.026800pt;}
.y26{bottom:778.931867pt;}
.y179{bottom:779.119733pt;}
.y20a{bottom:779.165467pt;}
.ya3{bottom:780.994000pt;}
.y153{bottom:783.398000pt;}
.yf{bottom:784.014267pt;}
.y66{bottom:785.251067pt;}
.y6a{bottom:785.272400pt;}
.y6e{bottom:785.293733pt;}
.yea{bottom:785.308800pt;}
.y72{bottom:785.315067pt;}
.y77{bottom:785.336400pt;}
.y7c{bottom:785.357733pt;}
.y80{bottom:785.379067pt;}
.y136{bottom:786.339467pt;}
.y1e3{bottom:786.529333pt;}
.y115{bottom:789.933467pt;}
.y16b{bottom:791.209600pt;}
.y21e{bottom:792.756000pt;}
.y1bd{bottom:793.278667pt;}
.yf7{bottom:793.372533pt;}
.ya2{bottom:794.327333pt;}
.y178{bottom:795.786400pt;}
.y65{bottom:796.579067pt;}
.y69{bottom:796.600400pt;}
.y6d{bottom:796.621733pt;}
.y71{bottom:796.643067pt;}
.y76{bottom:796.664400pt;}
.y7b{bottom:796.685733pt;}
.y7f{bottom:796.707067pt;}
.y152{bottom:800.064667pt;}
.ye9{bottom:801.975467pt;}
.y25{bottom:802.932000pt;}
.y135{bottom:803.006133pt;}
.y1e2{bottom:803.196000pt;}
.y4{bottom:803.794133pt;}
.y1a2{bottom:804.130267pt;}
.ye{bottom:805.578267pt;}
.y114{bottom:806.600133pt;}
.y209{bottom:807.170800pt;}
.y16a{bottom:807.876267pt;}
.y64{bottom:807.907067pt;}
.y68{bottom:807.928400pt;}
.y6c{bottom:807.949733pt;}
.y70{bottom:807.971067pt;}
.y75{bottom:807.992400pt;}
.y7a{bottom:808.013733pt;}
.y7e{bottom:808.035067pt;}
.yf6{bottom:810.039200pt;}
.y177{bottom:812.453067pt;}
.y151{bottom:816.731333pt;}
.y63{bottom:819.235067pt;}
.y67{bottom:819.256400pt;}
.y6b{bottom:819.277733pt;}
.y6f{bottom:819.299067pt;}
.y74{bottom:819.320400pt;}
.y79{bottom:819.341733pt;}
.y7d{bottom:819.363067pt;}
.yd{bottom:819.568267pt;}
.y134{bottom:819.672800pt;}
.y1a1{bottom:822.800933pt;}
.y113{bottom:823.266800pt;}
.y169{bottom:824.542933pt;}
.ye8{bottom:826.201200pt;}
.yf5{bottom:826.705867pt;}
.y24{bottom:826.932000pt;}
.y176{bottom:829.119733pt;}
.y150{bottom:833.398000pt;}
.y21d{bottom:836.756000pt;}
.y112{bottom:839.933467pt;}
.y133{bottom:840.119067pt;}
.yc{bottom:841.132267pt;}
.y1a0{bottom:841.471600pt;}
.yf4{bottom:843.372533pt;}
.y84{bottom:845.750800pt;}
.y175{bottom:845.786400pt;}
.ya1{bottom:848.311733pt;}
.y14f{bottom:850.064667pt;}
.y168{bottom:850.658400pt;}
.y111{bottom:856.600133pt;}
.y23{bottom:858.490667pt;}
.y208{bottom:858.819600pt;}
.yf3{bottom:860.039200pt;}
.y19f{bottom:860.142267pt;}
.ya0{bottom:861.645067pt;}
.y174{bottom:862.453067pt;}
.yb{bottom:862.676533pt;}
.y1bc{bottom:862.979867pt;}
.y14e{bottom:866.731333pt;}
.y87{bottom:867.178000pt;}
.y167{bottom:867.325067pt;}
.y132{bottom:871.903867pt;}
.y3{bottom:872.822533pt;}
.y110{bottom:873.266800pt;}
.y62{bottom:873.898533pt;}
.y9f{bottom:874.978400pt;}
.y207{bottom:875.486267pt;}
.yf2{bottom:876.705867pt;}
.y173{bottom:879.119733pt;}
.y1bb{bottom:879.646533pt;}
.y21c{bottom:880.756000pt;}
.y86{bottom:881.178000pt;}
.y22{bottom:882.490667pt;}
.y14d{bottom:883.398000pt;}
.y166{bottom:883.991733pt;}
.ya{bottom:884.240533pt;}
.y19e{bottom:888.251867pt;}
.y9e{bottom:888.311733pt;}
.y131{bottom:888.570533pt;}
.ycc{bottom:892.095733pt;}
.y206{bottom:892.152933pt;}
.yf1{bottom:893.372533pt;}
.y10f{bottom:893.712933pt;}
.y1ba{bottom:896.313200pt;}
.y14c{bottom:900.064667pt;}
.y165{bottom:900.658400pt;}
.y9d{bottom:901.645067pt;}
.y19d{bottom:904.921200pt;}
.y130{bottom:905.237200pt;}
.y9{bottom:905.804533pt;}
.y21{bottom:906.490667pt;}
.y205{bottom:908.819600pt;}
.yf0{bottom:910.039200pt;}
.y1b9{bottom:912.979867pt;}
.y14b{bottom:916.731333pt;}
.y164{bottom:917.325067pt;}
.y61{bottom:920.226133pt;}
.y12f{bottom:921.903867pt;}
.y21b{bottom:924.756000pt;}
.y10e{bottom:925.497733pt;}
.y8{bottom:927.368533pt;}
.yef{bottom:930.485333pt;}
.y20{bottom:930.490667pt;}
.y19c{bottom:931.039867pt;}
.y14a{bottom:933.398000pt;}
.y172{bottom:935.881467pt;}
.y204{bottom:936.824933pt;}
.ycb{bottom:936.967600pt;}
.y1b8{bottom:937.205600pt;}
.y12e{bottom:938.570533pt;}
.y10d{bottom:942.164400pt;}
.y163{bottom:945.330267pt;}
.y19b{bottom:947.701200pt;}
.y7{bottom:948.932533pt;}
.y149{bottom:953.844267pt;}
.y1f{bottom:954.490667pt;}
.yee{bottom:954.711067pt;}
.y12d{bottom:955.237200pt;}
.y10c{bottom:958.831067pt;}
.y5{bottom:961.700800pt;}
.y19a{bottom:964.370533pt;}
.yed{bottom:973.111067pt;}
.y10b{bottom:975.497733pt;}
.y12c{bottom:975.683333pt;}
.y1e{bottom:978.490667pt;}
.y199{bottom:981.039867pt;}
.y148{bottom:985.628933pt;}
.y85{bottom:987.461867pt;}
.y171{bottom:988.748267pt;}
.y6{bottom:989.158267pt;}
.y203{bottom:989.691467pt;}
.yca{bottom:989.834267pt;}
.y12b{bottom:992.350000pt;}
.y162{bottom:998.197067pt;}
.y2f{bottom:999.551867pt;}
.y147{bottom:1002.295600pt;}
.y1d{bottom:1002.490667pt;}
.yec{bottom:1009.045067pt;}
.y12a{bottom:1016.575733pt;}
.y146{bottom:1018.962267pt;}
.y2{bottom:1067.916933pt;}
.h4{height:31.061333pt;}
.h2{height:31.274667pt;}
.h3{height:33.002667pt;}
.h9{height:35.184000pt;}
.h8{height:35.808000pt;}
.hb{height:35.827200pt;}
.hd{height:35.867200pt;}
.hc{height:35.867733pt;}
.he{height:35.885333pt;}
.ha{height:35.886933pt;}
.h11{height:37.037333pt;}
.h12{height:37.138667pt;}
.h17{height:37.544000pt;}
.h15{height:37.797333pt;}
.h16{height:39.520000pt;}
.h1b{height:42.885333pt;}
.h18{height:43.002667pt;}
.h14{height:43.765333pt;}
.h10{height:47.744000pt;}
.hf{height:54.730667pt;}
.h6{height:71.616000pt;}
.h13{height:76.586667pt;}
.h1a{height:113.370667pt;}
.h7{height:114.880000pt;}
.h19{height:115.381333pt;}
.h5{height:202.954667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:62.362267pt;}
.x5{left:81.259867pt;}
.x3{left:105.826800pt;}
.x2{left:106.771600pt;}
.x9{left:111.821333pt;}
.xa{left:114.178667pt;}
.x7{left:117.818667pt;}
.x2d{left:119.429867pt;}
.x8{left:120.578667pt;}
.x27{left:122.356000pt;}
.xb{left:124.717333pt;}
.x26{left:127.929200pt;}
.x23{left:130.336267pt;}
.x28{left:133.166800pt;}
.x25{left:134.401600pt;}
.x35{left:136.062933pt;}
.x36{left:143.622000pt;}
.x24{left:148.037333pt;}
.x37{left:173.858267pt;}
.xd{left:190.274667pt;}
.xe{left:192.845333pt;}
.xc{left:197.272000pt;}
.x2e{left:216.126667pt;}
.x2f{left:217.386133pt;}
.x31{left:219.212533pt;}
.x11{left:277.901333pt;}
.x10{left:283.426667pt;}
.xf{left:284.920000pt;}
.x39{left:328.818933pt;}
.x12{left:358.530667pt;}
.x14{left:359.906667pt;}
.x13{left:361.581333pt;}
.x15{left:368.888000pt;}
.x6{left:406.299200pt;}
.x34{left:425.196800pt;}
.x2b{left:428.828400pt;}
.x33{left:431.924000pt;}
.x29{left:433.198267pt;}
.x32{left:436.614400pt;}
.x2a{left:437.764267pt;}
.x2c{left:439.639200pt;}
.x16{left:440.920000pt;}
.x19{left:445.944000pt;}
.x18{left:449.517333pt;}
.x17{left:455.234667pt;}
.x1d{left:522.445333pt;}
.x1b{left:524.621333pt;}
.x30{left:527.007867pt;}
.x1a{left:532.205333pt;}
.x1c{left:535.565333pt;}
.x21{left:601.058667pt;}
.x20{left:603.789333pt;}
.x22{left:609.794667pt;}
.x1e{left:615.576000pt;}
.x1f{left:621.933333pt;}
.x38{left:676.012667pt;}
.x1{left:681.943333pt;}
}




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