
    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_377e47f6e354360271b1bedc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c216222935b4519927db9ce6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1d7f495ff2dd1b3cd238eb1f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_5a704f029ee06173ee29dd96.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3d98af29f963691107481649.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_de99319045332c76d2475fb3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b31aec1c8771ff253a491d4e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_af570e12d773b6548a59ddb2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b3dccae993a96d0b60eb9bc3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8db9da7545d992eae76a9162.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_23574c5c15266230895904f0.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2481aec15cd35839111c69c7.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_62c9b51ffb3dcfd1d63b2fc7.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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:ff12;src:url('chunks/assets/font_4808ba7faef4ab890f758ced.woff')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_5e20ea8b124da6c10996dc5b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-2.724000px;}
.ls14{letter-spacing:-2.250000px;}
.ls15{letter-spacing:-1.740000px;}
.lsc{letter-spacing:-1.596000px;}
.lsa{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.378000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.690000px;}
.ls10{letter-spacing:0.994500px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.416000px;}
.ls13{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.034000px;}
.ls11{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.370000px;}
.ls6{letter-spacing:4.779000px;}
.ls17{letter-spacing:15.387000px;}
.ls16{letter-spacing:46.887000px;}
.lsf{letter-spacing:64.887000px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws9{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wsa{word-spacing:-15.619500px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.221000px;}
.wsd{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wsc{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-10.459200px;}
._b{margin-left:-9.451200px;}
._a{margin-left:-6.586500px;}
._7{margin-left:-4.977450px;}
._9{margin-left:-3.391050px;}
._2{margin-left:-2.304000px;}
._1{margin-left:-1.188000px;}
._0{width:1.404000px;}
._4{width:2.436000px;}
._3{width:3.438000px;}
._5{width:4.512000px;}
._d{width:5.927550px;}
._c{width:7.178100px;}
._f{width:8.766000px;}
._6{width:9.894000px;}
._e{width:11.729400px;}
._12{width:13.131000px;}
._19{width:15.852900px;}
._11{width:17.028000px;}
._10{width:20.911500px;}
._15{width:21.932100px;}
._14{width:24.906000px;}
._13{width:26.683500px;}
._17{width:30.675000px;}
._16{width:34.713000px;}
._18{width:35.793000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y9c{bottom:3.390000px;}
.y98{bottom:3.405000px;}
.yac{bottom:3.420000px;}
.y18{bottom:4.500000px;}
.y4c{bottom:4.515000px;}
.yba{bottom:4.545000px;}
.y4f{bottom:10.125000px;}
.ye{bottom:11.280000px;}
.y1a{bottom:12.375000px;}
.ya9{bottom:12.390000px;}
.ya0{bottom:12.405000px;}
.y9d{bottom:12.420000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y50{bottom:21.405000px;}
.y4b{bottom:21.420000px;}
.yb7{bottom:22.545000px;}
.y4e{bottom:24.780000px;}
.y17{bottom:29.250000px;}
.yb{bottom:30.405000px;}
.ybc{bottom:31.545000px;}
.y4a{bottom:38.295000px;}
.y16{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.y49{bottom:56.295000px;}
.y5{bottom:57.412500px;}
.y15{bottom:61.905000px;}
.y9{bottom:73.200000px;}
.y14{bottom:75.405000px;}
.y1{bottom:81.075000px;}
.ya7{bottom:84.465000px;}
.y48{bottom:90.075000px;}
.y8{bottom:93.450000px;}
.y47{bottom:108.120000px;}
.y7{bottom:110.355000px;}
.y13{bottom:111.450000px;}
.yc3{bottom:124.987500px;}
.y46{bottom:124.995000px;}
.y95{bottom:129.487500px;}
.y12{bottom:130.605000px;}
.yc2{bottom:141.862500px;}
.y45{bottom:141.870000px;}
.y94{bottom:146.362500px;}
.yd9{bottom:149.737500px;}
.y57{bottom:153.105000px;}
.y11{bottom:156.480000px;}
.yc1{bottom:158.745000px;}
.y44{bottom:159.915000px;}
.y93{bottom:163.275000px;}
.yd8{bottom:166.650000px;}
.y56{bottom:170.025000px;}
.yc0{bottom:176.775000px;}
.y43{bottom:176.790000px;}
.y10{bottom:181.275000px;}
.yd7{bottom:183.525000px;}
.y55{bottom:188.025000px;}
.ybb{bottom:190.275000px;}
.y42{bottom:193.695000px;}
.y92{bottom:198.150000px;}
.yd6{bottom:201.570000px;}
.y2e{bottom:202.695000px;}
.y54{bottom:204.945000px;}
.ybf{bottom:208.320000px;}
.y41{bottom:211.695000px;}
.y91{bottom:215.070000px;}
.y2d{bottom:217.320000px;}
.yd5{bottom:218.445000px;}
.y53{bottom:221.820000px;}
.ybe{bottom:226.320000px;}
.y40{bottom:228.615000px;}
.y90{bottom:233.070000px;}
.yd4{bottom:235.320000px;}
.y2c{bottom:235.365000px;}
.y52{bottom:239.820000px;}
.ybd{bottom:244.350000px;}
.y3f{bottom:245.490000px;}
.y8f{bottom:249.975000px;}
.yd3{bottom:253.350000px;}
.y2b{bottom:253.365000px;}
.y51{bottom:256.725000px;}
.yb6{bottom:262.350000px;}
.y3e{bottom:263.490000px;}
.y8e{bottom:266.850000px;}
.yd2{bottom:270.225000px;}
.y2a{bottom:270.270000px;}
.y4d{bottom:271.350000px;}
.yb9{bottom:280.350000px;}
.y3d{bottom:280.395000px;}
.y8d{bottom:284.895000px;}
.yd1{bottom:287.130000px;}
.y29{bottom:287.145000px;}
.y3c{bottom:297.270000px;}
.yb8{bottom:298.380000px;}
.y8c{bottom:301.770000px;}
.y28{bottom:305.145000px;}
.y1b{bottom:307.380000px;}
.y3b{bottom:315.315000px;}
.yb5{bottom:316.380000px;}
.y8b{bottom:318.645000px;}
.yd0{bottom:322.020000px;}
.y27{bottom:322.065000px;}
.y3a{bottom:332.190000px;}
.y8a{bottom:336.675000px;}
.yb4{bottom:338.925000px;}
.y26{bottom:340.065000px;}
.y39{bottom:349.065000px;}
.y89{bottom:353.550000px;}
.yb3{bottom:355.800000px;}
.ycf{bottom:356.925000px;}
.y25{bottom:356.970000px;}
.y38{bottom:367.095000px;}
.y88{bottom:370.455000px;}
.yce{bottom:373.830000px;}
.y24{bottom:374.970000px;}
.y37{bottom:383.970000px;}
.y87{bottom:388.455000px;}
.ycd{bottom:390.705000px;}
.y23{bottom:391.845000px;}
.y36{bottom:400.875000px;}
.y86{bottom:405.330000px;}
.ya6{bottom:406.455000px;}
.ycc{bottom:408.705000px;}
.y22{bottom:409.875000px;}
.y35{bottom:418.890000px;}
.y85{bottom:422.250000px;}
.yb2{bottom:424.500000px;}
.ycb{bottom:425.625000px;}
.y21{bottom:426.750000px;}
.y34{bottom:435.765000px;}
.y84{bottom:440.250000px;}
.yb0{bottom:442.500000px;}
.y20{bottom:444.795000px;}
.y33{bottom:452.670000px;}
.y83{bottom:457.170000px;}
.yb1{bottom:460.530000px;}
.yca{bottom:460.545000px;}
.y1f{bottom:461.670000px;}
.y32{bottom:470.670000px;}
.y82{bottom:474.045000px;}
.yc9{bottom:477.420000px;}
.yaf{bottom:478.530000px;}
.y1e{bottom:478.575000px;}
.y31{bottom:487.575000px;}
.y81{bottom:492.030000px;}
.yc8{bottom:494.325000px;}
.yae{bottom:496.575000px;}
.y30{bottom:504.450000px;}
.y1d{bottom:506.700000px;}
.y80{bottom:508.950000px;}
.yc7{bottom:512.325000px;}
.yad{bottom:514.575000px;}
.y2f{bottom:522.495000px;}
.y1c{bottom:524.745000px;}
.y7f{bottom:526.950000px;}
.yc6{bottom:529.200000px;}
.yab{bottom:532.575000px;}
.y7e{bottom:543.870000px;}
.yc5{bottom:546.120000px;}
.ya8{bottom:550.605000px;}
.y7d{bottom:562.995000px;}
.yc4{bottom:564.120000px;}
.yaa{bottom:568.605000px;}
.y7c{bottom:581.025000px;}
.ya4{bottom:586.650000px;}
.y7b{bottom:597.900000px;}
.ya5{bottom:604.650000px;}
.y7a{bottom:615.900000px;}
.ya3{bottom:626.070000px;}
.y79{bottom:632.820000px;}
.ya2{bottom:642.945000px;}
.y78{bottom:649.695000px;}
.y9f{bottom:657.570000px;}
.y77{bottom:667.725000px;}
.ya1{bottom:675.600000px;}
.y76{bottom:684.600000px;}
.y99{bottom:693.600000px;}
.y75{bottom:701.475000px;}
.y9e{bottom:711.630000px;}
.y74{bottom:719.520000px;}
.y9a{bottom:729.630000px;}
.y73{bottom:736.395000px;}
.y9b{bottom:747.675000px;}
.y72{bottom:753.300000px;}
.y96{bottom:765.675000px;}
.y71{bottom:771.300000px;}
.y97{bottom:783.675000px;}
.y70{bottom:788.205000px;}
.y6f{bottom:805.080000px;}
.y6e{bottom:823.080000px;}
.y6d{bottom:840.000000px;}
.y19{bottom:843.375000px;}
.y6c{bottom:856.875000px;}
.yf{bottom:872.670000px;}
.y6b{bottom:874.920000px;}
.y6a{bottom:891.795000px;}
.y69{bottom:908.670000px;}
.y68{bottom:926.700000px;}
.y67{bottom:943.575000px;}
.y66{bottom:960.495000px;}
.y65{bottom:978.495000px;}
.y64{bottom:995.400000px;}
.y63{bottom:1012.275000px;}
.y62{bottom:1030.275000px;}
.y61{bottom:1047.195000px;}
.y60{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.y5f{bottom:1082.100000px;}
.y6{bottom:1094.475000px;}
.y5e{bottom:1098.975000px;}
.y5d{bottom:1115.850000px;}
.y5c{bottom:1133.880000px;}
.y5b{bottom:1150.755000px;}
.y5a{bottom:1167.675000px;}
.y59{bottom:1185.675000px;}
.y58{bottom:1202.580000px;}
.h1f{height:16.875000px;}
.h1e{height:16.912500px;}
.h25{height:18.000000px;}
.h23{height:18.037500px;}
.hb{height:25.912500px;}
.h12{height:29.287500px;}
.h11{height:29.953125px;}
.h2{height:32.625000px;}
.h22{height:34.875000px;}
.h1d{height:34.912500px;}
.h1b{height:36.037500px;}
.h8{height:37.125000px;}
.h18{height:39.832031px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h17{height:41.389893px;}
.h1c{height:42.589600px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h24{height:54.037500px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h20{height:70.950000px;}
.h6{height:71.613281px;}
.h26{height:72.075000px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.h21{height:179.070000px;}
.hc{height:195.900000px;}
.h14{height:535.995000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w16{width:91.237500px;}
.w11{width:111.525000px;}
.we{width:112.650000px;}
.w10{width:113.775000px;}
.wb{width:120.525000px;}
.wd{width:120.562500px;}
.wf{width:121.650000px;}
.w13{width:122.775000px;}
.w15{width:123.937500px;}
.w14{width:125.025000px;}
.wc{width:137.400000px;}
.w17{width:140.812500px;}
.w4{width:152.055000px;}
.w7{width:224.145000px;}
.w9{width:226.425000px;}
.w12{width:233.175000px;}
.wa{width:380.745000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x13{left:12.405000px;}
.xc{left:79.987500px;}
.x1{left:81.112500px;}
.x17{left:82.237500px;}
.x5{left:97.987500px;}
.x14{left:108.149987px;}
.x10{left:116.032500px;}
.xf{left:132.907500px;}
.x15{left:135.187487px;}
.xe{left:148.687500px;}
.x25{left:173.475000px;}
.xd{left:190.357500px;}
.x1c{left:196.020000px;}
.x1f{left:197.145000px;}
.x11{left:214.012500px;}
.x6{left:233.175000px;}
.x20{left:241.049987px;}
.x9{left:273.705000px;}
.x16{left:280.499987px;}
.x1d{left:291.749987px;}
.x12{left:305.250000px;}
.x18{left:309.795000px;}
.x21{left:315.420000px;}
.x7{left:328.920000px;}
.x8{left:348.075000px;}
.xb{left:364.957500px;}
.xa{left:437.055000px;}
.x26{left:438.195000px;}
.x22{left:439.320000px;}
.x1e{left:447.195000px;}
.x1a{left:448.320000px;}
.x23{left:562.095000px;}
.x1b{left:569.970000px;}
.x24{left:688.245000px;}
.x19{left:691.650000px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.ls14{letter-spacing:-2.000000pt;}
.ls15{letter-spacing:-1.546667pt;}
.lsc{letter-spacing:-1.418667pt;}
.lsa{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls10{letter-spacing:0.884000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.258667pt;}
.ls13{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.808000pt;}
.ls11{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.106667pt;}
.ls6{letter-spacing:4.248000pt;}
.ls17{letter-spacing:13.677333pt;}
.ls16{letter-spacing:41.677333pt;}
.lsf{letter-spacing:57.677333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws9{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wsa{word-spacing:-13.884000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.wsd{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wsc{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-9.297067pt;}
._b{margin-left:-8.401067pt;}
._a{margin-left:-5.854667pt;}
._7{margin-left:-4.424400pt;}
._9{margin-left:-3.014267pt;}
._2{margin-left:-2.048000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.248000pt;}
._4{width:2.165333pt;}
._3{width:3.056000pt;}
._5{width:4.010667pt;}
._d{width:5.268933pt;}
._c{width:6.380533pt;}
._f{width:7.792000pt;}
._6{width:8.794667pt;}
._e{width:10.426133pt;}
._12{width:11.672000pt;}
._19{width:14.091467pt;}
._11{width:15.136000pt;}
._10{width:18.588000pt;}
._15{width:19.495200pt;}
._14{width:22.138667pt;}
._13{width:23.718667pt;}
._17{width:27.266667pt;}
._16{width:30.856000pt;}
._18{width:31.816000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y9c{bottom:3.013333pt;}
.y98{bottom:3.026667pt;}
.yac{bottom:3.040000pt;}
.y18{bottom:4.000000pt;}
.y4c{bottom:4.013333pt;}
.yba{bottom:4.040000pt;}
.y4f{bottom:9.000000pt;}
.ye{bottom:10.026667pt;}
.y1a{bottom:11.000000pt;}
.ya9{bottom:11.013333pt;}
.ya0{bottom:11.026667pt;}
.y9d{bottom:11.040000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y50{bottom:19.026667pt;}
.y4b{bottom:19.040000pt;}
.yb7{bottom:20.040000pt;}
.y4e{bottom:22.026667pt;}
.y17{bottom:26.000000pt;}
.yb{bottom:27.026667pt;}
.ybc{bottom:28.040000pt;}
.y4a{bottom:34.040000pt;}
.y16{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.y49{bottom:50.040000pt;}
.y5{bottom:51.033333pt;}
.y15{bottom:55.026667pt;}
.y9{bottom:65.066667pt;}
.y14{bottom:67.026667pt;}
.y1{bottom:72.066667pt;}
.ya7{bottom:75.080000pt;}
.y48{bottom:80.066667pt;}
.y8{bottom:83.066667pt;}
.y47{bottom:96.106667pt;}
.y7{bottom:98.093333pt;}
.y13{bottom:99.066667pt;}
.yc3{bottom:111.100000pt;}
.y46{bottom:111.106667pt;}
.y95{bottom:115.100000pt;}
.y12{bottom:116.093333pt;}
.yc2{bottom:126.100000pt;}
.y45{bottom:126.106667pt;}
.y94{bottom:130.100000pt;}
.yd9{bottom:133.100000pt;}
.y57{bottom:136.093333pt;}
.y11{bottom:139.093333pt;}
.yc1{bottom:141.106667pt;}
.y44{bottom:142.146667pt;}
.y93{bottom:145.133333pt;}
.yd8{bottom:148.133333pt;}
.y56{bottom:151.133333pt;}
.yc0{bottom:157.133333pt;}
.y43{bottom:157.146667pt;}
.y10{bottom:161.133333pt;}
.yd7{bottom:163.133333pt;}
.y55{bottom:167.133333pt;}
.ybb{bottom:169.133333pt;}
.y42{bottom:172.173333pt;}
.y92{bottom:176.133333pt;}
.yd6{bottom:179.173333pt;}
.y2e{bottom:180.173333pt;}
.y54{bottom:182.173333pt;}
.ybf{bottom:185.173333pt;}
.y41{bottom:188.173333pt;}
.y91{bottom:191.173333pt;}
.y2d{bottom:193.173333pt;}
.yd5{bottom:194.173333pt;}
.y53{bottom:197.173333pt;}
.ybe{bottom:201.173333pt;}
.y40{bottom:203.213333pt;}
.y90{bottom:207.173333pt;}
.yd4{bottom:209.173333pt;}
.y2c{bottom:209.213333pt;}
.y52{bottom:213.173333pt;}
.ybd{bottom:217.200000pt;}
.y3f{bottom:218.213333pt;}
.y8f{bottom:222.200000pt;}
.yd3{bottom:225.200000pt;}
.y2b{bottom:225.213333pt;}
.y51{bottom:228.200000pt;}
.yb6{bottom:233.200000pt;}
.y3e{bottom:234.213333pt;}
.y8e{bottom:237.200000pt;}
.yd2{bottom:240.200000pt;}
.y2a{bottom:240.240000pt;}
.y4d{bottom:241.200000pt;}
.yb9{bottom:249.200000pt;}
.y3d{bottom:249.240000pt;}
.y8d{bottom:253.240000pt;}
.yd1{bottom:255.226667pt;}
.y29{bottom:255.240000pt;}
.y3c{bottom:264.240000pt;}
.yb8{bottom:265.226667pt;}
.y8c{bottom:268.240000pt;}
.y28{bottom:271.240000pt;}
.y1b{bottom:273.226667pt;}
.y3b{bottom:280.280000pt;}
.yb5{bottom:281.226667pt;}
.y8b{bottom:283.240000pt;}
.yd0{bottom:286.240000pt;}
.y27{bottom:286.280000pt;}
.y3a{bottom:295.280000pt;}
.y8a{bottom:299.266667pt;}
.yb4{bottom:301.266667pt;}
.y26{bottom:302.280000pt;}
.y39{bottom:310.280000pt;}
.y89{bottom:314.266667pt;}
.yb3{bottom:316.266667pt;}
.ycf{bottom:317.266667pt;}
.y25{bottom:317.306667pt;}
.y38{bottom:326.306667pt;}
.y88{bottom:329.293333pt;}
.yce{bottom:332.293333pt;}
.y24{bottom:333.306667pt;}
.y37{bottom:341.306667pt;}
.y87{bottom:345.293333pt;}
.ycd{bottom:347.293333pt;}
.y23{bottom:348.306667pt;}
.y36{bottom:356.333333pt;}
.y86{bottom:360.293333pt;}
.ya6{bottom:361.293333pt;}
.ycc{bottom:363.293333pt;}
.y22{bottom:364.333333pt;}
.y35{bottom:372.346667pt;}
.y85{bottom:375.333333pt;}
.yb2{bottom:377.333333pt;}
.ycb{bottom:378.333333pt;}
.y21{bottom:379.333333pt;}
.y34{bottom:387.346667pt;}
.y84{bottom:391.333333pt;}
.yb0{bottom:393.333333pt;}
.y20{bottom:395.373333pt;}
.y33{bottom:402.373333pt;}
.y83{bottom:406.373333pt;}
.yb1{bottom:409.360000pt;}
.yca{bottom:409.373333pt;}
.y1f{bottom:410.373333pt;}
.y32{bottom:418.373333pt;}
.y82{bottom:421.373333pt;}
.yc9{bottom:424.373333pt;}
.yaf{bottom:425.360000pt;}
.y1e{bottom:425.400000pt;}
.y31{bottom:433.400000pt;}
.y81{bottom:437.360000pt;}
.yc8{bottom:439.400000pt;}
.yae{bottom:441.400000pt;}
.y30{bottom:448.400000pt;}
.y1d{bottom:450.400000pt;}
.y80{bottom:452.400000pt;}
.yc7{bottom:455.400000pt;}
.yad{bottom:457.400000pt;}
.y2f{bottom:464.440000pt;}
.y1c{bottom:466.440000pt;}
.y7f{bottom:468.400000pt;}
.yc6{bottom:470.400000pt;}
.yab{bottom:473.400000pt;}
.y7e{bottom:483.440000pt;}
.yc5{bottom:485.440000pt;}
.ya8{bottom:489.426667pt;}
.y7d{bottom:500.440000pt;}
.yc4{bottom:501.440000pt;}
.yaa{bottom:505.426667pt;}
.y7c{bottom:516.466667pt;}
.ya4{bottom:521.466667pt;}
.y7b{bottom:531.466667pt;}
.ya5{bottom:537.466667pt;}
.y7a{bottom:547.466667pt;}
.ya3{bottom:556.506667pt;}
.y79{bottom:562.506667pt;}
.ya2{bottom:571.506667pt;}
.y78{bottom:577.506667pt;}
.y9f{bottom:584.506667pt;}
.y77{bottom:593.533333pt;}
.ya1{bottom:600.533333pt;}
.y76{bottom:608.533333pt;}
.y99{bottom:616.533333pt;}
.y75{bottom:623.533333pt;}
.y9e{bottom:632.560000pt;}
.y74{bottom:639.573333pt;}
.y9a{bottom:648.560000pt;}
.y73{bottom:654.573333pt;}
.y9b{bottom:664.600000pt;}
.y72{bottom:669.600000pt;}
.y96{bottom:680.600000pt;}
.y71{bottom:685.600000pt;}
.y97{bottom:696.600000pt;}
.y70{bottom:700.626667pt;}
.y6f{bottom:715.626667pt;}
.y6e{bottom:731.626667pt;}
.y6d{bottom:746.666667pt;}
.y19{bottom:749.666667pt;}
.y6c{bottom:761.666667pt;}
.yf{bottom:775.706667pt;}
.y6b{bottom:777.706667pt;}
.y6a{bottom:792.706667pt;}
.y69{bottom:807.706667pt;}
.y68{bottom:823.733333pt;}
.y67{bottom:838.733333pt;}
.y66{bottom:853.773333pt;}
.y65{bottom:869.773333pt;}
.y64{bottom:884.800000pt;}
.y63{bottom:899.800000pt;}
.y62{bottom:915.800000pt;}
.y61{bottom:930.840000pt;}
.y60{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.y5f{bottom:961.866667pt;}
.y6{bottom:972.866667pt;}
.y5e{bottom:976.866667pt;}
.y5d{bottom:991.866667pt;}
.y5c{bottom:1007.893333pt;}
.y5b{bottom:1022.893333pt;}
.y5a{bottom:1037.933333pt;}
.y59{bottom:1053.933333pt;}
.y58{bottom:1068.960000pt;}
.h1f{height:15.000000pt;}
.h1e{height:15.033333pt;}
.h25{height:16.000000pt;}
.h23{height:16.033333pt;}
.hb{height:23.033333pt;}
.h12{height:26.033333pt;}
.h11{height:26.625000pt;}
.h2{height:29.000000pt;}
.h22{height:31.000000pt;}
.h1d{height:31.033333pt;}
.h1b{height:32.033333pt;}
.h8{height:33.000000pt;}
.h18{height:35.406250pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h17{height:36.791016pt;}
.h1c{height:37.857422pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h24{height:48.033333pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h20{height:63.066667pt;}
.h6{height:63.656250pt;}
.h26{height:64.066667pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.h21{height:159.173333pt;}
.hc{height:174.133333pt;}
.h14{height:476.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w16{width:81.100000pt;}
.w11{width:99.133333pt;}
.we{width:100.133333pt;}
.w10{width:101.133333pt;}
.wb{width:107.133333pt;}
.wd{width:107.166667pt;}
.wf{width:108.133333pt;}
.w13{width:109.133333pt;}
.w15{width:110.166667pt;}
.w14{width:111.133333pt;}
.wc{width:122.133333pt;}
.w17{width:125.166667pt;}
.w4{width:135.160000pt;}
.w7{width:199.240000pt;}
.w9{width:201.266667pt;}
.w12{width:207.266667pt;}
.wa{width:338.440000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x13{left:11.026667pt;}
.xc{left:71.100000pt;}
.x1{left:72.100000pt;}
.x17{left:73.100000pt;}
.x5{left:87.100000pt;}
.x14{left:96.133322pt;}
.x10{left:103.140000pt;}
.xf{left:118.140000pt;}
.x15{left:120.166655pt;}
.xe{left:132.166667pt;}
.x25{left:154.200000pt;}
.xd{left:169.206667pt;}
.x1c{left:174.240000pt;}
.x1f{left:175.240000pt;}
.x11{left:190.233333pt;}
.x6{left:207.266667pt;}
.x20{left:214.266655pt;}
.x9{left:243.293333pt;}
.x16{left:249.333322pt;}
.x1d{left:259.333322pt;}
.x12{left:271.333333pt;}
.x18{left:275.373333pt;}
.x21{left:280.373333pt;}
.x7{left:292.373333pt;}
.x8{left:309.400000pt;}
.xb{left:324.406667pt;}
.xa{left:388.493333pt;}
.x26{left:389.506667pt;}
.x22{left:390.506667pt;}
.x1e{left:397.506667pt;}
.x1a{left:398.506667pt;}
.x23{left:499.640000pt;}
.x1b{left:506.640000pt;}
.x24{left:611.773333pt;}
.x19{left:614.800000pt;}
.x3{left:657.840000pt;}
}




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