
    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_0e8dec177e362a78a46751c0.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_c5e3210ea08fbfa534717987.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_494f6daa84353fed77de7966.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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2bc73f28da99e037a3a7836b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3b61a4a7edb2f8868c100225.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_6faa89213b696d28c8ba92fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_6b41f949e9010af94204a501.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6fd08e126b6e75a517ae1fbe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.205000;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);}
.v3{vertical-align:-10.506000px;}
.v4{vertical-align:-2.178000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.234945px;}
.v2{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001064px;}
.ls7{letter-spacing:0.004302px;}
.ls3{letter-spacing:5.977575px;}
.ls4{letter-spacing:16.360302px;}
.ls1{letter-spacing:16.363650px;}
.ls2{letter-spacing:16.366302px;}
.ls6{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;}
}
.ws24{word-spacing:-21.519300px;}
.ws3{word-spacing:-16.363650px;}
.ws18{word-spacing:-11.249686px;}
.ws11{word-spacing:-10.866286px;}
.ws10{word-spacing:-8.149715px;}
.ws25{word-spacing:-1.898183px;}
.ws2{word-spacing:-1.767274px;}
.ws29{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.029316px;}
.ws26{word-spacing:-0.006530px;}
.ws14{word-spacing:-0.004580px;}
.ws15{word-spacing:-0.003441px;}
.ws16{word-spacing:-0.002916px;}
.ws27{word-spacing:-0.002840px;}
.ws1c{word-spacing:-0.002812px;}
.ws23{word-spacing:-0.001209px;}
.ws17{word-spacing:-0.000763px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.000324px;}
.ws13{word-spacing:0.000400px;}
.ws1d{word-spacing:0.004231px;}
.ws1{word-spacing:1.832729px;}
.ws28{word-spacing:2.731974px;}
.ws4{word-spacing:2.749093px;}
.ws6{word-spacing:53.796954px;}
.wsc{word-spacing:53.802954px;}
.wsa{word-spacing:59.773669px;}
.ws7{word-spacing:59.773692px;}
.ws9{word-spacing:59.774271px;}
.wse{word-spacing:59.774481px;}
.ws5{word-spacing:59.774965px;}
.ws12{word-spacing:82.427008px;}
.wsd{word-spacing:113.425692px;}
.wsb{word-spacing:150.781692px;}
.ws19{word-spacing:156.005157px;}
.ws1b{word-spacing:156.782432px;}
.ws1a{word-spacing:181.878633px;}
.ws8{word-spacing:246.037692px;}
.ws21{word-spacing:558.118668px;}
.ws20{word-spacing:601.711432px;}
.ws1e{word-spacing:719.400413px;}
.ws1f{word-spacing:724.635170px;}
._1b{margin-left:-577.085783px;}
._e{margin-left:-6.886176px;}
._35{margin-left:-5.825459px;}
._7{margin-left:-4.642792px;}
._36{margin-left:-3.443088px;}
._8{margin-left:-2.225456px;}
._2{margin-left:-1.112728px;}
._0{width:1.893698px;}
._b{width:3.030402px;}
._9{width:4.058185px;}
._a{width:5.885602px;}
._5{width:7.396370px;}
._6{width:8.967280px;}
._d{width:15.278746px;}
._2a{width:16.397758px;}
._c{width:17.454475px;}
._1{width:19.112743px;}
._15{width:72.064859px;}
._28{width:73.367252px;}
._4{width:80.303973px;}
._17{width:98.123679px;}
._1c{width:101.318494px;}
._24{width:106.746915px;}
._1e{width:111.333048px;}
._1a{width:125.380842px;}
._25{width:131.750572px;}
._12{width:135.479679px;}
._16{width:138.872346px;}
._13{width:140.500842px;}
._27{width:141.632552px;}
._20{width:143.994893px;}
._30{width:148.444076px;}
._21{width:149.558534px;}
._23{width:159.897070px;}
._14{width:162.736842px;}
._26{width:165.524006px;}
._1f{width:168.998551px;}
._2f{width:175.933435px;}
._1d{width:197.144029px;}
._33{width:205.061197px;}
._31{width:221.885792px;}
._f{width:230.735679px;}
._10{width:235.756842px;}
._11{width:257.992842px;}
._32{width:264.755792px;}
._18{width:266.837679px;}
._2b{width:318.753719px;}
._29{width:365.678899px;}
._19{width:388.067421px;}
._22{width:400.439777px;}
._2d{width:455.681222px;}
._2c{width:480.620422px;}
._2e{width:617.516688px;}
._3{width:634.196688px;}
._34{width:745.741171px;}
.fc8{color:rgb(232,103,88);}
.fc5{color:rgb(224,45,48);}
.fc3{color:transparent;}
.fc6{color:rgb(235,109,93);}
.fc4{color:rgb(82,86,109);}
.fc2{color:rgb(255,0,0);}
.fc7{color:rgb(180,68,57);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:26.058240px;}
.fs7{font-size:29.315520px;}
.fsa{font-size:32.572800px;}
.fs4{font-size:35.865600px;}
.fs8{font-size:39.087360px;}
.fsc{font-size:44.998744px;}
.fs5{font-size:45.377280px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs9{font-size:124.069189px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.873000px;}
.y8b{bottom:3.874500px;}
.y90{bottom:9.482338px;}
.y92{bottom:15.508852px;}
.y2f{bottom:17.482834px;}
.y73{bottom:19.451197px;}
.y8f{bottom:21.535364px;}
.y8e{bottom:21.535366px;}
.ybe{bottom:22.444500px;}
.y8a{bottom:24.882000px;}
.ya9{bottom:24.921000px;}
.y39{bottom:25.956000px;}
.y91{bottom:27.561878px;}
.y72{bottom:27.594397px;}
.y47{bottom:29.572500px;}
.yed{bottom:30.067500px;}
.y4f{bottom:30.319500px;}
.ye0{bottom:35.175000px;}
.y71{bottom:35.737597px;}
.y8d{bottom:40.016671px;}
.y38{bottom:42.394500px;}
.y1e{bottom:43.392000px;}
.y46{bottom:43.768500px;}
.y59{bottom:43.770000px;}
.y70{bottom:43.880797px;}
.y4e{bottom:44.517000px;}
.y89{bottom:45.207000px;}
.ya8{bottom:45.244500px;}
.y68{bottom:47.472090px;}
.y62{bottom:47.926426px;}
.ycb{bottom:51.504000px;}
.y6e{bottom:51.805554px;}
.y6f{bottom:52.023997px;}
.yec{bottom:53.239500px;}
.y65{bottom:56.079133px;}
.y9a{bottom:57.001500px;}
.y45{bottom:57.966000px;}
.ybd{bottom:58.614000px;}
.y4d{bottom:58.713000px;}
.y37{bottom:58.833000px;}
.y67{bottom:58.934837px;}
.ydf{bottom:59.982000px;}
.y61{bottom:63.408013px;}
.y6c{bottom:63.741727px;}
.y9{bottom:65.211000px;}
.y2c{bottom:66.871500px;}
.y5a{bottom:67.293000px;}
.ya7{bottom:67.644000px;}
.y1d{bottom:68.199000px;}
.y44{bottom:72.162000px;}
.y58{bottom:72.163500px;}
.yca{bottom:72.426000px;}
.y4c{bottom:72.910500px;}
.y6d{bottom:74.017330px;}
.y64{bottom:76.233553px;}
.ybc{bottom:78.937500px;}
.yde{bottom:80.305500px;}
.yc7{bottom:80.535000px;}
.y36{bottom:80.616000px;}
.y99{bottom:81.808500px;}
.y8{bottom:85.534500px;}
.y43{bottom:86.359500px;}
.y88{bottom:86.476500px;}
.y4b{bottom:87.106500px;}
.y2b{bottom:87.195000px;}
.ya6{bottom:90.042000px;}
.y69{bottom:90.673358px;}
.yeb{bottom:90.994500px;}
.y1c{bottom:93.009000px;}
.yc9{bottom:94.842000px;}
.ybb{bottom:99.262500px;}
.y42{bottom:100.555500px;}
.y57{bottom:100.557000px;}
.y4a{bottom:101.304000px;}
.y35{bottom:105.087000px;}
.yc6{bottom:105.342000px;}
.y7{bottom:105.858000px;}
.y98{bottom:106.615500px;}
.y87{bottom:107.397000px;}
.ydd{bottom:108.102000px;}
.yea{bottom:111.318000px;}
.y5d{bottom:113.299486px;}
.yb2{bottom:115.182000px;}
.y41{bottom:115.350000px;}
.y56{bottom:115.351500px;}
.y49{bottom:116.098500px;}
.y2a{bottom:116.485500px;}
.y7c{bottom:117.780000px;}
.yba{bottom:120.183000px;}
.ya5{bottom:120.763500px;}
.y63{bottom:121.428313px;}
.yc5{bottom:125.665500px;}
.y86{bottom:127.720500px;}
.ydc{bottom:129.022500px;}
.ye9{bottom:129.252000px;}
.y97{bottom:131.424000px;}
.y34{bottom:132.321000px;}
.yb1{bottom:135.505500px;}
.y29{bottom:136.809000px;}
.y7b{bottom:138.702000px;}
.y48{bottom:139.627500px;}
.y1b{bottom:140.196000px;}
.y40{bottom:140.374500px;}
.ya4{bottom:141.684000px;}
.y6{bottom:144.184500px;}
.ydb{bottom:146.956500px;}
.ye8{bottom:147.184500px;}
.y85{bottom:148.045500px;}
.y33{bottom:150.253500px;}
.yc4{bottom:150.784500px;}
.y66{bottom:152.190612px;}
.yb9{bottom:154.726500px;}
.y6b{bottom:155.013419px;}
.y7a{bottom:159.025500px;}
.yb0{bottom:160.233000px;}
.y1a{bottom:160.519500px;}
.ya3{bottom:162.009000px;}
.y28{bottom:166.099500px;}
.y32{bottom:168.187500px;}
.y84{bottom:168.369000px;}
.yda{bottom:169.372500px;}
.y5e{bottom:169.676773px;}
.ye7{bottom:174.606000px;}
.y79{bottom:179.349000px;}
.yb8{bottom:179.928000px;}
.y96{bottom:180.412500px;}
.y5{bottom:181.662000px;}
.ya2{bottom:182.332500px;}
.y5f{bottom:182.502313px;}
.y55{bottom:184.141500px;}
.y3f{bottom:184.210500px;}
.y19{bottom:185.326500px;}
.y27{bottom:186.423000px;}
.y83{bottom:188.692500px;}
.y31{bottom:188.884500px;}
.yd9{bottom:194.181000px;}
.yc3{bottom:197.973000px;}
.y78{bottom:199.672500px;}
.y60{bottom:200.213773px;}
.y4{bottom:201.985500px;}
.y6a{bottom:202.491472px;}
.ya1{bottom:202.656000px;}
.y95{bottom:205.219500px;}
.yac{bottom:207.013500px;}
.y54{bottom:208.948500px;}
.y82{bottom:209.016000px;}
.y3e{bottom:209.017500px;}
.y18{bottom:210.133500px;}
.y30{bottom:210.963000px;}
.yaf{bottom:213.738000px;}
.ye6{bottom:217.393500px;}
.y5c{bottom:219.146715px;}
.y77{bottom:219.996000px;}
.yb7{bottom:220.489500px;}
.yc2{bottom:220.921500px;}
.y3{bottom:222.310500px;}
.ya0{bottom:222.979500px;}
.yab{bottom:227.337000px;}
.y53{bottom:229.272000px;}
.y81{bottom:229.339500px;}
.y3d{bottom:229.341000px;}
.y94{bottom:230.026500px;}
.yae{bottom:234.061500px;}
.y5b{bottom:234.415213px;}
.y17{bottom:234.943500px;}
.y2e{bottom:235.621500px;}
.yd0{bottom:236.967000px;}
.ye5{bottom:237.717000px;}
.y2{bottom:240.243000px;}
.y76{bottom:240.319500px;}
.yb6{bottom:240.813000px;}
.yc1{bottom:243.103500px;}
.y9f{bottom:243.901500px;}
.y80{bottom:249.664500px;}
.y52{bottom:253.999500px;}
.y3c{bottom:254.068500px;}
.y93{bottom:254.833500px;}
.yaa{bottom:255.156000px;}
.y20{bottom:256.710000px;}
.ycf{bottom:257.292000px;}
.yb5{bottom:261.136500px;}
.y75{bottom:261.241500px;}
.yad{bottom:261.880500px;}
.ye4{bottom:262.524000px;}
.yc0{bottom:266.053500px;}
.y9e{bottom:269.152500px;}
.y7f{bottom:269.988000px;}
.ye{bottom:274.473000px;}
.y8c{bottom:278.270528px;}
.yb4{bottom:282.058500px;}
.yce{bottom:282.099000px;}
.ye3{bottom:282.847500px;}
.y1f{bottom:283.608000px;}
.y9d{bottom:285.591000px;}
.y74{bottom:287.424000px;}
.ybf{bottom:288.234000px;}
.y7e{bottom:290.908500px;}
.y51{bottom:295.884000px;}
.y3b{bottom:295.911000px;}
.yd{bottom:299.280000px;}
.y9c{bottom:302.029500px;}
.y1{bottom:305.076000px;}
.ycd{bottom:306.906000px;}
.ye2{bottom:307.654500px;}
.y7d{bottom:318.727500px;}
.yc{bottom:319.603500px;}
.y50{bottom:320.692500px;}
.y3a{bottom:320.719500px;}
.yb3{bottom:323.184000px;}
.y2d{bottom:323.373000px;}
.yc8{bottom:325.371000px;}
.y9b{bottom:327.576000px;}
.ye1{bottom:327.978000px;}
.ycc{bottom:331.714500px;}
.yb{bottom:362.751000px;}
.yd8{bottom:3035.213685px;}
.y16{bottom:3043.430685px;}
.yd7{bottom:3060.020685px;}
.y26{bottom:3066.910185px;}
.y15{bottom:3068.237685px;}
.yd6{bottom:3080.344185px;}
.y25{bottom:3087.233685px;}
.y14{bottom:3093.047685px;}
.yd5{bottom:3108.140685px;}
.y24{bottom:3116.524185px;}
.yd4{bottom:3129.061185px;}
.y23{bottom:3136.847685px;}
.y13{bottom:3140.234685px;}
.yd3{bottom:3146.995185px;}
.y12{bottom:3160.558185px;}
.y22{bottom:3166.138185px;}
.yd2{bottom:3169.411185px;}
.y11{bottom:3185.365185px;}
.y21{bottom:3186.461685px;}
.yd1{bottom:3194.219685px;}
.y10{bottom:3210.172185px;}
.yf{bottom:3234.982185px;}
.h12{height:19.798155px;}
.he{height:21.722800px;}
.hd{height:22.272924px;}
.h6{height:25.392845px;}
.h11{height:27.371390px;}
.hf{height:28.963734px;}
.h9{height:30.221268px;}
.h5{height:33.856985px;}
.h17{height:35.835857px;}
.h18{height:35.841857px;}
.hb{height:38.089267px;}
.h14{height:41.578840px;}
.ha{height:42.321125px;}
.h4{height:43.456861px;}
.h3{height:46.341857px;}
.h7{height:60.081886px;}
.h13{height:60.666893px;}
.h2{height:60.942658px;}
.h8{height:78.043876px;}
.h15{height:89.790940px;}
.h10{height:91.935269px;}
.h16{height:138.003049px;}
.hc{height:246.630013px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w2{width:357.178711px;}
.w3{width:595.276717px;}
.w4{width:656.488095px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3c{left:9.642420px;}
.x2e{left:14.106881px;}
.xa{left:18.136500px;}
.x12{left:28.347000px;}
.x13{left:37.312500px;}
.xe{left:42.519000px;}
.x14{left:51.336000px;}
.x15{left:52.591500px;}
.x45{left:57.912000px;}
.x1{left:64.711500px;}
.x7{left:68.856000px;}
.x3d{left:71.623500px;}
.x41{left:72.883500px;}
.xb{left:75.247500px;}
.x34{left:86.380013px;}
.x32{left:91.273500px;}
.x2c{left:98.638558px;}
.x1f{left:100.108156px;}
.x10{left:103.700756px;}
.x11{left:107.974500px;}
.x2b{left:108.998260px;}
.x27{left:112.735681px;}
.x5{left:120.058500px;}
.x21{left:125.747306px;}
.x20{left:130.472405px;}
.x1e{left:132.489303px;}
.x9{left:136.401000px;}
.x25{left:143.272681px;}
.x22{left:149.380081px;}
.x35{left:155.885790px;}
.xf{left:161.572500px;}
.x2f{left:191.216674px;}
.x26{left:204.346681px;}
.x24{left:219.865680px;}
.x3e{left:226.620000px;}
.x6{left:255.837000px;}
.x36{left:263.157713px;}
.x2a{left:264.511018px;}
.x8{left:268.885500px;}
.x2{left:278.695500px;}
.x3{left:282.772500px;}
.x23{left:293.478826px;}
.x4{left:297.118500px;}
.x28{left:299.402400px;}
.x37{left:330.252885px;}
.x1a{left:334.486500px;}
.x1b{left:343.453500px;}
.x16{left:354.331500px;}
.x1c{left:357.477000px;}
.x1d{left:358.732500px;}
.x2d{left:362.978784px;}
.x3f{left:374.175000px;}
.x33{left:382.060500px;}
.x43{left:384.298500px;}
.x17{left:385.552500px;}
.x18{left:399.576000px;}
.x19{left:400.831500px;}
.x39{left:415.427599px;}
.x40{left:418.374000px;}
.x38{left:423.864718px;}
.x29{left:446.079652px;}
.x31{left:487.238394px;}
.x44{left:512.947500px;}
.x42{left:514.036500px;}
.x30{left:517.763165px;}
.x3b{left:594.615900px;}
.x3a{left:607.070698px;}
.xc{left:3042.557685px;}
.xd{left:3075.286185px;}
.x46{left:3108.013185px;}
@media print{
.v3{vertical-align:-9.338667pt;}
.v4{vertical-align:-1.936000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.875507pt;}
.v2{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000946pt;}
.ls7{letter-spacing:0.003824pt;}
.ls3{letter-spacing:5.313400pt;}
.ls4{letter-spacing:14.542491pt;}
.ls1{letter-spacing:14.545467pt;}
.ls2{letter-spacing:14.547824pt;}
.ls6{letter-spacing:46.812885pt;}
.ws24{word-spacing:-19.128267pt;}
.ws3{word-spacing:-14.545467pt;}
.ws18{word-spacing:-9.999721pt;}
.ws11{word-spacing:-9.658921pt;}
.ws10{word-spacing:-7.244191pt;}
.ws25{word-spacing:-1.687274pt;}
.ws2{word-spacing:-1.570910pt;}
.ws29{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.026058pt;}
.ws26{word-spacing:-0.005804pt;}
.ws14{word-spacing:-0.004071pt;}
.ws15{word-spacing:-0.003059pt;}
.ws16{word-spacing:-0.002592pt;}
.ws27{word-spacing:-0.002524pt;}
.ws1c{word-spacing:-0.002499pt;}
.ws23{word-spacing:-0.001075pt;}
.ws17{word-spacing:-0.000678pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.000288pt;}
.ws13{word-spacing:0.000356pt;}
.ws1d{word-spacing:0.003761pt;}
.ws1{word-spacing:1.629092pt;}
.ws28{word-spacing:2.428421pt;}
.ws4{word-spacing:2.443638pt;}
.ws6{word-spacing:47.819515pt;}
.wsc{word-spacing:47.824848pt;}
.wsa{word-spacing:53.132150pt;}
.ws7{word-spacing:53.132171pt;}
.ws9{word-spacing:53.132685pt;}
.wse{word-spacing:53.132872pt;}
.ws5{word-spacing:53.133302pt;}
.ws12{word-spacing:73.268451pt;}
.wsd{word-spacing:100.822837pt;}
.wsb{word-spacing:134.028171pt;}
.ws19{word-spacing:138.671250pt;}
.ws1b{word-spacing:139.362162pt;}
.ws1a{word-spacing:161.669896pt;}
.ws8{word-spacing:218.700171pt;}
.ws21{word-spacing:496.105483pt;}
.ws20{word-spacing:534.854606pt;}
.ws1e{word-spacing:639.467034pt;}
.ws1f{word-spacing:644.120151pt;}
._1b{margin-left:-512.965140pt;}
._e{margin-left:-6.121045pt;}
._35{margin-left:-5.178186pt;}
._7{margin-left:-4.126926pt;}
._36{margin-left:-3.060523pt;}
._8{margin-left:-1.978183pt;}
._2{margin-left:-0.989092pt;}
._0{width:1.683287pt;}
._b{width:2.693690pt;}
._9{width:3.607276pt;}
._a{width:5.231646pt;}
._5{width:6.574551pt;}
._6{width:7.970916pt;}
._d{width:13.581107pt;}
._2a{width:14.575785pt;}
._c{width:15.515089pt;}
._1{width:16.989105pt;}
._15{width:64.057653pt;}
._28{width:65.215335pt;}
._4{width:71.381309pt;}
._17{width:87.221048pt;}
._1c{width:90.060884pt;}
._24{width:94.886147pt;}
._1e{width:98.962709pt;}
._1a{width:111.449637pt;}
._25{width:117.111620pt;}
._12{width:120.426381pt;}
._16{width:123.442085pt;}
._13{width:124.889637pt;}
._27{width:125.895602pt;}
._20{width:127.995461pt;}
._30{width:131.950290pt;}
._21{width:132.940919pt;}
._23{width:142.130729pt;}
._14{width:144.654971pt;}
._26{width:147.132450pt;}
._1f{width:150.220934pt;}
._2f{width:156.385276pt;}
._1d{width:175.239137pt;}
._33{width:182.276619pt;}
._31{width:197.231815pt;}
._f{width:205.098381pt;}
._10{width:209.561637pt;}
._11{width:229.326971pt;}
._32{width:235.338482pt;}
._18{width:237.189048pt;}
._2b{width:283.336639pt;}
._29{width:325.047910pt;}
._19{width:344.948819pt;}
._22{width:355.946468pt;}
._2d{width:405.049975pt;}
._2c{width:427.218153pt;}
._2e{width:548.903723pt;}
._3{width:563.730389pt;}
._34{width:662.881041pt;}
.fsb{font-size:23.162880pt;}
.fs7{font-size:26.058240pt;}
.fsa{font-size:28.953600pt;}
.fs4{font-size:31.880533pt;}
.fs8{font-size:34.744320pt;}
.fsc{font-size:39.998884pt;}
.fs5{font-size:40.335360pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs9{font-size:110.283724pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.442667pt;}
.y8b{bottom:3.444000pt;}
.y90{bottom:8.428745pt;}
.y92{bottom:13.785646pt;}
.y2f{bottom:15.540297pt;}
.y73{bottom:17.289953pt;}
.y8f{bottom:19.142546pt;}
.y8e{bottom:19.142547pt;}
.ybe{bottom:19.950667pt;}
.y8a{bottom:22.117333pt;}
.ya9{bottom:22.152000pt;}
.y39{bottom:23.072000pt;}
.y91{bottom:24.499447pt;}
.y72{bottom:24.528353pt;}
.y47{bottom:26.286667pt;}
.yed{bottom:26.726667pt;}
.y4f{bottom:26.950667pt;}
.ye0{bottom:31.266667pt;}
.y71{bottom:31.766753pt;}
.y8d{bottom:35.570374pt;}
.y38{bottom:37.684000pt;}
.y1e{bottom:38.570667pt;}
.y46{bottom:38.905333pt;}
.y59{bottom:38.906667pt;}
.y70{bottom:39.005153pt;}
.y4e{bottom:39.570667pt;}
.y89{bottom:40.184000pt;}
.ya8{bottom:40.217333pt;}
.y68{bottom:42.197413pt;}
.y62{bottom:42.601267pt;}
.ycb{bottom:45.781333pt;}
.y6e{bottom:46.049381pt;}
.y6f{bottom:46.243553pt;}
.yec{bottom:47.324000pt;}
.y65{bottom:49.848118pt;}
.y9a{bottom:50.668000pt;}
.y45{bottom:51.525333pt;}
.ybd{bottom:52.101333pt;}
.y4d{bottom:52.189333pt;}
.y37{bottom:52.296000pt;}
.y67{bottom:52.386522pt;}
.ydf{bottom:53.317333pt;}
.y61{bottom:56.362678pt;}
.y6c{bottom:56.659313pt;}
.y9{bottom:57.965333pt;}
.y2c{bottom:59.441333pt;}
.y5a{bottom:59.816000pt;}
.ya7{bottom:60.128000pt;}
.y1d{bottom:60.621333pt;}
.y44{bottom:64.144000pt;}
.y58{bottom:64.145333pt;}
.yca{bottom:64.378667pt;}
.y4c{bottom:64.809333pt;}
.y6d{bottom:65.793182pt;}
.y64{bottom:67.763158pt;}
.ybc{bottom:70.166667pt;}
.yde{bottom:71.382667pt;}
.yc7{bottom:71.586667pt;}
.y36{bottom:71.658667pt;}
.y99{bottom:72.718667pt;}
.y8{bottom:76.030667pt;}
.y43{bottom:76.764000pt;}
.y88{bottom:76.868000pt;}
.y4b{bottom:77.428000pt;}
.y2b{bottom:77.506667pt;}
.ya6{bottom:80.037333pt;}
.y69{bottom:80.598540pt;}
.yeb{bottom:80.884000pt;}
.y1c{bottom:82.674667pt;}
.yc9{bottom:84.304000pt;}
.ybb{bottom:88.233333pt;}
.y42{bottom:89.382667pt;}
.y57{bottom:89.384000pt;}
.y4a{bottom:90.048000pt;}
.y35{bottom:93.410667pt;}
.yc6{bottom:93.637333pt;}
.y7{bottom:94.096000pt;}
.y98{bottom:94.769333pt;}
.y87{bottom:95.464000pt;}
.ydd{bottom:96.090667pt;}
.yea{bottom:98.949333pt;}
.y5d{bottom:100.710654pt;}
.yb2{bottom:102.384000pt;}
.y41{bottom:102.533333pt;}
.y56{bottom:102.534667pt;}
.y49{bottom:103.198667pt;}
.y2a{bottom:103.542667pt;}
.y7c{bottom:104.693333pt;}
.yba{bottom:106.829333pt;}
.ya5{bottom:107.345333pt;}
.y63{bottom:107.936278pt;}
.yc5{bottom:111.702667pt;}
.y86{bottom:113.529333pt;}
.ydc{bottom:114.686667pt;}
.ye9{bottom:114.890667pt;}
.y97{bottom:116.821333pt;}
.y34{bottom:117.618667pt;}
.yb1{bottom:120.449333pt;}
.y29{bottom:121.608000pt;}
.y7b{bottom:123.290667pt;}
.y48{bottom:124.113333pt;}
.y1b{bottom:124.618667pt;}
.y40{bottom:124.777333pt;}
.ya4{bottom:125.941333pt;}
.y6{bottom:128.164000pt;}
.ydb{bottom:130.628000pt;}
.ye8{bottom:130.830667pt;}
.y85{bottom:131.596000pt;}
.y33{bottom:133.558667pt;}
.yc4{bottom:134.030667pt;}
.y66{bottom:135.280544pt;}
.yb9{bottom:137.534667pt;}
.y6b{bottom:137.789706pt;}
.y7a{bottom:141.356000pt;}
.yb0{bottom:142.429333pt;}
.y1a{bottom:142.684000pt;}
.ya3{bottom:144.008000pt;}
.y28{bottom:147.644000pt;}
.y32{bottom:149.500000pt;}
.y84{bottom:149.661333pt;}
.yda{bottom:150.553333pt;}
.y5e{bottom:150.823798pt;}
.ye7{bottom:155.205333pt;}
.y79{bottom:159.421333pt;}
.yb8{bottom:159.936000pt;}
.y96{bottom:160.366667pt;}
.y5{bottom:161.477333pt;}
.ya2{bottom:162.073333pt;}
.y5f{bottom:162.224278pt;}
.y55{bottom:163.681333pt;}
.y3f{bottom:163.742667pt;}
.y19{bottom:164.734667pt;}
.y27{bottom:165.709333pt;}
.y83{bottom:167.726667pt;}
.y31{bottom:167.897333pt;}
.yd9{bottom:172.605333pt;}
.yc3{bottom:175.976000pt;}
.y78{bottom:177.486667pt;}
.y60{bottom:177.967798pt;}
.y4{bottom:179.542667pt;}
.y6a{bottom:179.992420pt;}
.ya1{bottom:180.138667pt;}
.y95{bottom:182.417333pt;}
.yac{bottom:184.012000pt;}
.y54{bottom:185.732000pt;}
.y82{bottom:185.792000pt;}
.y3e{bottom:185.793333pt;}
.y18{bottom:186.785333pt;}
.y30{bottom:187.522667pt;}
.yaf{bottom:189.989333pt;}
.ye6{bottom:193.238667pt;}
.y5c{bottom:194.797080pt;}
.y77{bottom:195.552000pt;}
.yb7{bottom:195.990667pt;}
.yc2{bottom:196.374667pt;}
.y3{bottom:197.609333pt;}
.ya0{bottom:198.204000pt;}
.yab{bottom:202.077333pt;}
.y53{bottom:203.797333pt;}
.y81{bottom:203.857333pt;}
.y3d{bottom:203.858667pt;}
.y94{bottom:204.468000pt;}
.yae{bottom:208.054667pt;}
.y5b{bottom:208.369078pt;}
.y17{bottom:208.838667pt;}
.y2e{bottom:209.441333pt;}
.yd0{bottom:210.637333pt;}
.ye5{bottom:211.304000pt;}
.y2{bottom:213.549333pt;}
.y76{bottom:213.617333pt;}
.yb6{bottom:214.056000pt;}
.yc1{bottom:216.092000pt;}
.y9f{bottom:216.801333pt;}
.y80{bottom:221.924000pt;}
.y52{bottom:225.777333pt;}
.y3c{bottom:225.838667pt;}
.y93{bottom:226.518667pt;}
.yaa{bottom:226.805333pt;}
.y20{bottom:228.186667pt;}
.ycf{bottom:228.704000pt;}
.yb5{bottom:232.121333pt;}
.y75{bottom:232.214667pt;}
.yad{bottom:232.782667pt;}
.ye4{bottom:233.354667pt;}
.yc0{bottom:236.492000pt;}
.y9e{bottom:239.246667pt;}
.y7f{bottom:239.989333pt;}
.ye{bottom:243.976000pt;}
.y8c{bottom:247.351580pt;}
.yb4{bottom:250.718667pt;}
.yce{bottom:250.754667pt;}
.ye3{bottom:251.420000pt;}
.y1f{bottom:252.096000pt;}
.y9d{bottom:253.858667pt;}
.y74{bottom:255.488000pt;}
.ybf{bottom:256.208000pt;}
.y7e{bottom:258.585333pt;}
.y51{bottom:263.008000pt;}
.y3b{bottom:263.032000pt;}
.yd{bottom:266.026667pt;}
.y9c{bottom:268.470667pt;}
.y1{bottom:271.178667pt;}
.ycd{bottom:272.805333pt;}
.ye2{bottom:273.470667pt;}
.y7d{bottom:283.313333pt;}
.yc{bottom:284.092000pt;}
.y50{bottom:285.060000pt;}
.y3a{bottom:285.084000pt;}
.yb3{bottom:287.274667pt;}
.y2d{bottom:287.442667pt;}
.yc8{bottom:289.218667pt;}
.y9b{bottom:291.178667pt;}
.ye1{bottom:291.536000pt;}
.ycc{bottom:294.857333pt;}
.yb{bottom:322.445333pt;}
.yd8{bottom:2697.967720pt;}
.y16{bottom:2705.271720pt;}
.yd7{bottom:2720.018387pt;}
.y26{bottom:2726.142387pt;}
.y15{bottom:2727.322387pt;}
.yd6{bottom:2738.083720pt;}
.y25{bottom:2744.207720pt;}
.y14{bottom:2749.375720pt;}
.yd5{bottom:2762.791720pt;}
.y24{bottom:2770.243720pt;}
.yd4{bottom:2781.387720pt;}
.y23{bottom:2788.309053pt;}
.y13{bottom:2791.319720pt;}
.yd3{bottom:2797.329053pt;}
.y12{bottom:2809.385053pt;}
.y22{bottom:2814.345053pt;}
.yd2{bottom:2817.254387pt;}
.y11{bottom:2831.435720pt;}
.y21{bottom:2832.410387pt;}
.yd1{bottom:2839.306387pt;}
.y10{bottom:2853.486387pt;}
.yf{bottom:2875.539720pt;}
.h12{height:17.598360pt;}
.he{height:19.309156pt;}
.hd{height:19.798155pt;}
.h6{height:22.571418pt;}
.h11{height:24.330124pt;}
.hf{height:25.745541pt;}
.h9{height:26.863350pt;}
.h5{height:30.095098pt;}
.h17{height:31.854095pt;}
.h18{height:31.859428pt;}
.hb{height:33.857126pt;}
.h14{height:36.958969pt;}
.ha{height:37.618778pt;}
.h4{height:38.628321pt;}
.h3{height:41.192762pt;}
.h7{height:53.406121pt;}
.h13{height:53.926127pt;}
.h2{height:54.171251pt;}
.h8{height:69.372334pt;}
.h15{height:79.814169pt;}
.h10{height:81.720239pt;}
.h16{height:122.669377pt;}
.hc{height:219.226678pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w2{width:317.492188pt;}
.w3{width:529.134860pt;}
.w4{width:583.544973pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3c{left:8.571040pt;}
.x2e{left:12.539450pt;}
.xa{left:16.121333pt;}
.x12{left:25.197333pt;}
.x13{left:33.166667pt;}
.xe{left:37.794667pt;}
.x14{left:45.632000pt;}
.x15{left:46.748000pt;}
.x45{left:51.477333pt;}
.x1{left:57.521333pt;}
.x7{left:61.205333pt;}
.x3d{left:63.665333pt;}
.x41{left:64.785333pt;}
.xb{left:66.886667pt;}
.x34{left:76.782233pt;}
.x32{left:81.132000pt;}
.x2c{left:87.678718pt;}
.x1f{left:88.985028pt;}
.x10{left:92.178450pt;}
.x11{left:95.977333pt;}
.x2b{left:96.887342pt;}
.x27{left:100.209495pt;}
.x5{left:106.718667pt;}
.x21{left:111.775383pt;}
.x20{left:115.975471pt;}
.x1e{left:117.768269pt;}
.x9{left:121.245333pt;}
.x25{left:127.353495pt;}
.x22{left:132.782295pt;}
.x35{left:138.565147pt;}
.xf{left:143.620000pt;}
.x2f{left:169.970377pt;}
.x26{left:181.641495pt;}
.x24{left:195.436160pt;}
.x3e{left:201.440000pt;}
.x6{left:227.410667pt;}
.x36{left:233.917967pt;}
.x2a{left:235.120905pt;}
.x8{left:239.009333pt;}
.x2{left:247.729333pt;}
.x3{left:251.353333pt;}
.x23{left:260.870068pt;}
.x4{left:264.105333pt;}
.x28{left:266.135467pt;}
.x37{left:293.558120pt;}
.x1a{left:297.321333pt;}
.x1b{left:305.292000pt;}
.x16{left:314.961333pt;}
.x1c{left:317.757333pt;}
.x1d{left:318.873333pt;}
.x2d{left:322.647808pt;}
.x3f{left:332.600000pt;}
.x33{left:339.609333pt;}
.x43{left:341.598667pt;}
.x17{left:342.713333pt;}
.x18{left:355.178667pt;}
.x19{left:356.294667pt;}
.x39{left:369.268977pt;}
.x40{left:371.888000pt;}
.x38{left:376.768638pt;}
.x29{left:396.515246pt;}
.x31{left:433.100795pt;}
.x44{left:455.953333pt;}
.x42{left:456.921333pt;}
.x30{left:460.233924pt;}
.x3b{left:528.547467pt;}
.x3a{left:539.618398pt;}
.xc{left:2704.495720pt;}
.xd{left:2733.587720pt;}
.x46{left:2762.678387pt;}
}




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