
    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_e2f853b1d72bed2da3b971f5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_0caa6896a2cdaae6e2324a62.woff')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_e9467377b2f7471b9c80842d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_25befa2b34f3c35b65fba4c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907000;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_f59a1f7634fdb1e65355fd61.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5365634a8115be593d497bd1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_cd5ffbb3cbab32a36e9c35c2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.759857;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_a0c00c917da8b54118e2f8a8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.074219;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_ec114a9a288040950253bf60.woff')format("woff");}.ff9{font-family:ff9;line-height:1.078613;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_81b434b1d6d2bd92e3d5dd46.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_076da930cbf07afaae8951fe.woff')format("woff");}.ffb{font-family:ffb;line-height:0.943848;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_8fa741e80dd4435373a88de4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.903320;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_0d176b462baa8f23895a2ec2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_658424d7a853c11360666443.woff')format("woff");}.ffe{font-family:ffe;line-height:1.074219;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_5a4dc373be50b8f9226369be.woff')format("woff");}.fff{font-family:fff;line-height:1.078613;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_c9bdc6512782c8956bf69b54.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_08cc7071da4991869f4c55ac.woff')format("woff");}.ff11{font-family:ff11;line-height:0.704102;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_fb471f7176aea8b820d4a1a4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.919922;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_b8ceda193551aab87ffc87b9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.919922;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_41c335cb2bfec99780017413.woff')format("woff");}.ff14{font-family:ff14;line-height:1.078613;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_90027169988e6789a9b336e8.woff')format("woff");}.ff15{font-family:ff15;line-height:0.919922;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:ff16;src:url('chunks/assets/font_d2822dcb17b67e1febf09712.woff')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m3{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.228000px;}
.ls2{letter-spacing:31.776000px;}
.ls1{letter-spacing:73.920000px;}
.ls3{letter-spacing:78.180000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-43.200000px;}
.ws5{word-spacing:-33.000000px;}
.ws0{word-spacing:-30.720000px;}
.wsd{word-spacing:-24.000000px;}
.ws12{word-spacing:-22.500000px;}
.ws14{word-spacing:-21.000000px;}
.wse{word-spacing:-19.500000px;}
.ws11{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.451000px;}
.ws9{word-spacing:-16.620000px;}
.ws16{word-spacing:-15.000000px;}
.ws6{word-spacing:-13.296000px;}
.wsc{word-spacing:-0.090000px;}
.ws1{word-spacing:-0.084000px;}
.ws3{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.063000px;}
.ws8{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:51.600000px;}
.ws10{word-spacing:75.600000px;}
.ws13{word-spacing:96.900000px;}
.ws15{word-spacing:137.700000px;}
._23{margin-left:-2725.464000px;}
._21{margin-left:-2701.272000px;}
._b{margin-left:-1617.720000px;}
._6{margin-left:-958.620000px;}
._d{margin-left:-770.616000px;}
._4{margin-left:-546.852000px;}
._15{margin-left:-322.392000px;}
._13{margin-left:-235.032000px;}
._1c{margin-left:-83.700000px;}
._1f{margin-left:-42.084000px;}
._20{margin-left:-12.144000px;}
._1a{margin-left:-10.560000px;}
._8{margin-left:-9.444000px;}
._3{margin-left:-7.572000px;}
._2{margin-left:-5.664000px;}
._9{margin-left:-4.284000px;}
._11{margin-left:-3.168000px;}
._1{margin-left:-1.920000px;}
._0{width:1.152000px;}
._1b{width:2.220000px;}
._a{width:3.576000px;}
._12{width:4.632000px;}
._1e{width:36.000000px;}
._1d{width:41.916000px;}
._19{width:44.430000px;}
._17{width:74.400000px;}
._18{width:98.400000px;}
._27{width:154.200000px;}
._14{width:186.528000px;}
._16{width:274.752000px;}
._25{width:362.088000px;}
._5{width:499.632000px;}
._10{width:633.684000px;}
._2e{width:677.202000px;}
._e{width:722.304000px;}
._f{width:748.068000px;}
._29{width:794.868000px;}
._2a{width:833.412000px;}
._26{width:847.734000px;}
._2b{width:851.496000px;}
._30{width:857.106000px;}
._7{width:912.408000px;}
._2c{width:914.748000px;}
._28{width:926.670000px;}
._32{width:941.388000px;}
._2f{width:963.366000px;}
._35{width:966.996000px;}
._2d{width:968.844000px;}
._34{width:985.278000px;}
._33{width:999.732000px;}
._31{width:1007.388000px;}
._c{width:1569.504000px;}
._22{width:2654.880000px;}
._24{width:2678.880000px;}
.fc1{color:rgb(0,0,128);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(178,178,178);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fsa{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fsf{font-size:99.386513px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:132.000000px;}
.fse{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.042000px;}
.y3a{bottom:0.081000px;}
.yc{bottom:0.231315px;}
.y2{bottom:1.500000px;}
.yb{bottom:67.089000px;}
.y2f{bottom:67.239000px;}
.y5c{bottom:112.731000px;}
.y91{bottom:113.739000px;}
.ya8{bottom:115.131000px;}
.y47{bottom:115.800000px;}
.yaa{bottom:117.831000px;}
.ya9{bottom:128.289000px;}
.y5b{bottom:129.489000px;}
.ya7{bottom:130.689000px;}
.y9b{bottom:130.989000px;}
.y49{bottom:138.789000px;}
.y90{bottom:141.489000px;}
.y7d{bottom:143.439000px;}
.y84{bottom:146.139000px;}
.y98{bottom:146.889000px;}
.y5a{bottom:147.189000px;}
.y9c{bottom:149.439000px;}
.ya6{bottom:153.189000px;}
.y45{bottom:155.700000px;}
.y8a{bottom:157.539000px;}
.y7e{bottom:159.939000px;}
.y68{bottom:163.389000px;}
.y7c{bottom:164.139000px;}
.y48{bottom:170.439000px;}
.y59{bottom:171.639000px;}
.y2e{bottom:171.789000px;}
.y44{bottom:173.850000px;}
.yaf{bottom:174.789000px;}
.y83{bottom:177.789000px;}
.y94{bottom:180.939000px;}
.ya5{bottom:181.239000px;}
.y56{bottom:182.889000px;}
.y5d{bottom:186.531000px;}
.y75{bottom:187.839000px;}
.y28{bottom:189.189000px;}
.y89{bottom:189.339000px;}
.y61{bottom:191.739000px;}
.y58{bottom:193.989000px;}
.y67{bottom:197.139000px;}
.y6d{bottom:200.439000px;}
.y6f{bottom:202.839000px;}
.ya{bottom:204.639000px;}
.y55{bottom:205.239000px;}
.y18{bottom:207.789000px;}
.y74{bottom:208.539000px;}
.y82{bottom:208.839000px;}
.ya4{bottom:209.139000px;}
.y7a{bottom:211.389000px;}
.y39{bottom:212.739000px;}
.y27{bottom:213.039000px;}
.y57{bottom:216.489000px;}
.y64{bottom:218.589000px;}
.y8f{bottom:223.239000px;}
.y88{bottom:228.789000px;}
.y9{bottom:233.439000px;}
.y60{bottom:233.889000px;}
.y17{bottom:235.089000px;}
.y2d{bottom:235.239000px;}
.y26{bottom:236.739000px;}
.ya3{bottom:237.189000px;}
.y79{bottom:237.339000px;}
.y9a{bottom:237.639000px;}
.y1c{bottom:244.239000px;}
.y6b{bottom:244.389000px;}
.y7b{bottom:245.739000px;}
.y54{bottom:247.839000px;}
.y41{bottom:250.500000px;}
.y63{bottom:252.339000px;}
.y38{bottom:254.889000px;}
.y51{bottom:259.089000px;}
.yae{bottom:259.239000px;}
.y87{bottom:260.439000px;}
.y25{bottom:260.589000px;}
.y73{bottom:261.339000px;}
.y8{bottom:262.389000px;}
.y3d{bottom:263.100000px;}
.y78{bottom:263.139000px;}
.y66{bottom:264.789000px;}
.ya2{bottom:265.089000px;}
.y93{bottom:265.389000px;}
.y6e{bottom:266.289000px;}
.y40{bottom:267.750000px;}
.y1b{bottom:268.089000px;}
.y99{bottom:269.439000px;}
.y53{bottom:270.339000px;}
.y71{bottom:270.939000px;}
.y8e{bottom:271.281000px;}
.y16{bottom:272.889000px;}
.y2c{bottom:274.239000px;}
.y5f{bottom:276.189000px;}
.y3c{bottom:276.900000px;}
.y50{bottom:281.589000px;}
.y24{bottom:284.289000px;}
.y3f{bottom:285.000000px;}
.y37{bottom:286.689000px;}
.y77{bottom:289.089000px;}
.y3b{bottom:290.700000px;}
.yad{bottom:290.889000px;}
.y1a{bottom:291.789000px;}
.y8d{bottom:291.981000px;}
.y65{bottom:292.389000px;}
.y52{bottom:292.689000px;}
.y6c{bottom:292.839000px;}
.ya1{bottom:293.139000px;}
.y92{bottom:297.189000px;}
.y70{bottom:298.539000px;}
.y86{bottom:299.889000px;}
.y15{bottom:300.189000px;}
.y97{bottom:301.089000px;}
.y3e{bottom:302.250000px;}
.y2b{bottom:305.289000px;}
.y81{bottom:307.239000px;}
.y23{bottom:308.139000px;}
.y72{bottom:308.289000px;}
.y8c{bottom:312.681000px;}
.y7{bottom:314.589000px;}
.y76{bottom:314.889000px;}
.y19{bottom:315.639000px;}
.y5e{bottom:318.339000px;}
.y62{bottom:319.989000px;}
.ya0{bottom:321.039000px;}
.yac{bottom:322.689000px;}
.y4f{bottom:324.189000px;}
.y14{bottom:327.489000px;}
.y36{bottom:328.839000px;}
.y85{bottom:331.689000px;}
.y22{bottom:331.839000px;}
.y96{bottom:332.889000px;}
.y8b{bottom:333.381000px;}
.y80{bottom:334.989000px;}
.y4c{bottom:335.439000px;}
.y2a{bottom:336.339000px;}
.y6a{bottom:339.339000px;}
.y4e{bottom:346.539000px;}
.y33{bottom:347.589000px;}
.y9f{bottom:349.089000px;}
.y13{bottom:354.789000px;}
.y21{bottom:355.689000px;}
.y4b{bottom:357.789000px;}
.y35{bottom:360.639000px;}
.y7f{bottom:363.339000px;}
.y95{bottom:364.539000px;}
.yab{bottom:364.839000px;}
.y6{bottom:366.489000px;}
.y29{bottom:367.389000px;}
.y4d{bottom:369.039000px;}
.y69{bottom:371.139000px;}
.y43{bottom:371.400000px;}
.y32{bottom:375.189000px;}
.y9e{bottom:376.989000px;}
.y20{bottom:379.389000px;}
.y46{bottom:381.450000px;}
.y42{bottom:386.550000px;}
.y12{bottom:392.589000px;}
.y5{bottom:395.289000px;}
.y4a{bottom:400.689000px;}
.y31{bottom:402.789000px;}
.y1f{bottom:403.239000px;}
.y9d{bottom:405.039000px;}
.y34{bottom:415.989000px;}
.y11{bottom:419.889000px;}
.y4{bottom:423.939000px;}
.y1e{bottom:426.939000px;}
.y10{bottom:447.189000px;}
.y1d{bottom:450.789000px;}
.y30{bottom:453.939000px;}
.yf{bottom:474.489000px;}
.y1{bottom:515.181000px;}
.yd{bottom:606.300000px;}
.ye{bottom:609.600000px;}
.h1f{height:33.351562px;}
.h13{height:35.203125px;}
.h12{height:35.343750px;}
.h1a{height:36.052734px;}
.ha{height:36.465000px;}
.h2a{height:38.021484px;}
.h8{height:38.610000px;}
.h20{height:41.689453px;}
.h2e{height:42.246094px;}
.h14{height:44.003906px;}
.h15{height:44.179688px;}
.h1d{height:45.858398px;}
.h17{height:46.204102px;}
.hf{height:46.353516px;}
.h18{height:46.388672px;}
.h2d{height:46.470703px;}
.h1e{height:51.503906px;}
.h16{height:52.804688px;}
.h2{height:53.925000px;}
.h2c{height:56.622070px;}
.hb{height:57.761719px;}
.h29{height:59.144531px;}
.h6{height:60.060000px;}
.h23{height:61.804688px;}
.h7{height:63.672000px;}
.h19{height:66.005859px;}
.h25{height:66.241499px;}
.h21{height:66.703125px;}
.h1c{height:66.955078px;}
.h26{height:67.593750px;}
.h3{height:68.640000px;}
.h1b{height:72.064453px;}
.he{height:72.105469px;}
.h5{height:72.768000px;}
.h28{height:76.042969px;}
.h24{height:77.255859px;}
.h2b{height:82.359375px;}
.hc{height:82.406250px;}
.h27{height:92.654297px;}
.hd{height:92.707031px;}
.h10{height:113.244141px;}
.h22{height:277.962891px;}
.h9{height:629.250000px;}
.h11{height:629.548500px;}
.h4{height:629.587500px;}
.h0{height:629.631496px;}
.h1{height:630.000000px;}
.w4{width:892.912500px;}
.w2{width:893.098500px;}
.w3{width:893.125500px;}
.w0{width:893.168503px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:75.900000px;}
.x40{left:79.800000px;}
.x38{left:81.000000px;}
.x10{left:82.350000px;}
.x5f{left:84.000000px;}
.xb{left:85.050000px;}
.x2{left:86.400000px;}
.x33{left:87.600000px;}
.xc{left:90.450000px;}
.x56{left:93.600000px;}
.x53{left:94.650000px;}
.xf{left:96.000000px;}
.x8{left:97.050000px;}
.x35{left:98.250000px;}
.x2b{left:99.750000px;}
.x34{left:100.950000px;}
.x15{left:102.900000px;}
.x6{left:104.550000px;}
.x3{left:106.800000px;}
.x28{left:108.450000px;}
.x27{left:109.950000px;}
.x36{left:111.450000px;}
.x64{left:113.250000px;}
.x4f{left:114.900000px;}
.x2c{left:116.550000px;}
.x26{left:119.550000px;}
.x65{left:120.600000px;}
.x14{left:122.850000px;}
.x55{left:124.350000px;}
.x58{left:125.550000px;}
.x16{left:129.900000px;}
.x37{left:132.000000px;}
.x4c{left:135.450000px;}
.x7{left:137.100000px;}
.x4b{left:140.400000px;}
.x4d{left:151.200000px;}
.x4a{left:156.900000px;}
.x5d{left:166.950000px;}
.x49{left:173.250000px;}
.x12{left:183.150000px;}
.x41{left:184.800000px;}
.x30{left:190.800000px;}
.x62{left:199.950000px;}
.x4e{left:202.800000px;}
.x47{left:215.850000px;}
.x51{left:222.000000px;}
.x46{left:225.300000px;}
.x29{left:232.800000px;}
.xe{left:236.250000px;}
.x2f{left:241.950000px;}
.x67{left:243.600000px;}
.x2e{left:250.350000px;}
.x5b{left:257.250000px;}
.x18{left:261.900000px;}
.x24{left:263.400000px;}
.x17{left:270.150000px;}
.x42{left:272.250000px;}
.x43{left:273.900000px;}
.x44{left:276.900000px;}
.xd{left:285.450000px;}
.x60{left:297.750000px;}
.x50{left:300.150000px;}
.x66{left:301.500000px;}
.x52{left:306.900000px;}
.x5{left:309.300000px;}
.x5a{left:312.900000px;}
.x45{left:314.550000px;}
.x5c{left:323.850000px;}
.x39{left:326.550000px;}
.x13{left:329.550000px;}
.x63{left:331.800000px;}
.x61{left:333.750000px;}
.x31{left:335.850000px;}
.x3f{left:344.100000px;}
.x5e{left:345.150000px;}
.x32{left:355.200000px;}
.x54{left:359.850000px;}
.x25{left:365.250000px;}
.x3a{left:366.450000px;}
.x3e{left:367.500000px;}
.x11{left:374.850000px;}
.x22{left:377.850000px;}
.x3c{left:379.800000px;}
.x57{left:382.200000px;}
.x59{left:389.550000px;}
.x3b{left:390.750000px;}
.x48{left:395.550000px;}
.x1f{left:400.650000px;}
.x1d{left:405.300000px;}
.x23{left:408.000000px;}
.x4{left:411.900000px;}
.x1e{left:415.650000px;}
.x1c{left:418.950000px;}
.x3d{left:429.750000px;}
.x21{left:497.850000px;}
.x20{left:512.700000px;}
.x1a{left:572.700000px;}
.x1b{left:577.650000px;}
.x19{left:580.050000px;}
.x2d{left:736.500000px;}
.x2a{left:748.650000px;}
.xa{left:778.050000px;}
.x9{left:802.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.202667pt;}
.ls2{letter-spacing:28.245333pt;}
.ls1{letter-spacing:65.706667pt;}
.ls3{letter-spacing:69.493333pt;}
.ws4{word-spacing:-38.400000pt;}
.ws5{word-spacing:-29.333333pt;}
.ws0{word-spacing:-27.306667pt;}
.wsd{word-spacing:-21.333333pt;}
.ws12{word-spacing:-20.000000pt;}
.ws14{word-spacing:-18.666667pt;}
.wse{word-spacing:-17.333333pt;}
.ws11{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.512000pt;}
.ws9{word-spacing:-14.773333pt;}
.ws16{word-spacing:-13.333333pt;}
.ws6{word-spacing:-11.818667pt;}
.wsc{word-spacing:-0.080000pt;}
.ws1{word-spacing:-0.074667pt;}
.ws3{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.056000pt;}
.ws8{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:45.866667pt;}
.ws10{word-spacing:67.200000pt;}
.ws13{word-spacing:86.133333pt;}
.ws15{word-spacing:122.400000pt;}
._23{margin-left:-2422.634667pt;}
._21{margin-left:-2401.130667pt;}
._b{margin-left:-1437.973333pt;}
._6{margin-left:-852.106667pt;}
._d{margin-left:-684.992000pt;}
._4{margin-left:-486.090667pt;}
._15{margin-left:-286.570667pt;}
._13{margin-left:-208.917333pt;}
._1c{margin-left:-74.400000pt;}
._1f{margin-left:-37.408000pt;}
._20{margin-left:-10.794667pt;}
._1a{margin-left:-9.386667pt;}
._8{margin-left:-8.394667pt;}
._3{margin-left:-6.730667pt;}
._2{margin-left:-5.034667pt;}
._9{margin-left:-3.808000pt;}
._11{margin-left:-2.816000pt;}
._1{margin-left:-1.706667pt;}
._0{width:1.024000pt;}
._1b{width:1.973333pt;}
._a{width:3.178667pt;}
._12{width:4.117333pt;}
._1e{width:32.000000pt;}
._1d{width:37.258667pt;}
._19{width:39.493333pt;}
._17{width:66.133333pt;}
._18{width:87.466667pt;}
._27{width:137.066667pt;}
._14{width:165.802667pt;}
._16{width:244.224000pt;}
._25{width:321.856000pt;}
._5{width:444.117333pt;}
._10{width:563.274667pt;}
._2e{width:601.957333pt;}
._e{width:642.048000pt;}
._f{width:664.949333pt;}
._29{width:706.549333pt;}
._2a{width:740.810667pt;}
._26{width:753.541333pt;}
._2b{width:756.885333pt;}
._30{width:761.872000pt;}
._7{width:811.029333pt;}
._2c{width:813.109333pt;}
._28{width:823.706667pt;}
._32{width:836.789333pt;}
._2f{width:856.325333pt;}
._35{width:859.552000pt;}
._2d{width:861.194667pt;}
._34{width:875.802667pt;}
._33{width:888.650667pt;}
._31{width:895.456000pt;}
._c{width:1395.114667pt;}
._22{width:2359.893333pt;}
._24{width:2381.226667pt;}
.fsb{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fsa{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fsf{font-size:88.343567pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:117.333333pt;}
.fse{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.037333pt;}
.y3a{bottom:0.072000pt;}
.yc{bottom:0.205613pt;}
.y2{bottom:1.333333pt;}
.yb{bottom:59.634667pt;}
.y2f{bottom:59.768000pt;}
.y5c{bottom:100.205333pt;}
.y91{bottom:101.101333pt;}
.ya8{bottom:102.338667pt;}
.y47{bottom:102.933333pt;}
.yaa{bottom:104.738667pt;}
.ya9{bottom:114.034667pt;}
.y5b{bottom:115.101333pt;}
.ya7{bottom:116.168000pt;}
.y9b{bottom:116.434667pt;}
.y49{bottom:123.368000pt;}
.y90{bottom:125.768000pt;}
.y7d{bottom:127.501333pt;}
.y84{bottom:129.901333pt;}
.y98{bottom:130.568000pt;}
.y5a{bottom:130.834667pt;}
.y9c{bottom:132.834667pt;}
.ya6{bottom:136.168000pt;}
.y45{bottom:138.400000pt;}
.y8a{bottom:140.034667pt;}
.y7e{bottom:142.168000pt;}
.y68{bottom:145.234667pt;}
.y7c{bottom:145.901333pt;}
.y48{bottom:151.501333pt;}
.y59{bottom:152.568000pt;}
.y2e{bottom:152.701333pt;}
.y44{bottom:154.533333pt;}
.yaf{bottom:155.368000pt;}
.y83{bottom:158.034667pt;}
.y94{bottom:160.834667pt;}
.ya5{bottom:161.101333pt;}
.y56{bottom:162.568000pt;}
.y5d{bottom:165.805333pt;}
.y75{bottom:166.968000pt;}
.y28{bottom:168.168000pt;}
.y89{bottom:168.301333pt;}
.y61{bottom:170.434667pt;}
.y58{bottom:172.434667pt;}
.y67{bottom:175.234667pt;}
.y6d{bottom:178.168000pt;}
.y6f{bottom:180.301333pt;}
.ya{bottom:181.901333pt;}
.y55{bottom:182.434667pt;}
.y18{bottom:184.701333pt;}
.y74{bottom:185.368000pt;}
.y82{bottom:185.634667pt;}
.ya4{bottom:185.901333pt;}
.y7a{bottom:187.901333pt;}
.y39{bottom:189.101333pt;}
.y27{bottom:189.368000pt;}
.y57{bottom:192.434667pt;}
.y64{bottom:194.301333pt;}
.y8f{bottom:198.434667pt;}
.y88{bottom:203.368000pt;}
.y9{bottom:207.501333pt;}
.y60{bottom:207.901333pt;}
.y17{bottom:208.968000pt;}
.y2d{bottom:209.101333pt;}
.y26{bottom:210.434667pt;}
.ya3{bottom:210.834667pt;}
.y79{bottom:210.968000pt;}
.y9a{bottom:211.234667pt;}
.y1c{bottom:217.101333pt;}
.y6b{bottom:217.234667pt;}
.y7b{bottom:218.434667pt;}
.y54{bottom:220.301333pt;}
.y41{bottom:222.666667pt;}
.y63{bottom:224.301333pt;}
.y38{bottom:226.568000pt;}
.y51{bottom:230.301333pt;}
.yae{bottom:230.434667pt;}
.y87{bottom:231.501333pt;}
.y25{bottom:231.634667pt;}
.y73{bottom:232.301333pt;}
.y8{bottom:233.234667pt;}
.y3d{bottom:233.866667pt;}
.y78{bottom:233.901333pt;}
.y66{bottom:235.368000pt;}
.ya2{bottom:235.634667pt;}
.y93{bottom:235.901333pt;}
.y6e{bottom:236.701333pt;}
.y40{bottom:238.000000pt;}
.y1b{bottom:238.301333pt;}
.y99{bottom:239.501333pt;}
.y53{bottom:240.301333pt;}
.y71{bottom:240.834667pt;}
.y8e{bottom:241.138667pt;}
.y16{bottom:242.568000pt;}
.y2c{bottom:243.768000pt;}
.y5f{bottom:245.501333pt;}
.y3c{bottom:246.133333pt;}
.y50{bottom:250.301333pt;}
.y24{bottom:252.701333pt;}
.y3f{bottom:253.333333pt;}
.y37{bottom:254.834667pt;}
.y77{bottom:256.968000pt;}
.y3b{bottom:258.400000pt;}
.yad{bottom:258.568000pt;}
.y1a{bottom:259.368000pt;}
.y8d{bottom:259.538667pt;}
.y65{bottom:259.901333pt;}
.y52{bottom:260.168000pt;}
.y6c{bottom:260.301333pt;}
.ya1{bottom:260.568000pt;}
.y92{bottom:264.168000pt;}
.y70{bottom:265.368000pt;}
.y86{bottom:266.568000pt;}
.y15{bottom:266.834667pt;}
.y97{bottom:267.634667pt;}
.y3e{bottom:268.666667pt;}
.y2b{bottom:271.368000pt;}
.y81{bottom:273.101333pt;}
.y23{bottom:273.901333pt;}
.y72{bottom:274.034667pt;}
.y8c{bottom:277.938667pt;}
.y7{bottom:279.634667pt;}
.y76{bottom:279.901333pt;}
.y19{bottom:280.568000pt;}
.y5e{bottom:282.968000pt;}
.y62{bottom:284.434667pt;}
.ya0{bottom:285.368000pt;}
.yac{bottom:286.834667pt;}
.y4f{bottom:288.168000pt;}
.y14{bottom:291.101333pt;}
.y36{bottom:292.301333pt;}
.y85{bottom:294.834667pt;}
.y22{bottom:294.968000pt;}
.y96{bottom:295.901333pt;}
.y8b{bottom:296.338667pt;}
.y80{bottom:297.768000pt;}
.y4c{bottom:298.168000pt;}
.y2a{bottom:298.968000pt;}
.y6a{bottom:301.634667pt;}
.y4e{bottom:308.034667pt;}
.y33{bottom:308.968000pt;}
.y9f{bottom:310.301333pt;}
.y13{bottom:315.368000pt;}
.y21{bottom:316.168000pt;}
.y4b{bottom:318.034667pt;}
.y35{bottom:320.568000pt;}
.y7f{bottom:322.968000pt;}
.y95{bottom:324.034667pt;}
.yab{bottom:324.301333pt;}
.y6{bottom:325.768000pt;}
.y29{bottom:326.568000pt;}
.y4d{bottom:328.034667pt;}
.y69{bottom:329.901333pt;}
.y43{bottom:330.133333pt;}
.y32{bottom:333.501333pt;}
.y9e{bottom:335.101333pt;}
.y20{bottom:337.234667pt;}
.y46{bottom:339.066667pt;}
.y42{bottom:343.600000pt;}
.y12{bottom:348.968000pt;}
.y5{bottom:351.368000pt;}
.y4a{bottom:356.168000pt;}
.y31{bottom:358.034667pt;}
.y1f{bottom:358.434667pt;}
.y9d{bottom:360.034667pt;}
.y34{bottom:369.768000pt;}
.y11{bottom:373.234667pt;}
.y4{bottom:376.834667pt;}
.y1e{bottom:379.501333pt;}
.y10{bottom:397.501333pt;}
.y1d{bottom:400.701333pt;}
.y30{bottom:403.501333pt;}
.yf{bottom:421.768000pt;}
.y1{bottom:457.938667pt;}
.yd{bottom:538.933333pt;}
.ye{bottom:541.866667pt;}
.h1f{height:29.645833pt;}
.h13{height:31.291667pt;}
.h12{height:31.416667pt;}
.h1a{height:32.046875pt;}
.ha{height:32.413333pt;}
.h2a{height:33.796875pt;}
.h8{height:34.320000pt;}
.h20{height:37.057292pt;}
.h2e{height:37.552083pt;}
.h14{height:39.114583pt;}
.h15{height:39.270833pt;}
.h1d{height:40.763021pt;}
.h17{height:41.070312pt;}
.hf{height:41.203125pt;}
.h18{height:41.234375pt;}
.h2d{height:41.307292pt;}
.h1e{height:45.781250pt;}
.h16{height:46.937500pt;}
.h2{height:47.933333pt;}
.h2c{height:50.330729pt;}
.hb{height:51.343750pt;}
.h29{height:52.572917pt;}
.h6{height:53.386667pt;}
.h23{height:54.937500pt;}
.h7{height:56.597333pt;}
.h19{height:58.671875pt;}
.h25{height:58.881333pt;}
.h21{height:59.291667pt;}
.h1c{height:59.515625pt;}
.h26{height:60.083333pt;}
.h3{height:61.013333pt;}
.h1b{height:64.057292pt;}
.he{height:64.093750pt;}
.h5{height:64.682667pt;}
.h28{height:67.593750pt;}
.h24{height:68.671875pt;}
.h2b{height:73.208333pt;}
.hc{height:73.250000pt;}
.h27{height:82.359375pt;}
.hd{height:82.406250pt;}
.h10{height:100.661458pt;}
.h22{height:247.078125pt;}
.h9{height:559.333333pt;}
.h11{height:559.598667pt;}
.h4{height:559.633333pt;}
.h0{height:559.672441pt;}
.h1{height:560.000000pt;}
.w4{width:793.700000pt;}
.w2{width:793.865333pt;}
.w3{width:793.889333pt;}
.w0{width:793.927559pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:67.466667pt;}
.x40{left:70.933333pt;}
.x38{left:72.000000pt;}
.x10{left:73.200000pt;}
.x5f{left:74.666667pt;}
.xb{left:75.600000pt;}
.x2{left:76.800000pt;}
.x33{left:77.866667pt;}
.xc{left:80.400000pt;}
.x56{left:83.200000pt;}
.x53{left:84.133333pt;}
.xf{left:85.333333pt;}
.x8{left:86.266667pt;}
.x35{left:87.333333pt;}
.x2b{left:88.666667pt;}
.x34{left:89.733333pt;}
.x15{left:91.466667pt;}
.x6{left:92.933333pt;}
.x3{left:94.933333pt;}
.x28{left:96.400000pt;}
.x27{left:97.733333pt;}
.x36{left:99.066667pt;}
.x64{left:100.666667pt;}
.x4f{left:102.133333pt;}
.x2c{left:103.600000pt;}
.x26{left:106.266667pt;}
.x65{left:107.200000pt;}
.x14{left:109.200000pt;}
.x55{left:110.533333pt;}
.x58{left:111.600000pt;}
.x16{left:115.466667pt;}
.x37{left:117.333333pt;}
.x4c{left:120.400000pt;}
.x7{left:121.866667pt;}
.x4b{left:124.800000pt;}
.x4d{left:134.400000pt;}
.x4a{left:139.466667pt;}
.x5d{left:148.400000pt;}
.x49{left:154.000000pt;}
.x12{left:162.800000pt;}
.x41{left:164.266667pt;}
.x30{left:169.600000pt;}
.x62{left:177.733333pt;}
.x4e{left:180.266667pt;}
.x47{left:191.866667pt;}
.x51{left:197.333333pt;}
.x46{left:200.266667pt;}
.x29{left:206.933333pt;}
.xe{left:210.000000pt;}
.x2f{left:215.066667pt;}
.x67{left:216.533333pt;}
.x2e{left:222.533333pt;}
.x5b{left:228.666667pt;}
.x18{left:232.800000pt;}
.x24{left:234.133333pt;}
.x17{left:240.133333pt;}
.x42{left:242.000000pt;}
.x43{left:243.466667pt;}
.x44{left:246.133333pt;}
.xd{left:253.733333pt;}
.x60{left:264.666667pt;}
.x50{left:266.800000pt;}
.x66{left:268.000000pt;}
.x52{left:272.800000pt;}
.x5{left:274.933333pt;}
.x5a{left:278.133333pt;}
.x45{left:279.600000pt;}
.x5c{left:287.866667pt;}
.x39{left:290.266667pt;}
.x13{left:292.933333pt;}
.x63{left:294.933333pt;}
.x61{left:296.666667pt;}
.x31{left:298.533333pt;}
.x3f{left:305.866667pt;}
.x5e{left:306.800000pt;}
.x32{left:315.733333pt;}
.x54{left:319.866667pt;}
.x25{left:324.666667pt;}
.x3a{left:325.733333pt;}
.x3e{left:326.666667pt;}
.x11{left:333.200000pt;}
.x22{left:335.866667pt;}
.x3c{left:337.600000pt;}
.x57{left:339.733333pt;}
.x59{left:346.266667pt;}
.x3b{left:347.333333pt;}
.x48{left:351.600000pt;}
.x1f{left:356.133333pt;}
.x1d{left:360.266667pt;}
.x23{left:362.666667pt;}
.x4{left:366.133333pt;}
.x1e{left:369.466667pt;}
.x1c{left:372.400000pt;}
.x3d{left:382.000000pt;}
.x21{left:442.533333pt;}
.x20{left:455.733333pt;}
.x1a{left:509.066667pt;}
.x1b{left:513.466667pt;}
.x19{left:515.600000pt;}
.x2d{left:654.666667pt;}
.x2a{left:665.466667pt;}
.xa{left:691.600000pt;}
.x9{left:713.733333pt;}
}




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