
    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_2fa232276405cd89868c7614.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675000;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_67422b76c2c32d2ddc316654.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_cf208e6cff48a1a3bcfa49f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_c40c7f7743c6acbec59c1fac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975586;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_0b3ee9da4ddf4cacde5f0ca0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_9401d8a0a918208c6a08a12e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_a91dfaea62ce31ddf64127f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.467000;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_78adbc3db500a5ff0eb981b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.967773;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_6980a13ad355070154f609bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.980000;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_4413e1d5458add7456bcb880.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
.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);}
.m4{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v3{vertical-align:-10.506000px;}
.v1{vertical-align:-5.304000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:58.434000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.363650px;}
.ls1{letter-spacing:52.499421px;}
.ls3{letter-spacing:52.664496px;}
.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;}
}
.ws8{word-spacing:-32.727300px;}
.ws1a{word-spacing:-21.519300px;}
.ws2{word-spacing:-16.363650px;}
.ws1{word-spacing:-11.955150px;}
.wsa{word-spacing:-7.680150px;}
.wsb{word-spacing:-6.720121px;}
.ws17{word-spacing:-0.916364px;}
.ws1b{word-spacing:-0.196364px;}
.ws18{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.026048px;}
.ws5{word-spacing:-0.022069px;}
.ws6{word-spacing:-0.019311px;}
.wsf{word-spacing:-0.011346px;}
.ws14{word-spacing:-0.005686px;}
.ws11{word-spacing:-0.004195px;}
.ws13{word-spacing:-0.002351px;}
.wsd{word-spacing:-0.000643px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:2.749093px;}
.ws15{word-spacing:16.297346px;}
.ws10{word-spacing:16.297358px;}
.ws7{word-spacing:16.298195px;}
.ws3{word-spacing:16.299764px;}
.ws16{word-spacing:16.302161px;}
.wse{word-spacing:16.302420px;}
.ws9{word-spacing:27.570683px;}
.ws4{word-spacing:32.723542px;}
.ws19{word-spacing:41.825489px;}
._e{margin-left:-127.323000px;}
._d{margin-left:-108.047423px;}
._c{margin-left:-16.496260px;}
._9{margin-left:-4.613924px;}
._7{margin-left:-3.207275px;}
._6{margin-left:-1.178183px;}
._f{width:1.092106px;}
._2{width:2.117686px;}
._3{width:3.547123px;}
._0{width:4.658908px;}
._a{width:5.725274px;}
._1{width:7.094247px;}
._10{width:8.181825px;}
._14{width:18.130924px;}
._15{width:19.984276px;}
._b{width:25.427018px;}
._11{width:27.294568px;}
._5{width:80.661734px;}
._12{width:124.927681px;}
._8{width:564.553457px;}
._16{width:769.586688px;}
._4{width:786.266688px;}
._13{width:921.862586px;}
._17{width:967.435901px;}
.fc0{color:rgb(255,255,255);}
.fca{color:rgb(96,96,96);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fcf{color:rgb(232,103,88);}
.fc4{color:rgb(252,230,223);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fce{color:rgb(0,173,239);}
.fcd{color:rgb(245,245,245);}
.fc6{color:rgb(254,250,248);}
.fc9{color:rgb(215,7,81);}
.fcb{color:rgb(240,81,51);}
.fcc{color:rgb(218,147,13);}
.fsd{font-size:11.345609px;}
.fs7{font-size:14.849738px;}
.fs6{font-size:14.849740px;}
.fsa{font-size:19.310693px;}
.fs8{font-size:19.799569px;}
.fs9{font-size:22.069398px;}
.fsc{font-size:25.524335px;}
.fsb{font-size:26.048077px;}
.fs4{font-size:35.865600px;}
.fs5{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fse{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fsf{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.873000px;}
.y71{bottom:15.843955px;}
.y15{bottom:16.317131px;}
.y61{bottom:20.102696px;}
.y8{bottom:20.397402px;}
.y67{bottom:25.307119px;}
.y23{bottom:25.428000px;}
.y26{bottom:25.753500px;}
.y29{bottom:26.850000px;}
.yd8{bottom:26.920500px;}
.yb0{bottom:30.571500px;}
.y84{bottom:30.946500px;}
.y7{bottom:33.373500px;}
.y70{bottom:34.916350px;}
.y4d{bottom:35.375889px;}
.y4f{bottom:36.687552px;}
.yac{bottom:38.446500px;}
.yde{bottom:38.859000px;}
.yd7{bottom:41.116500px;}
.yb2{bottom:41.857500px;}
.yc8{bottom:42.325500px;}
.y6a{bottom:43.230000px;}
.y4e{bottom:43.584317px;}
.y22{bottom:45.751500px;}
.y25{bottom:46.077000px;}
.y28{bottom:47.173500px;}
.yaf{bottom:50.895000px;}
.y83{bottom:51.270000px;}
.yd6{bottom:55.314000px;}
.y3f{bottom:56.364614px;}
.yb1{bottom:62.182500px;}
.yc7{bottom:62.649000px;}
.yab{bottom:63.252000px;}
.y3e{bottom:63.261389px;}
.ydd{bottom:63.666000px;}
.y69{bottom:68.037000px;}
.yd5{bottom:69.510000px;}
.y66{bottom:69.705519px;}
.y48{bottom:75.360194px;}
.y82{bottom:76.077000px;}
.ybd{bottom:76.165500px;}
.y3b{bottom:77.171874px;}
.y6f{bottom:79.019323px;}
.yae{bottom:81.037500px;}
.y47{bottom:81.394949px;}
.y5b{bottom:82.386976px;}
.yd4{bottom:83.707500px;}
.y3a{bottom:87.339546px;}
.yaa{bottom:88.059000px;}
.y5a{bottom:88.421567px;}
.ydc{bottom:88.473000px;}
.y68{bottom:92.844000px;}
.y50{bottom:95.152947px;}
.ybc{bottom:96.490500px;}
.y6e{bottom:97.397791px;}
.ye4{bottom:98.457000px;}
.y30{bottom:99.310429px;}
.y46{bottom:99.797302px;}
.y65{bottom:100.179676px;}
.y59{bottom:100.713694px;}
.y81{bottom:100.884000px;}
.yad{bottom:101.361000px;}
.yc6{bottom:102.564000px;}
.yf3{bottom:102.937500px;}
.y2f{bottom:104.791373px;}
.y45{bottom:105.832058px;}
.y58{bottom:106.748449px;}
.y39{bottom:108.167142px;}
.ye{bottom:109.722000px;}
.y6d{bottom:111.067664px;}
.yd3{bottom:111.414000px;}
.ydb{bottom:113.280000px;}
.y32{bottom:116.646442px;}
.y4b{bottom:117.644032px;}
.y5e{bottom:118.093679px;}
.y37{bottom:119.129030px;}
.y64{bottom:119.882599px;}
.y4c{bottom:120.905773px;}
.y33{bottom:121.923278px;}
.yf2{bottom:123.261000px;}
.y4a{bottom:124.540796px;}
.y38{bottom:124.609974px;}
.y5d{bottom:124.990443px;}
.y80{bottom:125.691000px;}
.ya9{bottom:126.459000px;}
.y2e{bottom:126.616500px;}
.yc5{bottom:127.371000px;}
.y49{bottom:131.437560px;}
.yd2{bottom:131.737500px;}
.y5c{bottom:131.887207px;}
.y31{bottom:134.079261px;}
.yea{bottom:136.270500px;}
.y63{bottom:137.835149px;}
.yda{bottom:138.087000px;}
.y34{bottom:138.386914px;}
.y57{bottom:139.041429px;}
.y35{bottom:142.430576px;}
.yb9{bottom:143.143500px;}
.yf1{bottom:143.586000px;}
.y56{bottom:145.076174px;}
.y7f{bottom:146.014500px;}
.y6{bottom:146.173500px;}
.y44{bottom:148.671529px;}
.y13{bottom:149.025000px;}
.yd1{bottom:152.062500px;}
.yc4{bottom:152.178000px;}
.y43{bottom:154.706266px;}
.y62{bottom:155.021605px;}
.ye9{bottom:156.594000px;}
.y55{bottom:159.743018px;}
.yd9{bottom:160.635000px;}
.y27{bottom:161.064000px;}
.y36{bottom:161.176010px;}
.y24{bottom:162.159000px;}
.y21{bottom:162.484500px;}
.yb8{bottom:163.467000px;}
.yd{bottom:164.460000px;}
.y54{bottom:165.777764px;}
.yf0{bottom:168.393000px;}
.yd0{bottom:172.386000px;}
.y3d{bottom:173.116337px;}
.y12{bottom:173.832000px;}
.y60{bottom:175.440342px;}
.y7e{bottom:175.836000px;}
.yc3{bottom:176.985000px;}
.y42{bottom:179.217915px;}
.y3c{bottom:179.303767px;}
.ye8{bottom:181.401000px;}
.y5f{bottom:182.336974px;}
.y41{bottom:185.252651px;}
.ye2{bottom:185.370000px;}
.y5{bottom:185.629500px;}
.yb7{bottom:188.668500px;}
.yef{bottom:188.716500px;}
.y40{bottom:191.467927px;}
.ycf{bottom:192.709500px;}
.y2d{bottom:195.571500px;}
.y11{bottom:198.639000px;}
.y4{bottom:199.825500px;}
.yc2{bottom:201.792000px;}
.ye1{bottom:205.693500px;}
.ye7{bottom:206.208000px;}
.y17{bottom:206.229000px;}
.y96{bottom:207.156000px;}
.y89{bottom:207.306000px;}
.y6c{bottom:210.417000px;}
.y76{bottom:211.495500px;}
.yee{bottom:213.523500px;}
.y3{bottom:214.023000px;}
.yce{bottom:217.516500px;}
.yc{bottom:219.198000px;}
.y10{bottom:223.446000px;}
.yc1{bottom:226.993500px;}
.y95{bottom:227.479500px;}
.y88{bottom:227.629500px;}
.y16{bottom:230.956500px;}
.ye6{bottom:231.015000px;}
.yb6{bottom:231.660000px;}
.yed{bottom:233.847000px;}
.ycd{bottom:237.840000px;}
.y75{bottom:239.290500px;}
.ye0{bottom:246.342000px;}
.y2{bottom:247.737000px;}
.y94{bottom:247.803000px;}
.y87{bottom:247.953000px;}
.yf{bottom:248.253000px;}
.yb5{bottom:251.985000px;}
.ye5{bottom:255.822000px;}
.ycc{bottom:258.163500px;}
.yec{bottom:258.654000px;}
.y74{bottom:260.212500px;}
.ya0{bottom:268.126500px;}
.y93{bottom:268.128000px;}
.y86{bottom:268.276500px;}
.y14{bottom:268.480500px;}
.yc0{bottom:269.314500px;}
.y2b{bottom:270.864000px;}
.yb4{bottom:272.308500px;}
.yb{bottom:273.934500px;}
.ycb{bottom:278.487000px;}
.yeb{bottom:278.977500px;}
.ydf{bottom:280.114500px;}
.y73{bottom:282.628500px;}
.ybf{bottom:289.638000px;}
.y2a{bottom:291.187500px;}
.yb3{bottom:297.190500px;}
.yca{bottom:298.812000px;}
.y72{bottom:307.435500px;}
.yc9{bottom:309.405000px;}
.y1{bottom:312.570000px;}
.ybe{bottom:313.113000px;}
.y6b{bottom:337.237500px;}
.y85{bottom:337.807500px;}
.y92{bottom:338.406000px;}
.y9f{bottom:338.407500px;}
.ya{bottom:362.751000px;}
.y1a{bottom:3025.466685px;}
.y1d{bottom:3025.792185px;}
.y20{bottom:3026.888685px;}
.ya8{bottom:3030.610185px;}
.y9e{bottom:3030.613185px;}
.y7d{bottom:3030.985185px;}
.y91{bottom:3031.508685px;}
.ya4{bottom:3038.485185px;}
.y9a{bottom:3038.486685px;}
.y8d{bottom:3039.383685px;}
.y53{bottom:3043.268685px;}
.y19{bottom:3045.790185px;}
.y1c{bottom:3046.115685px;}
.y1f{bottom:3047.212185px;}
.ya7{bottom:3050.933685px;}
.y9d{bottom:3050.936685px;}
.y7c{bottom:3051.308685px;}
.y90{bottom:3051.833685px;}
.ya3{bottom:3063.290685px;}
.y99{bottom:3063.293685px;}
.y8c{bottom:3064.190685px;}
.y52{bottom:3068.075685px;}
.y7b{bottom:3076.115685px;}
.ybb{bottom:3076.204185px;}
.ya6{bottom:3081.076185px;}
.y9c{bottom:3081.077685px;}
.y8f{bottom:3081.974685px;}
.ya2{bottom:3088.097685px;}
.y98{bottom:3088.100685px;}
.y8b{bottom:3088.997685px;}
.y51{bottom:3092.882685px;}
.yba{bottom:3096.529185px;}
.ye3{bottom:3098.495685px;}
.y7a{bottom:3100.922685px;}
.ya5{bottom:3101.399685px;}
.y9b{bottom:3101.402685px;}
.y8e{bottom:3102.298185px;}
.y79{bottom:3125.729685px;}
.ya1{bottom:3126.497685px;}
.y97{bottom:3126.499185px;}
.y8a{bottom:3127.396185px;}
.y78{bottom:3146.053185px;}
.y1e{bottom:3161.102685px;}
.y1b{bottom:3162.197685px;}
.y18{bottom:3162.523185px;}
.y77{bottom:3175.874685px;}
.y2c{bottom:3195.610185px;}
.h15{height:8.620004px;}
.he{height:11.282320px;}
.hd{height:11.282322px;}
.h11{height:14.671600px;}
.hf{height:15.043032px;}
.h10{height:16.767570px;}
.h7{height:25.392845px;}
.hb{height:28.206206px;}
.h13{height:28.970121px;}
.h12{height:29.564567px;}
.h4{height:33.856985px;}
.h6{height:35.259465px;}
.h1b{height:35.530706px;}
.h1c{height:35.835857px;}
.h1d{height:35.841857px;}
.h8{height:41.037857px;}
.h9{height:41.043857px;}
.h16{height:44.413271px;}
.h18{height:45.687311px;}
.h3{height:46.341857px;}
.h17{height:48.632768px;}
.h2{height:60.942658px;}
.h1a{height:62.181870px;}
.h1e{height:72.098095px;}
.ha{height:72.840146px;}
.h5{height:91.054594px;}
.h19{height:104.775857px;}
.h14{height:113.222664px;}
.hc{height:201.147792px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w5{width:83.334192px;}
.w3{width:333.363113px;}
.w4{width:416.667489px;}
.w2{width:416.724081px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x22{left:5.619049px;}
.x23{left:9.862128px;}
.xa{left:18.136500px;}
.x16{left:21.259500px;}
.x4c{left:28.347000px;}
.x13{left:36.141000px;}
.x24{left:38.024925px;}
.x41{left:40.667533px;}
.xb{left:43.275000px;}
.x42{left:46.356780px;}
.x2d{left:50.276534px;}
.x50{left:57.912000px;}
.x4b{left:61.074000px;}
.x27{left:70.840921px;}
.x28{left:72.625369px;}
.xc{left:75.247500px;}
.x29{left:76.264234px;}
.x2a{left:78.734647px;}
.x2e{left:79.993966px;}
.x25{left:82.487839px;}
.x26{left:84.843922px;}
.x2c{left:87.434250px;}
.x2b{left:88.523305px;}
.xe{left:96.786303px;}
.x20{left:119.978971px;}
.x8{left:120.988740px;}
.x1f{left:125.598571px;}
.x43{left:129.948000px;}
.x7{left:131.812500px;}
.x1e{left:133.061314px;}
.x21{left:134.147794px;}
.x9{left:136.401000px;}
.x3a{left:139.755150px;}
.xf{left:141.831000px;}
.x19{left:144.748938px;}
.x1d{left:149.435637px;}
.x1a{left:152.054418px;}
.x1b{left:160.848793px;}
.x1{left:161.923500px;}
.x1c{left:163.676360px;}
.x2f{left:168.722355px;}
.xd{left:173.481000px;}
.x39{left:186.411005px;}
.x34{left:192.205694px;}
.x36{left:193.678796px;}
.x35{left:196.388655px;}
.x33{left:197.949253px;}
.x32{left:202.656707px;}
.x37{left:209.419439px;}
.x46{left:213.285000px;}
.x18{left:242.859000px;}
.x47{left:246.012000px;}
.x14{left:250.866000px;}
.x3d{left:258.974735px;}
.x5{left:275.013000px;}
.x2{left:278.695500px;}
.x6{left:282.295500px;}
.x38{left:290.776735px;}
.x3{left:295.552500px;}
.x3f{left:296.565822px;}
.x3e{left:298.260212px;}
.x4{left:299.455500px;}
.x3c{left:308.186440px;}
.x40{left:320.420462px;}
.x4f{left:383.434500px;}
.x3b{left:386.443589px;}
.x15{left:465.589500px;}
.x48{left:532.915500px;}
.x4d{left:614.847000px;}
.x4e{left:634.966500px;}
.x10{left:3036.179685px;}
.x30{left:3042.557685px;}
.x49{left:3061.112685px;}
.x31{left:3075.286185px;}
.x44{left:3213.323685px;}
.x17{left:3242.897685px;}
.x45{left:3246.050685px;}
.x11{left:3250.904685px;}
.x4a{left:3294.838185px;}
.x12{left:3465.628185px;}
@media print{
.v3{vertical-align:-9.338667pt;}
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:51.941333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:14.545467pt;}
.ls1{letter-spacing:46.666152pt;}
.ls3{letter-spacing:46.812885pt;}
.ws8{word-spacing:-29.090933pt;}
.ws1a{word-spacing:-19.128267pt;}
.ws2{word-spacing:-14.545467pt;}
.ws1{word-spacing:-10.626800pt;}
.wsa{word-spacing:-6.826800pt;}
.wsb{word-spacing:-5.973441pt;}
.ws17{word-spacing:-0.814546pt;}
.ws1b{word-spacing:-0.174546pt;}
.ws18{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.023154pt;}
.ws5{word-spacing:-0.019617pt;}
.ws6{word-spacing:-0.017165pt;}
.wsf{word-spacing:-0.010085pt;}
.ws14{word-spacing:-0.005054pt;}
.ws11{word-spacing:-0.003729pt;}
.ws13{word-spacing:-0.002090pt;}
.wsd{word-spacing:-0.000572pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:2.443638pt;}
.ws15{word-spacing:14.486530pt;}
.ws10{word-spacing:14.486540pt;}
.ws7{word-spacing:14.487285pt;}
.ws3{word-spacing:14.488679pt;}
.ws16{word-spacing:14.490810pt;}
.wse{word-spacing:14.491040pt;}
.ws9{word-spacing:24.507274pt;}
.ws4{word-spacing:29.087593pt;}
.ws19{word-spacing:37.178213pt;}
._e{margin-left:-113.176000pt;}
._d{margin-left:-96.042154pt;}
._c{margin-left:-14.663342pt;}
._9{margin-left:-4.101266pt;}
._7{margin-left:-2.850911pt;}
._6{margin-left:-1.047274pt;}
._f{width:0.970761pt;}
._2{width:1.882387pt;}
._3{width:3.152999pt;}
._0{width:4.141252pt;}
._a{width:5.089132pt;}
._1{width:6.305997pt;}
._10{width:7.272733pt;}
._14{width:16.116377pt;}
._15{width:17.763801pt;}
._b{width:22.601794pt;}
._11{width:24.261838pt;}
._5{width:71.699319pt;}
._12{width:111.046828pt;}
._8{width:501.825295pt;}
._16{width:684.077056pt;}
._4{width:698.903723pt;}
._13{width:819.433410pt;}
._17{width:859.943023pt;}
.fsd{font-size:10.084986pt;}
.fs7{font-size:13.199767pt;}
.fs6{font-size:13.199769pt;}
.fsa{font-size:17.165060pt;}
.fs8{font-size:17.599617pt;}
.fs9{font-size:19.617243pt;}
.fsc{font-size:22.688298pt;}
.fsb{font-size:23.153846pt;}
.fs4{font-size:31.880533pt;}
.fs5{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fse{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fsf{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.442667pt;}
.y71{bottom:14.083516pt;}
.y15{bottom:14.504117pt;}
.y61{bottom:17.869063pt;}
.y8{bottom:18.131024pt;}
.y67{bottom:22.495216pt;}
.y23{bottom:22.602667pt;}
.y26{bottom:22.892000pt;}
.y29{bottom:23.866667pt;}
.yd8{bottom:23.929333pt;}
.yb0{bottom:27.174667pt;}
.y84{bottom:27.508000pt;}
.y7{bottom:29.665333pt;}
.y70{bottom:31.036755pt;}
.y4d{bottom:31.445235pt;}
.y4f{bottom:32.611158pt;}
.yac{bottom:34.174667pt;}
.yde{bottom:34.541333pt;}
.yd7{bottom:36.548000pt;}
.yb2{bottom:37.206667pt;}
.yc8{bottom:37.622667pt;}
.y6a{bottom:38.426667pt;}
.y4e{bottom:38.741615pt;}
.y22{bottom:40.668000pt;}
.y25{bottom:40.957333pt;}
.y28{bottom:41.932000pt;}
.yaf{bottom:45.240000pt;}
.y83{bottom:45.573333pt;}
.yd6{bottom:49.168000pt;}
.y3f{bottom:50.101879pt;}
.yb1{bottom:55.273333pt;}
.yc7{bottom:55.688000pt;}
.yab{bottom:56.224000pt;}
.y3e{bottom:56.232346pt;}
.ydd{bottom:56.592000pt;}
.y69{bottom:60.477333pt;}
.yd5{bottom:61.786667pt;}
.y66{bottom:61.960461pt;}
.y48{bottom:66.986839pt;}
.y82{bottom:67.624000pt;}
.ybd{bottom:67.702667pt;}
.y3b{bottom:68.597222pt;}
.y6f{bottom:70.239398pt;}
.yae{bottom:72.033333pt;}
.y47{bottom:72.351066pt;}
.y5b{bottom:73.232867pt;}
.yd4{bottom:74.406667pt;}
.y3a{bottom:77.635152pt;}
.yaa{bottom:78.274667pt;}
.y5a{bottom:78.596949pt;}
.ydc{bottom:78.642667pt;}
.y68{bottom:82.528000pt;}
.y50{bottom:84.580397pt;}
.ybc{bottom:85.769333pt;}
.y6e{bottom:86.575814pt;}
.ye4{bottom:87.517333pt;}
.y30{bottom:88.275937pt;}
.y46{bottom:88.708713pt;}
.y65{bottom:89.048601pt;}
.y59{bottom:89.523283pt;}
.y81{bottom:89.674667pt;}
.yad{bottom:90.098667pt;}
.yc6{bottom:91.168000pt;}
.yf3{bottom:91.500000pt;}
.y2f{bottom:93.147887pt;}
.y45{bottom:94.072940pt;}
.y58{bottom:94.887511pt;}
.y39{bottom:96.148570pt;}
.ye{bottom:97.530667pt;}
.y6d{bottom:98.726812pt;}
.yd3{bottom:99.034667pt;}
.ydb{bottom:100.693333pt;}
.y32{bottom:103.685726pt;}
.y4b{bottom:104.572473pt;}
.y5e{bottom:104.972159pt;}
.y37{bottom:105.892471pt;}
.y64{bottom:106.562310pt;}
.y4c{bottom:107.471798pt;}
.y33{bottom:108.376247pt;}
.yf2{bottom:109.565333pt;}
.y4a{bottom:110.702930pt;}
.y38{bottom:110.764421pt;}
.y5d{bottom:111.102616pt;}
.y80{bottom:111.725333pt;}
.ya9{bottom:112.408000pt;}
.y2e{bottom:112.548000pt;}
.yc5{bottom:113.218667pt;}
.y49{bottom:116.833387pt;}
.yd2{bottom:117.100000pt;}
.y5c{bottom:117.233073pt;}
.y31{bottom:119.181565pt;}
.yea{bottom:121.129333pt;}
.y63{bottom:122.520132pt;}
.yda{bottom:122.744000pt;}
.y34{bottom:123.010590pt;}
.y57{bottom:123.592381pt;}
.y35{bottom:126.604957pt;}
.yb9{bottom:127.238667pt;}
.yf1{bottom:127.632000pt;}
.y56{bottom:128.956600pt;}
.y7f{bottom:129.790667pt;}
.y6{bottom:129.932000pt;}
.y44{bottom:132.152470pt;}
.y13{bottom:132.466667pt;}
.yd1{bottom:135.166667pt;}
.yc4{bottom:135.269333pt;}
.y43{bottom:137.516680pt;}
.y62{bottom:137.796982pt;}
.ye9{bottom:139.194667pt;}
.y55{bottom:141.993794pt;}
.yd9{bottom:142.786667pt;}
.y27{bottom:143.168000pt;}
.y36{bottom:143.267565pt;}
.y24{bottom:144.141333pt;}
.y21{bottom:144.430667pt;}
.yb8{bottom:145.304000pt;}
.yd{bottom:146.186667pt;}
.y54{bottom:147.358013pt;}
.yf0{bottom:149.682667pt;}
.yd0{bottom:153.232000pt;}
.y3d{bottom:153.881188pt;}
.y12{bottom:154.517333pt;}
.y60{bottom:155.946971pt;}
.y7e{bottom:156.298667pt;}
.yc3{bottom:157.320000pt;}
.y42{bottom:159.304813pt;}
.y3c{bottom:159.381126pt;}
.ye8{bottom:161.245333pt;}
.y5f{bottom:162.077310pt;}
.y41{bottom:164.669023pt;}
.ye2{bottom:164.773333pt;}
.y5{bottom:165.004000pt;}
.yb7{bottom:167.705333pt;}
.yef{bottom:167.748000pt;}
.y40{bottom:170.193713pt;}
.ycf{bottom:171.297333pt;}
.y2d{bottom:173.841333pt;}
.y11{bottom:176.568000pt;}
.y4{bottom:177.622667pt;}
.yc2{bottom:179.370667pt;}
.ye1{bottom:182.838667pt;}
.ye7{bottom:183.296000pt;}
.y17{bottom:183.314667pt;}
.y96{bottom:184.138667pt;}
.y89{bottom:184.272000pt;}
.y6c{bottom:187.037333pt;}
.y76{bottom:187.996000pt;}
.yee{bottom:189.798667pt;}
.y3{bottom:190.242667pt;}
.yce{bottom:193.348000pt;}
.yc{bottom:194.842667pt;}
.y10{bottom:198.618667pt;}
.yc1{bottom:201.772000pt;}
.y95{bottom:202.204000pt;}
.y88{bottom:202.337333pt;}
.y16{bottom:205.294667pt;}
.ye6{bottom:205.346667pt;}
.yb6{bottom:205.920000pt;}
.yed{bottom:207.864000pt;}
.ycd{bottom:211.413333pt;}
.y75{bottom:212.702667pt;}
.ye0{bottom:218.970667pt;}
.y2{bottom:220.210667pt;}
.y94{bottom:220.269333pt;}
.y87{bottom:220.402667pt;}
.yf{bottom:220.669333pt;}
.yb5{bottom:223.986667pt;}
.ye5{bottom:227.397333pt;}
.ycc{bottom:229.478667pt;}
.yec{bottom:229.914667pt;}
.y74{bottom:231.300000pt;}
.ya0{bottom:238.334667pt;}
.y93{bottom:238.336000pt;}
.y86{bottom:238.468000pt;}
.y14{bottom:238.649333pt;}
.yc0{bottom:239.390667pt;}
.y2b{bottom:240.768000pt;}
.yb4{bottom:242.052000pt;}
.yb{bottom:243.497333pt;}
.ycb{bottom:247.544000pt;}
.yeb{bottom:247.980000pt;}
.ydf{bottom:248.990667pt;}
.y73{bottom:251.225333pt;}
.ybf{bottom:257.456000pt;}
.y2a{bottom:258.833333pt;}
.yb3{bottom:264.169333pt;}
.yca{bottom:265.610667pt;}
.y72{bottom:273.276000pt;}
.yc9{bottom:275.026667pt;}
.y1{bottom:277.840000pt;}
.ybe{bottom:278.322667pt;}
.y6b{bottom:299.766667pt;}
.y85{bottom:300.273333pt;}
.y92{bottom:300.805333pt;}
.y9f{bottom:300.806667pt;}
.ya{bottom:322.445333pt;}
.y1a{bottom:2689.303720pt;}
.y1d{bottom:2689.593053pt;}
.y20{bottom:2690.567720pt;}
.ya8{bottom:2693.875720pt;}
.y9e{bottom:2693.878387pt;}
.y7d{bottom:2694.209053pt;}
.y91{bottom:2694.674387pt;}
.ya4{bottom:2700.875720pt;}
.y9a{bottom:2700.877053pt;}
.y8d{bottom:2701.674387pt;}
.y53{bottom:2705.127720pt;}
.y19{bottom:2707.369053pt;}
.y1c{bottom:2707.658387pt;}
.y1f{bottom:2708.633053pt;}
.ya7{bottom:2711.941053pt;}
.y9d{bottom:2711.943720pt;}
.y7c{bottom:2712.274387pt;}
.y90{bottom:2712.741053pt;}
.ya3{bottom:2722.925053pt;}
.y99{bottom:2722.927720pt;}
.y8c{bottom:2723.725053pt;}
.y52{bottom:2727.178387pt;}
.y7b{bottom:2734.325053pt;}
.ybb{bottom:2734.403720pt;}
.ya6{bottom:2738.734387pt;}
.y9c{bottom:2738.735720pt;}
.y8f{bottom:2739.533053pt;}
.ya2{bottom:2744.975720pt;}
.y98{bottom:2744.978387pt;}
.y8b{bottom:2745.775720pt;}
.y51{bottom:2749.229053pt;}
.yba{bottom:2752.470387pt;}
.ye3{bottom:2754.218387pt;}
.y7a{bottom:2756.375720pt;}
.ya5{bottom:2756.799720pt;}
.y9b{bottom:2756.802387pt;}
.y8e{bottom:2757.598387pt;}
.y79{bottom:2778.426387pt;}
.ya1{bottom:2779.109053pt;}
.y97{bottom:2779.110387pt;}
.y8a{bottom:2779.907720pt;}
.y78{bottom:2796.491720pt;}
.y1e{bottom:2809.869053pt;}
.y1b{bottom:2810.842387pt;}
.y18{bottom:2811.131720pt;}
.y77{bottom:2822.999720pt;}
.y2c{bottom:2840.542387pt;}
.h15{height:7.662225pt;}
.he{height:10.028729pt;}
.hd{height:10.028731pt;}
.h11{height:13.041423pt;}
.hf{height:13.371584pt;}
.h10{height:14.904507pt;}
.h7{height:22.571418pt;}
.hb{height:25.072183pt;}
.h13{height:25.751218pt;}
.h12{height:26.279615pt;}
.h4{height:30.095098pt;}
.h6{height:31.341747pt;}
.h1b{height:31.582850pt;}
.h1c{height:31.854095pt;}
.h1d{height:31.859428pt;}
.h8{height:36.478095pt;}
.h9{height:36.483428pt;}
.h16{height:39.478463pt;}
.h18{height:40.610943pt;}
.h3{height:41.192762pt;}
.h17{height:43.229127pt;}
.h2{height:54.171251pt;}
.h1a{height:55.272773pt;}
.h1e{height:64.087196pt;}
.ha{height:64.746796pt;}
.h5{height:80.937417pt;}
.h19{height:93.134095pt;}
.h14{height:100.642368pt;}
.hc{height:178.798038pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w5{width:74.074838pt;}
.w3{width:296.322767pt;}
.w4{width:370.371101pt;}
.w2{width:370.421406pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x22{left:4.994711pt;}
.x23{left:8.766336pt;}
.xa{left:16.121333pt;}
.x16{left:18.897333pt;}
.x4c{left:25.197333pt;}
.x13{left:32.125333pt;}
.x24{left:33.799933pt;}
.x41{left:36.148918pt;}
.xb{left:38.466667pt;}
.x42{left:41.206027pt;}
.x2d{left:44.690253pt;}
.x50{left:51.477333pt;}
.x4b{left:54.288000pt;}
.x27{left:62.969707pt;}
.x28{left:64.555883pt;}
.xc{left:66.886667pt;}
.x29{left:67.790431pt;}
.x2a{left:69.986352pt;}
.x2e{left:71.105747pt;}
.x25{left:73.322523pt;}
.x26{left:75.416819pt;}
.x2c{left:77.719333pt;}
.x2b{left:78.687382pt;}
.xe{left:86.032269pt;}
.x20{left:106.647974pt;}
.x8{left:107.545547pt;}
.x1f{left:111.643174pt;}
.x43{left:115.509333pt;}
.x7{left:117.166667pt;}
.x1e{left:118.276723pt;}
.x21{left:119.242484pt;}
.x9{left:121.245333pt;}
.x3a{left:124.226800pt;}
.xf{left:126.072000pt;}
.x19{left:128.665723pt;}
.x1d{left:132.831677pt;}
.x1a{left:135.159482pt;}
.x1b{left:142.976705pt;}
.x1{left:143.932000pt;}
.x1c{left:145.490098pt;}
.x2f{left:149.975427pt;}
.xd{left:154.205333pt;}
.x39{left:165.698671pt;}
.x34{left:170.849505pt;}
.x36{left:172.158930pt;}
.x35{left:174.567693pt;}
.x33{left:175.954891pt;}
.x32{left:180.139295pt;}
.x37{left:186.150613pt;}
.x46{left:189.586667pt;}
.x18{left:215.874667pt;}
.x47{left:218.677333pt;}
.x14{left:222.992000pt;}
.x3d{left:230.199764pt;}
.x5{left:244.456000pt;}
.x2{left:247.729333pt;}
.x6{left:250.929333pt;}
.x38{left:258.468209pt;}
.x3{left:262.713333pt;}
.x3f{left:263.614064pt;}
.x3e{left:265.120189pt;}
.x4{left:266.182667pt;}
.x3c{left:273.943502pt;}
.x40{left:284.818189pt;}
.x4f{left:340.830667pt;}
.x3b{left:343.505413pt;}
.x15{left:413.857333pt;}
.x48{left:473.702667pt;}
.x4d{left:546.530667pt;}
.x4e{left:564.414667pt;}
.x10{left:2698.826387pt;}
.x30{left:2704.495720pt;}
.x49{left:2720.989053pt;}
.x31{left:2733.587720pt;}
.x44{left:2856.287720pt;}
.x17{left:2882.575720pt;}
.x45{left:2885.378387pt;}
.x11{left:2889.693053pt;}
.x4a{left:2928.745053pt;}
.x12{left:3080.558387pt;}
}




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