
    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_ac23af1820c4fdf137824c47.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_db722180608e98174dd1a126.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9a82be41a2bf86b6c5aa0bfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d29aa210db8ed0d95378f2eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_8f1fd7a4c3c8e6ec3409e371.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_d4538cb4341cce3b453af0d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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);}
.v1{vertical-align:-88.200000px;}
.v5{vertical-align:-81.000000px;}
.v3{vertical-align:-74.880000px;}
.v6{vertical-align:-64.440000px;}
.v2{vertical-align:-60.840000px;}
.v4{vertical-align:-55.437912px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.268272px;}
.ls3c{letter-spacing:-0.172800px;}
.ls2d{letter-spacing:-0.124200px;}
.ls39{letter-spacing:-0.119232px;}
.ls26{letter-spacing:-0.104328px;}
.ls29{letter-spacing:-0.081000px;}
.ls42{letter-spacing:-0.079488px;}
.ls3a{letter-spacing:-0.069552px;}
.ls2e{letter-spacing:-0.064584px;}
.ls3e{letter-spacing:-0.050400px;}
.ls27{letter-spacing:-0.049680px;}
.ls2c{letter-spacing:-0.044712px;}
.ls3d{letter-spacing:-0.043200px;}
.ls34{letter-spacing:-0.036000px;}
.ls31{letter-spacing:-0.028800px;}
.ls37{letter-spacing:-0.021600px;}
.ls35{letter-spacing:-0.014400px;}
.ls36{letter-spacing:-0.007200px;}
.ls23{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.007200px;}
.ls18{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.019872px;}
.ls1a{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023904px;}
.lsd{letter-spacing:0.029808px;}
.ls7{letter-spacing:0.037800px;}
.ls3f{letter-spacing:0.039744px;}
.ls28{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.054648px;}
.ls25{letter-spacing:0.059616px;}
.ls8{letter-spacing:0.064584px;}
.ls2{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065736px;}
.lsb{letter-spacing:0.069552px;}
.lse{letter-spacing:0.074520px;}
.ls11{letter-spacing:0.084456px;}
.ls41{letter-spacing:0.086400px;}
.ls3b{letter-spacing:0.089424px;}
.ls17{letter-spacing:0.093600px;}
.ls40{letter-spacing:0.094392px;}
.ls33{letter-spacing:0.105336px;}
.ls1d{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.129600px;}
.ls1e{letter-spacing:0.132768px;}
.ls4{letter-spacing:0.137448px;}
.ls32{letter-spacing:0.143640px;}
.ls38{letter-spacing:0.144072px;}
.ls1f{letter-spacing:0.157500px;}
.ls16{letter-spacing:0.161352px;}
.ls13{letter-spacing:0.162000px;}
.ls1b{letter-spacing:0.166500px;}
.ls2a{letter-spacing:0.171000px;}
.ls14{letter-spacing:0.175500px;}
.ls3{letter-spacing:0.178848px;}
.ls20{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.184500px;}
.lsc{letter-spacing:0.198720px;}
.ls2f{letter-spacing:0.238464px;}
.ls2b{letter-spacing:0.319500px;}
.ls10{letter-spacing:0.360000px;}
.ls22{letter-spacing:29.880000px;}
.ls30{letter-spacing:45.000000px;}
.ls15{letter-spacing:58.190184px;}
.lsf{letter-spacing:100.800000px;}
.ls0{letter-spacing:146.880000px;}
.ls12{letter-spacing:148.320000px;}
.ls21{letter-spacing:163.080000px;}
.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:-58.680000px;}
.ws9{word-spacing:-58.320000px;}
.ws1{word-spacing:-20.314800px;}
.ws0{word-spacing:-20.250000px;}
.wse{word-spacing:-17.992800px;}
.ws2{word-spacing:-16.637184px;}
.ws4{word-spacing:-13.865688px;}
.ws41{word-spacing:-13.850784px;}
.ws5{word-spacing:-13.830912px;}
.wsb{word-spacing:-13.766328px;}
.wsc{word-spacing:-13.746456px;}
.ws3{word-spacing:-13.542768px;}
.ws7{word-spacing:-12.681000px;}
.wsd{word-spacing:-12.676500px;}
.ws6{word-spacing:-12.429000px;}
.wsa{word-spacing:-0.364500px;}
.ws17{word-spacing:-0.322920px;}
.ws1c{word-spacing:-0.261000px;}
.ws10{word-spacing:-0.218700px;}
.ws1e{word-spacing:-0.208656px;}
.ws24{word-spacing:-0.203184px;}
.ws3f{word-spacing:-0.199800px;}
.ws1a{word-spacing:-0.198720px;}
.ws13{word-spacing:-0.193752px;}
.ws22{word-spacing:-0.188784px;}
.ws15{word-spacing:-0.183816px;}
.ws16{word-spacing:-0.178848px;}
.ws23{word-spacing:-0.144072px;}
.ws26{word-spacing:-0.105336px;}
.ws39{word-spacing:-0.085500px;}
.ws3e{word-spacing:-0.081000px;}
.ws21{word-spacing:-0.076500px;}
.ws3d{word-spacing:-0.070200px;}
.ws37{word-spacing:-0.067500px;}
.ws20{word-spacing:-0.063000px;}
.ws3c{word-spacing:-0.058500px;}
.ws3b{word-spacing:-0.054648px;}
.ws42{word-spacing:-0.044712px;}
.ws11{word-spacing:-0.041832px;}
.ws2e{word-spacing:-0.021600px;}
.ws2d{word-spacing:-0.014400px;}
.ws29{word-spacing:-0.007200px;}
.wsf{word-spacing:0.000000px;}
.ws31{word-spacing:0.007200px;}
.ws3a{word-spacing:0.010800px;}
.ws2a{word-spacing:0.014400px;}
.ws28{word-spacing:0.021600px;}
.ws35{word-spacing:0.043200px;}
.ws1d{word-spacing:0.045000px;}
.ws44{word-spacing:0.050400px;}
.ws2c{word-spacing:0.057600px;}
.ws33{word-spacing:0.064800px;}
.ws12{word-spacing:0.081000px;}
.ws2f{word-spacing:0.086400px;}
.ws46{word-spacing:0.093600px;}
.ws36{word-spacing:0.094392px;}
.ws45{word-spacing:0.100800px;}
.ws34{word-spacing:0.108000px;}
.ws30{word-spacing:0.115200px;}
.ws1f{word-spacing:0.118800px;}
.ws47{word-spacing:0.122400px;}
.ws2b{word-spacing:0.129600px;}
.ws43{word-spacing:0.144072px;}
.ws14{word-spacing:0.173880px;}
.ws27{word-spacing:0.180000px;}
.ws19{word-spacing:0.208656px;}
.ws32{word-spacing:0.208800px;}
.ws40{word-spacing:0.230400px;}
.ws1b{word-spacing:0.288144px;}
.ws18{word-spacing:0.342792px;}
.ws38{word-spacing:0.357696px;}
.ws25{word-spacing:0.388800px;}
._8{margin-left:-2920.320000px;}
._4{margin-left:-58.680000px;}
._5{margin-left:-57.600000px;}
._6{margin-left:-45.000000px;}
._1{margin-left:-1.219500px;}
._0{width:1.066152px;}
._2{width:18.901008px;}
._7{width:81.076752px;}
._3{width:90.657000px;}
.fcf{color:transparent;}
.fce{color:rgb(0,0,128);}
.fcd{color:rgb(0,119,0);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(51,101,204);}
.fc1{color:rgb(107,104,103);}
.fc9{color:rgb(112,111,100);}
.fc5{color:rgb(128,0,128);}
.fc3{color:rgb(154,0,0);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(108,104,101);}
.fcb{color:rgb(53,0,106);}
.fc8{color:rgb(241,239,226);}
.fca{color:rgb(172,168,154);}
.fcc{color:rgb(255,0,0);}
.fs5{font-size:45.000000px;}
.fs2{font-size:49.680000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:58.320000px;}
.fs6{font-size:58.680000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:81.000000px;}
.fs8{font-size:95.760000px;}
.y8c{bottom:-35.879550px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.610450px;}
.y21{bottom:2.700450px;}
.y3b{bottom:3.870450px;}
.y47{bottom:4.050450px;}
.y57{bottom:4.050600px;}
.y6f{bottom:45.120450px;}
.y38{bottom:48.630450px;}
.y6d{bottom:61.050000px;}
.y6e{bottom:65.100450px;}
.y37{bottom:67.351122px;}
.y36{bottom:81.210600px;}
.y6c{bottom:84.990450px;}
.y35{bottom:96.420450px;}
.y6b{bottom:104.970450px;}
.y34{bottom:115.050306px;}
.y6a{bottom:124.950450px;}
.y33{bottom:142.859970px;}
.y69{bottom:144.840450px;}
.y32{bottom:156.540450px;}
.y67{bottom:160.770000px;}
.y68{bottom:164.820450px;}
.y31{bottom:169.230450px;}
.y30{bottom:183.360450px;}
.y66{bottom:184.710450px;}
.y2f{bottom:202.260450px;}
.y65{bottom:204.690450px;}
.yc6{bottom:208.200450px;}
.y2e{bottom:222.870450px;}
.y64{bottom:224.580450px;}
.yc5{bottom:228.180450px;}
.y63{bottom:244.560450px;}
.y2b{bottom:247.890450px;}
.yc4{bottom:248.070450px;}
.y2d{bottom:249.150450px;}
.y62{bottom:264.450450px;}
.y2c{bottom:267.330450px;}
.yc3{bottom:268.050450px;}
.y2a{bottom:268.500450px;}
.y61{bottom:284.430450px;}
.yc2{bottom:287.940450px;}
.y60{bottom:304.410450px;}
.yc1{bottom:307.920450px;}
.y29{bottom:310.800450px;}
.y5f{bottom:324.300450px;}
.y28{bottom:325.920450px;}
.yc0{bottom:327.810450px;}
.y5d{bottom:340.230000px;}
.y5e{bottom:344.280450px;}
.y27{bottom:345.900450px;}
.ybf{bottom:347.790450px;}
.y5b{bottom:360.120000px;}
.y8a{bottom:360.480450px;}
.y5c{bottom:364.170450px;}
.ybe{bottom:367.770450px;}
.y26{bottom:379.560450px;}
.y5a{bottom:384.150600px;}
.ybd{bottom:387.660450px;}
.y89{bottom:395.490450px;}
.y25{bottom:398.280972px;}
.ybb{bottom:403.590000px;}
.y59{bottom:404.040600px;}
.ybc{bottom:407.640450px;}
.y24{bottom:412.140450px;}
.y88{bottom:417.720450px;}
.y56{bottom:419.970000px;}
.y58{bottom:424.020600px;}
.y23{bottom:427.350450px;}
.yba{bottom:427.530450px;}
.y20{bottom:443.370000px;}
.y55{bottom:443.910450px;}
.y22{bottom:446.070450px;}
.yb9{bottom:447.510450px;}
.yc7{bottom:450.480450px;}
.y87{bottom:457.770600px;}
.y53{bottom:459.840000px;}
.y1f{bottom:459.930600px;}
.yb7{bottom:463.350000px;}
.y54{bottom:463.890450px;}
.yb8{bottom:467.400450px;}
.y1e{bottom:475.140450px;}
.y52{bottom:483.870450px;}
.yb6{bottom:487.380450px;}
.y1d{bottom:493.770450px;}
.y51{bottom:503.760450px;}
.yb5{bottom:507.270450px;}
.y1c{bottom:508.980450px;}
.y50{bottom:523.740450px;}
.y1a{bottom:525.000000px;}
.yb4{bottom:527.250450px;}
.y19{bottom:527.610450px;}
.y18{bottom:541.560450px;}
.y4f{bottom:543.630450px;}
.yb3{bottom:547.230450px;}
.y17{bottom:555.420306px;}
.yb1{bottom:563.070000px;}
.y4e{bottom:563.610450px;}
.yb2{bottom:567.120450px;}
.y16{bottom:569.370450px;}
.y86{bottom:575.580450px;}
.y4d{bottom:583.500450px;}
.y15{bottom:584.490450px;}
.yb0{bottom:587.100450px;}
.y85{bottom:599.970450px;}
.y14{bottom:603.210450px;}
.y4c{bottom:603.480450px;}
.yaf{bottom:606.990450px;}
.y13{bottom:617.160450px;}
.yad{bottom:622.920000px;}
.y84{bottom:622.920450px;}
.y4b{bottom:623.370450px;}
.yae{bottom:626.970450px;}
.y12{bottom:632.280450px;}
.y83{bottom:635.610450px;}
.y4a{bottom:643.350450px;}
.yac{bottom:646.860450px;}
.y82{bottom:648.210450px;}
.y11{bottom:651.000972px;}
.y81{bottom:661.080450px;}
.y49{bottom:663.330450px;}
.y10{bottom:664.860450px;}
.y93{bottom:666.840450px;}
.y46{bottom:679.170000px;}
.y80{bottom:679.710450px;}
.yf{bottom:680.070450px;}
.y48{bottom:683.220450px;}
.yab{bottom:686.730450px;}
.y7f{bottom:700.320450px;}
.ya9{bottom:702.660000px;}
.y45{bottom:703.200450px;}
.yaa{bottom:706.710450px;}
.y44{bottom:723.090450px;}
.y7e{bottom:723.270450px;}
.ya8{bottom:726.690450px;}
.y7d{bottom:735.960450px;}
.y43{bottom:743.070450px;}
.ya7{bottom:746.580450px;}
.y7c{bottom:748.830306px;}
.y7b{bottom:762.780450px;}
.y42{bottom:762.960450px;}
.ya6{bottom:766.560450px;}
.y7a{bottom:781.320450px;}
.y41{bottom:782.940450px;}
.ya5{bottom:786.450450px;}
.y79{bottom:802.020450px;}
.y40{bottom:802.830450px;}
.ya4{bottom:806.430450px;}
.y3f{bottom:822.810450px;}
.y78{bottom:824.880450px;}
.ya3{bottom:826.320450px;}
.y77{bottom:837.570450px;}
.ya2{bottom:846.300450px;}
.y76{bottom:850.260450px;}
.y75{bottom:862.860450px;}
.y3e{bottom:865.290468px;}
.ya1{bottom:866.190450px;}
.y74{bottom:875.730450px;}
.ya0{bottom:886.170450px;}
.y3d{bottom:892.110450px;}
.y73{bottom:893.910450px;}
.ye{bottom:897.960450px;}
.y9f{bottom:906.150450px;}
.y72{bottom:906.600450px;}
.yd{bottom:916.680450px;}
.y71{bottom:919.200450px;}
.y9e{bottom:926.040450px;}
.y3c{bottom:929.190450px;}
.yc{bottom:931.800450px;}
.y70{bottom:932.070450px;}
.y3a{bottom:945.300000px;}
.y9d{bottom:946.020450px;}
.y39{bottom:949.170450px;}
.yb{bottom:950.700450px;}
.y9c{bottom:965.910450px;}
.ya{bottom:971.310450px;}
.y9b{bottom:985.890450px;}
.y9{bottom:990.569910px;}
.y1{bottom:1004.700450px;}
.y9a{bottom:1005.780450px;}
.y8{bottom:1007.310180px;}
.y7{bottom:1024.050450px;}
.y99{bottom:1025.760450px;}
.y98{bottom:1045.650450px;}
.y2{bottom:1047.270450px;}
.y92{bottom:1047.630450px;}
.y6{bottom:1064.910450px;}
.y97{bottom:1065.630450px;}
.y91{bottom:1066.349730px;}
.y90{bottom:1080.210450px;}
.y3{bottom:1084.530450px;}
.y96{bottom:1085.610450px;}
.y5{bottom:1085.700162px;}
.y8f{bottom:1095.420450px;}
.y95{bottom:1105.500450px;}
.y8e{bottom:1114.050306px;}
.y4{bottom:1123.230450px;}
.y94{bottom:1125.480450px;}
.y8d{bottom:1128.000450px;}
.y8b{bottom:1206.480450px;}
.h13{height:-19.769490px;}
.h9{height:14.130000px;}
.ha{height:14.220000px;}
.h10{height:19.890000px;}
.h12{height:20.250000px;}
.hd{height:46.933594px;}
.hc{height:48.015000px;}
.h3{height:50.068125px;}
.h8{height:51.814687px;}
.hf{height:51.815264px;}
.he{height:51.815287px;}
.h14{height:51.817567px;}
.hb{height:55.035000px;}
.h7{height:56.320312px;}
.h6{height:62.327813px;}
.h5{height:63.763920px;}
.h1{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:81.632812px;}
.h11{height:99.874688px;}
.h0{height:1195.500000px;}
.w1{width:-68.580000px;}
.w2{width:-39.510000px;}
.w3{width:46.980000px;}
.wa{width:77.940000px;}
.wd{width:212.940000px;}
.wb{width:226.170000px;}
.wf{width:317.430000px;}
.w5{width:337.410000px;}
.we{width:350.910000px;}
.w10{width:357.930000px;}
.w6{width:359.370000px;}
.w4{width:361.350000px;}
.w8{width:361.890000px;}
.wc{width:364.410000px;}
.w7{width:374.400000px;}
.w9{width:374.490000px;}
.w0{width:393.000000px;}
.xb{left:-144.000000px;}
.x10{left:-140.580000px;}
.xa{left:-139.500000px;}
.x13{left:-125.370000px;}
.x11{left:-119.610000px;}
.xc{left:-106.650000px;}
.x14{left:-102.510000px;}
.xd{left:-99.090000px;}
.xe{left:-72.720000px;}
.xf{left:-68.580000px;}
.x1{left:-39.960000px;}
.x1e{left:-37.080000px;}
.x12{left:-35.730000px;}
.x1f{left:-27.990000px;}
.x2{left:-2.250000px;}
.x0{left:0.000000px;}
.x15{left:11.250000px;}
.x19{left:20.250000px;}
.x22{left:24.210000px;}
.x17{left:28.980000px;}
.x20{left:106.470000px;}
.x21{left:115.470000px;}
.x3{left:175.680000px;}
.x16{left:287.640000px;}
.x18{left:325.620000px;}
.x1b{left:401.670000px;}
.x4{left:403.830000px;}
.x1a{left:408.420000px;}
.x7{left:409.680000px;}
.x8{left:432.450054px;}
.x6{left:450.990000px;}
.x9{left:459.089568px;}
.x5{left:491.579586px;}
.x1d{left:497.610000px;}
.x1c{left:500.130000px;}
@media print{
.v1{vertical-align:-78.400000pt;}
.v5{vertical-align:-72.000000pt;}
.v3{vertical-align:-66.560000pt;}
.v6{vertical-align:-57.280000pt;}
.v2{vertical-align:-54.080000pt;}
.v4{vertical-align:-49.278144pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.238464pt;}
.ls3c{letter-spacing:-0.153600pt;}
.ls2d{letter-spacing:-0.110400pt;}
.ls39{letter-spacing:-0.105984pt;}
.ls26{letter-spacing:-0.092736pt;}
.ls29{letter-spacing:-0.072000pt;}
.ls42{letter-spacing:-0.070656pt;}
.ls3a{letter-spacing:-0.061824pt;}
.ls2e{letter-spacing:-0.057408pt;}
.ls3e{letter-spacing:-0.044800pt;}
.ls27{letter-spacing:-0.044160pt;}
.ls2c{letter-spacing:-0.039744pt;}
.ls3d{letter-spacing:-0.038400pt;}
.ls34{letter-spacing:-0.032000pt;}
.ls31{letter-spacing:-0.025600pt;}
.ls37{letter-spacing:-0.019200pt;}
.ls35{letter-spacing:-0.012800pt;}
.ls36{letter-spacing:-0.006400pt;}
.ls23{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.006400pt;}
.ls18{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.017664pt;}
.ls1a{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.021248pt;}
.lsd{letter-spacing:0.026496pt;}
.ls7{letter-spacing:0.033600pt;}
.ls3f{letter-spacing:0.035328pt;}
.ls28{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.048576pt;}
.ls25{letter-spacing:0.052992pt;}
.ls8{letter-spacing:0.057408pt;}
.ls2{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058432pt;}
.lsb{letter-spacing:0.061824pt;}
.lse{letter-spacing:0.066240pt;}
.ls11{letter-spacing:0.075072pt;}
.ls41{letter-spacing:0.076800pt;}
.ls3b{letter-spacing:0.079488pt;}
.ls17{letter-spacing:0.083200pt;}
.ls40{letter-spacing:0.083904pt;}
.ls33{letter-spacing:0.093632pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.115200pt;}
.ls1e{letter-spacing:0.118016pt;}
.ls4{letter-spacing:0.122176pt;}
.ls32{letter-spacing:0.127680pt;}
.ls38{letter-spacing:0.128064pt;}
.ls1f{letter-spacing:0.140000pt;}
.ls16{letter-spacing:0.143424pt;}
.ls13{letter-spacing:0.144000pt;}
.ls1b{letter-spacing:0.148000pt;}
.ls2a{letter-spacing:0.152000pt;}
.ls14{letter-spacing:0.156000pt;}
.ls3{letter-spacing:0.158976pt;}
.ls20{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.164000pt;}
.lsc{letter-spacing:0.176640pt;}
.ls2f{letter-spacing:0.211968pt;}
.ls2b{letter-spacing:0.284000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls22{letter-spacing:26.560000pt;}
.ls30{letter-spacing:40.000000pt;}
.ls15{letter-spacing:51.724608pt;}
.lsf{letter-spacing:89.600000pt;}
.ls0{letter-spacing:130.560000pt;}
.ls12{letter-spacing:131.840000pt;}
.ls21{letter-spacing:144.960000pt;}
.ws8{word-spacing:-52.160000pt;}
.ws9{word-spacing:-51.840000pt;}
.ws1{word-spacing:-18.057600pt;}
.ws0{word-spacing:-18.000000pt;}
.wse{word-spacing:-15.993600pt;}
.ws2{word-spacing:-14.788608pt;}
.ws4{word-spacing:-12.325056pt;}
.ws41{word-spacing:-12.311808pt;}
.ws5{word-spacing:-12.294144pt;}
.wsb{word-spacing:-12.236736pt;}
.wsc{word-spacing:-12.219072pt;}
.ws3{word-spacing:-12.038016pt;}
.ws7{word-spacing:-11.272000pt;}
.wsd{word-spacing:-11.268000pt;}
.ws6{word-spacing:-11.048000pt;}
.wsa{word-spacing:-0.324000pt;}
.ws17{word-spacing:-0.287040pt;}
.ws1c{word-spacing:-0.232000pt;}
.ws10{word-spacing:-0.194400pt;}
.ws1e{word-spacing:-0.185472pt;}
.ws24{word-spacing:-0.180608pt;}
.ws3f{word-spacing:-0.177600pt;}
.ws1a{word-spacing:-0.176640pt;}
.ws13{word-spacing:-0.172224pt;}
.ws22{word-spacing:-0.167808pt;}
.ws15{word-spacing:-0.163392pt;}
.ws16{word-spacing:-0.158976pt;}
.ws23{word-spacing:-0.128064pt;}
.ws26{word-spacing:-0.093632pt;}
.ws39{word-spacing:-0.076000pt;}
.ws3e{word-spacing:-0.072000pt;}
.ws21{word-spacing:-0.068000pt;}
.ws3d{word-spacing:-0.062400pt;}
.ws37{word-spacing:-0.060000pt;}
.ws20{word-spacing:-0.056000pt;}
.ws3c{word-spacing:-0.052000pt;}
.ws3b{word-spacing:-0.048576pt;}
.ws42{word-spacing:-0.039744pt;}
.ws11{word-spacing:-0.037184pt;}
.ws2e{word-spacing:-0.019200pt;}
.ws2d{word-spacing:-0.012800pt;}
.ws29{word-spacing:-0.006400pt;}
.wsf{word-spacing:0.000000pt;}
.ws31{word-spacing:0.006400pt;}
.ws3a{word-spacing:0.009600pt;}
.ws2a{word-spacing:0.012800pt;}
.ws28{word-spacing:0.019200pt;}
.ws35{word-spacing:0.038400pt;}
.ws1d{word-spacing:0.040000pt;}
.ws44{word-spacing:0.044800pt;}
.ws2c{word-spacing:0.051200pt;}
.ws33{word-spacing:0.057600pt;}
.ws12{word-spacing:0.072000pt;}
.ws2f{word-spacing:0.076800pt;}
.ws46{word-spacing:0.083200pt;}
.ws36{word-spacing:0.083904pt;}
.ws45{word-spacing:0.089600pt;}
.ws34{word-spacing:0.096000pt;}
.ws30{word-spacing:0.102400pt;}
.ws1f{word-spacing:0.105600pt;}
.ws47{word-spacing:0.108800pt;}
.ws2b{word-spacing:0.115200pt;}
.ws43{word-spacing:0.128064pt;}
.ws14{word-spacing:0.154560pt;}
.ws27{word-spacing:0.160000pt;}
.ws19{word-spacing:0.185472pt;}
.ws32{word-spacing:0.185600pt;}
.ws40{word-spacing:0.204800pt;}
.ws1b{word-spacing:0.256128pt;}
.ws18{word-spacing:0.304704pt;}
.ws38{word-spacing:0.317952pt;}
.ws25{word-spacing:0.345600pt;}
._8{margin-left:-2595.840000pt;}
._4{margin-left:-52.160000pt;}
._5{margin-left:-51.200000pt;}
._6{margin-left:-40.000000pt;}
._1{margin-left:-1.084000pt;}
._0{width:0.947691pt;}
._2{width:16.800896pt;}
._7{width:72.068224pt;}
._3{width:80.584000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:44.160000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:51.840000pt;}
.fs6{font-size:52.160000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:72.000000pt;}
.fs8{font-size:85.120000pt;}
.y8c{bottom:-31.892933pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.320400pt;}
.y21{bottom:2.400400pt;}
.y3b{bottom:3.440400pt;}
.y47{bottom:3.600400pt;}
.y57{bottom:3.600533pt;}
.y6f{bottom:40.107067pt;}
.y38{bottom:43.227067pt;}
.y6d{bottom:54.266667pt;}
.y6e{bottom:57.867067pt;}
.y37{bottom:59.867664pt;}
.y36{bottom:72.187200pt;}
.y6c{bottom:75.547067pt;}
.y35{bottom:85.707067pt;}
.y6b{bottom:93.307067pt;}
.y34{bottom:102.266939pt;}
.y6a{bottom:111.067067pt;}
.y33{bottom:126.986640pt;}
.y69{bottom:128.747067pt;}
.y32{bottom:139.147067pt;}
.y67{bottom:142.906667pt;}
.y68{bottom:146.507067pt;}
.y31{bottom:150.427067pt;}
.y30{bottom:162.987067pt;}
.y66{bottom:164.187067pt;}
.y2f{bottom:179.787067pt;}
.y65{bottom:181.947067pt;}
.yc6{bottom:185.067067pt;}
.y2e{bottom:198.107067pt;}
.y64{bottom:199.627067pt;}
.yc5{bottom:202.827067pt;}
.y63{bottom:217.387067pt;}
.y2b{bottom:220.347067pt;}
.yc4{bottom:220.507067pt;}
.y2d{bottom:221.467067pt;}
.y62{bottom:235.067067pt;}
.y2c{bottom:237.627067pt;}
.yc3{bottom:238.267067pt;}
.y2a{bottom:238.667067pt;}
.y61{bottom:252.827067pt;}
.yc2{bottom:255.947067pt;}
.y60{bottom:270.587067pt;}
.yc1{bottom:273.707067pt;}
.y29{bottom:276.267067pt;}
.y5f{bottom:288.267067pt;}
.y28{bottom:289.707067pt;}
.yc0{bottom:291.387067pt;}
.y5d{bottom:302.426667pt;}
.y5e{bottom:306.027067pt;}
.y27{bottom:307.467067pt;}
.ybf{bottom:309.147067pt;}
.y5b{bottom:320.106667pt;}
.y8a{bottom:320.427067pt;}
.y5c{bottom:323.707067pt;}
.ybe{bottom:326.907067pt;}
.y26{bottom:337.387067pt;}
.y5a{bottom:341.467200pt;}
.ybd{bottom:344.587067pt;}
.y89{bottom:351.547067pt;}
.y25{bottom:354.027531pt;}
.ybb{bottom:358.746667pt;}
.y59{bottom:359.147200pt;}
.ybc{bottom:362.347067pt;}
.y24{bottom:366.347067pt;}
.y88{bottom:371.307067pt;}
.y56{bottom:373.306667pt;}
.y58{bottom:376.907200pt;}
.y23{bottom:379.867067pt;}
.yba{bottom:380.027067pt;}
.y20{bottom:394.106667pt;}
.y55{bottom:394.587067pt;}
.y22{bottom:396.507067pt;}
.yb9{bottom:397.787067pt;}
.yc7{bottom:400.427067pt;}
.y87{bottom:406.907200pt;}
.y53{bottom:408.746667pt;}
.y1f{bottom:408.827200pt;}
.yb7{bottom:411.866667pt;}
.y54{bottom:412.347067pt;}
.yb8{bottom:415.467067pt;}
.y1e{bottom:422.347067pt;}
.y52{bottom:430.107067pt;}
.yb6{bottom:433.227067pt;}
.y1d{bottom:438.907067pt;}
.y51{bottom:447.787067pt;}
.yb5{bottom:450.907067pt;}
.y1c{bottom:452.427067pt;}
.y50{bottom:465.547067pt;}
.y1a{bottom:466.666667pt;}
.yb4{bottom:468.667067pt;}
.y19{bottom:468.987067pt;}
.y18{bottom:481.387067pt;}
.y4f{bottom:483.227067pt;}
.yb3{bottom:486.427067pt;}
.y17{bottom:493.706939pt;}
.yb1{bottom:500.506667pt;}
.y4e{bottom:500.987067pt;}
.yb2{bottom:504.107067pt;}
.y16{bottom:506.107067pt;}
.y86{bottom:511.627067pt;}
.y4d{bottom:518.667067pt;}
.y15{bottom:519.547067pt;}
.yb0{bottom:521.867067pt;}
.y85{bottom:533.307067pt;}
.y14{bottom:536.187067pt;}
.y4c{bottom:536.427067pt;}
.yaf{bottom:539.547067pt;}
.y13{bottom:548.587067pt;}
.yad{bottom:553.706667pt;}
.y84{bottom:553.707067pt;}
.y4b{bottom:554.107067pt;}
.yae{bottom:557.307067pt;}
.y12{bottom:562.027067pt;}
.y83{bottom:564.987067pt;}
.y4a{bottom:571.867067pt;}
.yac{bottom:574.987067pt;}
.y82{bottom:576.187067pt;}
.y11{bottom:578.667531pt;}
.y81{bottom:587.627067pt;}
.y49{bottom:589.627067pt;}
.y10{bottom:590.987067pt;}
.y93{bottom:592.747067pt;}
.y46{bottom:603.706667pt;}
.y80{bottom:604.187067pt;}
.yf{bottom:604.507067pt;}
.y48{bottom:607.307067pt;}
.yab{bottom:610.427067pt;}
.y7f{bottom:622.507067pt;}
.ya9{bottom:624.586667pt;}
.y45{bottom:625.067067pt;}
.yaa{bottom:628.187067pt;}
.y44{bottom:642.747067pt;}
.y7e{bottom:642.907067pt;}
.ya8{bottom:645.947067pt;}
.y7d{bottom:654.187067pt;}
.y43{bottom:660.507067pt;}
.ya7{bottom:663.627067pt;}
.y7c{bottom:665.626939pt;}
.y7b{bottom:678.027067pt;}
.y42{bottom:678.187067pt;}
.ya6{bottom:681.387067pt;}
.y7a{bottom:694.507067pt;}
.y41{bottom:695.947067pt;}
.ya5{bottom:699.067067pt;}
.y79{bottom:712.907067pt;}
.y40{bottom:713.627067pt;}
.ya4{bottom:716.827067pt;}
.y3f{bottom:731.387067pt;}
.y78{bottom:733.227067pt;}
.ya3{bottom:734.507067pt;}
.y77{bottom:744.507067pt;}
.ya2{bottom:752.267067pt;}
.y76{bottom:755.787067pt;}
.y75{bottom:766.987067pt;}
.y3e{bottom:769.147083pt;}
.ya1{bottom:769.947067pt;}
.y74{bottom:778.427067pt;}
.ya0{bottom:787.707067pt;}
.y3d{bottom:792.987067pt;}
.y73{bottom:794.587067pt;}
.ye{bottom:798.187067pt;}
.y9f{bottom:805.467067pt;}
.y72{bottom:805.867067pt;}
.yd{bottom:814.827067pt;}
.y71{bottom:817.067067pt;}
.y9e{bottom:823.147067pt;}
.y3c{bottom:825.947067pt;}
.yc{bottom:828.267067pt;}
.y70{bottom:828.507067pt;}
.y3a{bottom:840.266667pt;}
.y9d{bottom:840.907067pt;}
.y39{bottom:843.707067pt;}
.yb{bottom:845.067067pt;}
.y9c{bottom:858.587067pt;}
.ya{bottom:863.387067pt;}
.y9b{bottom:876.347067pt;}
.y9{bottom:880.506587pt;}
.y1{bottom:893.067067pt;}
.y9a{bottom:894.027067pt;}
.y8{bottom:895.386827pt;}
.y7{bottom:910.267067pt;}
.y99{bottom:911.787067pt;}
.y98{bottom:929.467067pt;}
.y2{bottom:930.907067pt;}
.y92{bottom:931.227067pt;}
.y6{bottom:946.587067pt;}
.y97{bottom:947.227067pt;}
.y91{bottom:947.866427pt;}
.y90{bottom:960.187067pt;}
.y3{bottom:964.027067pt;}
.y96{bottom:964.987067pt;}
.y5{bottom:965.066811pt;}
.y8f{bottom:973.707067pt;}
.y95{bottom:982.667067pt;}
.y8e{bottom:990.266939pt;}
.y4{bottom:998.427067pt;}
.y94{bottom:1000.427067pt;}
.y8d{bottom:1002.667067pt;}
.y8b{bottom:1072.427067pt;}
.h13{height:-17.572880pt;}
.h9{height:12.560000pt;}
.ha{height:12.640000pt;}
.h10{height:17.680000pt;}
.h12{height:18.000000pt;}
.hd{height:41.718750pt;}
.hc{height:42.680000pt;}
.h3{height:44.505000pt;}
.h8{height:46.057500pt;}
.hf{height:46.058012pt;}
.he{height:46.058033pt;}
.h14{height:46.060060pt;}
.hb{height:48.920000pt;}
.h7{height:50.062500pt;}
.h6{height:55.402500pt;}
.h5{height:56.679040pt;}
.h1{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:72.562500pt;}
.h11{height:88.777500pt;}
.h0{height:1062.666667pt;}
.w1{width:-60.960000pt;}
.w2{width:-35.120000pt;}
.w3{width:41.760000pt;}
.wa{width:69.280000pt;}
.wd{width:189.280000pt;}
.wb{width:201.040000pt;}
.wf{width:282.160000pt;}
.w5{width:299.920000pt;}
.we{width:311.920000pt;}
.w10{width:318.160000pt;}
.w6{width:319.440000pt;}
.w4{width:321.200000pt;}
.w8{width:321.680000pt;}
.wc{width:323.920000pt;}
.w7{width:332.800000pt;}
.w9{width:332.880000pt;}
.w0{width:349.333333pt;}
.xb{left:-128.000000pt;}
.x10{left:-124.960000pt;}
.xa{left:-124.000000pt;}
.x13{left:-111.440000pt;}
.x11{left:-106.320000pt;}
.xc{left:-94.800000pt;}
.x14{left:-91.120000pt;}
.xd{left:-88.080000pt;}
.xe{left:-64.640000pt;}
.xf{left:-60.960000pt;}
.x1{left:-35.520000pt;}
.x1e{left:-32.960000pt;}
.x12{left:-31.760000pt;}
.x1f{left:-24.880000pt;}
.x2{left:-2.000000pt;}
.x0{left:0.000000pt;}
.x15{left:10.000000pt;}
.x19{left:18.000000pt;}
.x22{left:21.520000pt;}
.x17{left:25.760000pt;}
.x20{left:94.640000pt;}
.x21{left:102.640000pt;}
.x3{left:156.160000pt;}
.x16{left:255.680000pt;}
.x18{left:289.440000pt;}
.x1b{left:357.040000pt;}
.x4{left:358.960000pt;}
.x1a{left:363.040000pt;}
.x7{left:364.160000pt;}
.x8{left:384.400048pt;}
.x6{left:400.880000pt;}
.x9{left:408.079616pt;}
.x5{left:436.959632pt;}
.x1d{left:442.320000pt;}
.x1c{left:444.560000pt;}
}




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