
    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_c5bbf438b9f919301e99241f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800000;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_5f7bcaea8b0d25dace48df11.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_59c3e750e2a1dfc0e5565a5d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944000;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_0b7623fc6b50b474e040e56d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_649aee64b682c8d92ac2268a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.675293;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_c69d737f14ef4c46936a9300.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910500;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_b8ce4990b02d53b4ecd09dc1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.737305;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_6033abf71a36e18df0baadcf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957031;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_3f156a8f3b1e69078da3c756.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737305;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_1bd9df1bbb6409563d10e3e0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.957031;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_f45413ee3ab790fb131c6c60.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c698ccde7a6096add314cc75.woff')format("woff");}.ffc{font-family:ffc;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0901fa8d6867d67387c203f6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.737305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_03d55c010fbc6b686e43ed0b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.748000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9103c4aff3199d38ad235127.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_12df50a983667dc43edb3910.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d98d73191e63bef0b628d272.woff')format("woff");}.ff11{font-family:ff11;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bee5b6ada6a9fe6f3c44c1b4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8d5b77c0c60eb5eb075cd5a1.woff')format("woff");}.ff13{font-family:ff13;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b80cc8caedfa77823cf09c5a.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ea49892e77837c8ceb28e9fd.woff')format("woff");}.ff15{font-family:ff15;line-height:0.784000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.868800px;}
.v1{vertical-align:-15.820800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:25.693860px;}
.v5{vertical-align:34.134600px;}
.ls3{letter-spacing:-0.369806px;}
.ls5{letter-spacing:-0.134921px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:42.381600px;}
.ls2{letter-spacing:51.855180px;}
.ls1{letter-spacing:68.308469px;}
.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;}
}
.ws9{word-spacing:-92.376218px;}
.wsc{word-spacing:-74.836430px;}
.wsa{word-spacing:-68.944860px;}
.ws3{word-spacing:-60.672000px;}
.wsf{word-spacing:-53.088000px;}
.wsb{word-spacing:-47.357428px;}
.wse{word-spacing:-24.664132px;}
.ws4{word-spacing:-20.844000px;}
.ws5{word-spacing:-18.528000px;}
.ws1{word-spacing:-16.212000px;}
.wsd{word-spacing:-0.157408px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:42.580530px;}
.ws6{word-spacing:211.965944px;}
.ws8{word-spacing:284.493000px;}
.ws7{word-spacing:702.786000px;}
._e{margin-left:-690.645000px;}
._13{margin-left:-25.725023px;}
._3{margin-left:-17.088000px;}
._11{margin-left:-15.920731px;}
._9{margin-left:-14.496000px;}
._0{margin-left:-12.816000px;}
._10{margin-left:-11.592000px;}
._5{margin-left:-10.252800px;}
._2{margin-left:-8.544000px;}
._4{margin-left:-6.835200px;}
._7{margin-left:-5.376000px;}
._1{margin-left:-4.272000px;}
._6{margin-left:-2.268000px;}
._8{margin-left:-1.092000px;}
._14{width:17.195395px;}
._15{width:24.480000px;}
._a{width:68.678275px;}
._b{width:96.545700px;}
._f{width:306.705000px;}
._c{width:449.996400px;}
._12{width:914.218190px;}
._d{width:1549.871400px;}
.fc13{color:rgb(18,10,10);}
.fc12{color:rgb(136,136,136);}
.fc10{color:rgb(75,171,61);}
.fc14{color:rgb(69,110,233);}
.fcf{color:rgb(74,74,73);}
.fce{color:rgb(188,73,198);}
.fc11{color:rgb(68,114,196);}
.fcd{color:rgb(55,106,162);}
.fc15{color:transparent;}
.fc6{color:rgb(142,137,174);}
.fc9{color:rgb(68,64,65);}
.fc2{color:rgb(33,33,33);}
.fc3{color:rgb(5,99,193);}
.fca{color:rgb(35,31,32);}
.fc4{color:rgb(74,151,121);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(179,104,47);}
.fc0{color:rgb(255,255,255);}
.fc7{color:rgb(255,255,255);}
.fc8{color:rgb(148,17,0);}
.fcb{color:rgb(138,139,138);}
.fcc{color:rgb(217,128,70);}
.fs6{font-size:52.829442px;}
.fs7{font-size:57.600000px;}
.fsa{font-size:59.324362px;}
.fsb{font-size:76.274179px;}
.fs3{font-size:84.000000px;}
.fs15{font-size:88.719898px;}
.fs16{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fsd{font-size:98.279496px;}
.fs4{font-size:108.000000px;}
.fsc{font-size:120.000000px;}
.fs1{font-size:126.000000px;}
.fs13{font-size:134.921448px;}
.fs8{font-size:144.000000px;}
.fs14{font-size:157.408356px;}
.fs2{font-size:168.000000px;}
.fsf{font-size:168.651810px;}
.fs0{font-size:170.880000px;}
.fs9{font-size:192.000000px;}
.fs12{font-size:202.382172px;}
.fs11{font-size:269.842896px;}
.fs10{font-size:292.329804px;}
.fse{font-size:314.816712px;}
.y7e{bottom:-40.245000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:3.205350px;}
.yd{bottom:5.282922px;}
.y88{bottom:7.793325px;}
.y3a{bottom:9.171185px;}
.ya1{bottom:9.205350px;}
.y55{bottom:11.817056px;}
.y7{bottom:14.245314px;}
.ya{bottom:16.031895px;}
.y62{bottom:22.634175px;}
.y76{bottom:24.344700px;}
.y39{bottom:30.358457px;}
.y7a{bottom:31.856850px;}
.y3b{bottom:44.444709px;}
.y61{bottom:44.710710px;}
.y38{bottom:45.080070px;}
.ya0{bottom:52.705350px;}
.y24{bottom:56.604960px;}
.y87{bottom:57.617910px;}
.y54{bottom:60.750435px;}
.y37{bottom:62.296500px;}
.y56{bottom:71.939538px;}
.y2c{bottom:76.373100px;}
.yac{bottom:79.214175px;}
.y75{bottom:86.183700px;}
.y36{bottom:90.796500px;}
.y2e{bottom:91.284000px;}
.y2b{bottom:104.873100px;}
.y53{bottom:105.139215px;}
.y23{bottom:113.604960px;}
.yab{bottom:117.464175px;}
.y35{bottom:119.296500px;}
.y79{bottom:121.804500px;}
.y81{bottom:122.256600px;}
.y3c{bottom:127.528477px;}
.y57{bottom:132.037450px;}
.y89{bottom:132.745290px;}
.y52{bottom:141.139215px;}
.y7d{bottom:145.069950px;}
.y74{bottom:151.614900px;}
.yaa{bottom:152.487750px;}
.y27{bottom:159.455700px;}
.y22{bottom:170.604900px;}
.y51{bottom:177.139200px;}
.y58{bottom:192.135362px;}
.y8e{bottom:203.836740px;}
.yb{bottom:209.272050px;}
.y3d{bottom:210.612245px;}
.y50{bottom:213.139200px;}
.y29{bottom:215.951850px;}
.y13{bottom:221.522550px;}
.y21{bottom:227.604900px;}
.y6e{bottom:246.085200px;}
.y33{bottom:248.951850px;}
.y98{bottom:250.428690px;}
.y59{bottom:252.233273px;}
.yc{bottom:253.941000px;}
.y60{bottom:255.367350px;}
.y8a{bottom:257.697390px;}
.y28{bottom:267.270150px;}
.y1e{bottom:271.385850px;}
.y97{bottom:279.141390px;}
.y5{bottom:282.975000px;}
.y20{bottom:284.604900px;}
.y3e{bottom:293.696014px;}
.y93{bottom:295.135890px;}
.y95{bottom:295.566240px;}
.y94{bottom:307.550640px;}
.y4e{bottom:309.139200px;}
.y43{bottom:309.831816px;}
.y96{bottom:312.167190px;}
.y5a{bottom:312.331185px;}
.ya8{bottom:312.816450px;}
.y1d{bottom:314.885850px;}
.y92{bottom:315.790740px;}
.y32{bottom:330.933000px;}
.y18{bottom:331.716600px;}
.y6a{bottom:337.054500px;}
.ya7{bottom:339.816450px;}
.y1f{bottom:341.604900px;}
.y2a{bottom:342.371100px;}
.y34{bottom:343.302450px;}
.y2d{bottom:344.233950px;}
.y4d{bottom:345.139200px;}
.y31{bottom:356.433000px;}
.y1c{bottom:358.385850px;}
.y17{bottom:360.216600px;}
.y4{bottom:362.069400px;}
.y5b{bottom:372.453667px;}
.y3f{bottom:376.794613px;}
.y4c{bottom:381.139200px;}
.y8b{bottom:382.649340px;}
.y9{bottom:384.346500px;}
.ya9{bottom:386.728650px;}
.y16{bottom:388.716600px;}
.ya2{bottom:393.000000px;}
.ya6{bottom:396.205350px;}
.y91{bottom:405.378390px;}
.y86{bottom:411.609900px;}
.y4b{bottom:417.139200px;}
.y15{bottom:417.216600px;}
.y3{bottom:423.269400px;}
.y5c{bottom:432.551579px;}
.y8f{bottom:432.803040px;}
.y90{bottom:442.325940px;}
.y14{bottom:443.399400px;}
.y78{bottom:443.557950px;}
.y85{bottom:444.609900px;}
.y1b{bottom:445.385850px;}
.y65{bottom:454.921200px;}
.y40{bottom:459.878382px;}
.y9d{bottom:473.915940px;}
.y9f{bottom:474.000000px;}
.ya5{bottom:483.205350px;}
.y2{bottom:484.469400px;}
.y1a{bottom:488.885850px;}
.y46{bottom:489.050550px;}
.y12{bottom:489.053250px;}
.y5d{bottom:492.649491px;}
.y73{bottom:498.717750px;}
.y9c{bottom:506.478390px;}
.y8c{bottom:507.601290px;}
.y4a{bottom:513.139200px;}
.y30{bottom:515.187300px;}
.y11{bottom:517.553250px;}
.y66{bottom:519.255150px;}
.y45{bottom:522.050550px;}
.ya4{bottom:526.705350px;}
.y19{bottom:532.385850px;}
.y77{bottom:533.505450px;}
.y9b{bottom:539.040690px;}
.y2f{bottom:540.687300px;}
.y41{bottom:542.962150px;}
.y80{bottom:543.620100px;}
.y1{bottom:545.669400px;}
.y10{bottom:546.053250px;}
.y49{bottom:549.139200px;}
.y5e{bottom:552.747402px;}
.y64{bottom:556.639200px;}
.y7c{bottom:561.881400px;}
.y72{bottom:564.148950px;}
.y9a{bottom:571.603140px;}
.yf{bottom:574.553250px;}
.y48{bottom:585.139200px;}
.y26{bottom:587.397750px;}
.y63{bottom:592.639200px;}
.ye{bottom:600.736050px;}
.y99{bottom:604.165590px;}
.y69{bottom:607.226400px;}
.y5f{bottom:612.845314px;}
.y9e{bottom:613.705350px;}
.y4f{bottom:621.139200px;}
.y42{bottom:626.045919px;}
.y47{bottom:628.856400px;}
.y8d{bottom:632.553390px;}
.y68{bottom:632.726400px;}
.y44{bottom:639.815315px;}
.y8{bottom:656.853900px;}
.y6f{bottom:665.187450px;}
.y67{bottom:688.819500px;}
.y25{bottom:696.078600px;}
.y6{bottom:741.978600px;}
.y71{bottom:920.476800px;}
.y7f{bottom:956.449950px;}
.y7b{bottom:984.314850px;}
.y70{bottom:985.908000px;}
.y84{bottom:1069.673400px;}
.y6d{bottom:1087.100700px;}
.y82{bottom:1109.263800px;}
.y83{bottom:1115.912100px;}
.y6c{bottom:1224.456000px;}
.y6b{bottom:1287.216000px;}
.h28{height:33.000000px;}
.h8{height:35.211029px;}
.h13{height:42.552484px;}
.h14{height:56.572499px;}
.ha{height:58.627200px;}
.h4{height:63.714000px;}
.hf{height:65.142000px;}
.h26{height:67.406328px;}
.h29{height:69.750000px;}
.h17{height:70.494424px;}
.h11{height:71.328000px;}
.h6{height:74.400000px;}
.hb{height:74.448000px;}
.h10{height:80.244000px;}
.h27{height:82.500000px;}
.h19{height:83.142000px;}
.h9{height:83.700000px;}
.h5{height:83.754000px;}
.h2a{height:90.960000px;}
.h15{height:93.060000px;}
.h2{height:97.650000px;}
.h18{height:100.141860px;}
.h22{height:104.564122px;}
.hc{height:111.672000px;}
.h24{height:121.834068px;}
.h3{height:130.200000px;}
.h1c{height:130.705153px;}
.h1{height:130.894080px;}
.h7{height:138.677280px;}
.hd{height:148.800000px;}
.h1f{height:156.744992px;}
.h1e{height:198.739293px;}
.he{height:199.647150px;}
.h21{height:211.354448px;}
.h1a{height:214.005900px;}
.h20{height:215.300901px;}
.h1d{height:226.555598px;}
.h1b{height:231.705100px;}
.h23{height:249.435501px;}
.h16{height:633.997650px;}
.h25{height:648.764250px;}
.h12{height:656.211600px;}
.h0{height:810.000000px;}
.w5{width:87.177795px;}
.w2{width:200.204850px;}
.w3{width:776.014800px;}
.w4{width:805.623600px;}
.w8{width:1068.000000px;}
.w7{width:1170.000000px;}
.w6{width:1277.566650px;}
.w1{width:1306.207950px;}
.w0{width:1440.000000px;}
.x39{left:-1242.744765px;}
.x38{left:-1239.931965px;}
.x37{left:-1231.500315px;}
.x3c{left:-1140.901515px;}
.x3d{left:-1081.941765px;}
.x3e{left:-913.833315px;}
.x3a{left:-581.849265px;}
.x43{left:-557.079915px;}
.x44{left:-506.484315px;}
.x54{left:-3.369090px;}
.x0{left:0.000000px;}
.x17{left:15.969600px;}
.x19{left:17.169600px;}
.x9{left:19.811037px;}
.x2b{left:21.059892px;}
.x25{left:22.752269px;}
.x22{left:27.842300px;}
.x24{left:31.235653px;}
.x1f{left:32.445600px;}
.x3{left:37.218720px;}
.x2{left:38.630790px;}
.x1{left:41.236650px;}
.x16{left:42.573600px;}
.x20{left:44.649600px;}
.x8{left:47.635140px;}
.xa{left:51.116340px;}
.xf{left:58.549605px;}
.x2c{left:65.245950px;}
.x2a{left:92.417805px;}
.x21{left:98.419485px;}
.x10{left:105.918030px;}
.x3b{left:113.680635px;}
.x42{left:125.772135px;}
.x36{left:137.016315px;}
.x1e{left:168.040500px;}
.x48{left:175.845675px;}
.x14{left:188.881200px;}
.x27{left:194.196600px;}
.x2d{left:201.160650px;}
.x30{left:242.790300px;}
.x46{left:245.328000px;}
.x47{left:249.729000px;}
.x31{left:255.880350px;}
.x1d{left:265.169700px;}
.x7{left:281.596650px;}
.x49{left:287.603175px;}
.x2f{left:322.020300px;}
.xc{left:331.713300px;}
.x4{left:332.753400px;}
.x26{left:335.587425px;}
.x32{left:376.580550px;}
.x23{left:389.085287px;}
.x4a{left:399.360525px;}
.x15{left:437.922600px;}
.x12{left:486.481650px;}
.x55{left:501.142350px;}
.x4b{left:511.118025px;}
.x35{left:518.636700px;}
.x57{left:524.145000px;}
.x59{left:558.562500px;}
.x34{left:563.219700px;}
.x56{left:595.507350px;}
.xb{left:597.957600px;}
.x1a{left:613.866000px;}
.x4c{left:622.875525px;}
.x5a{left:628.198500px;}
.x58{left:636.108000px;}
.x1b{left:662.596500px;}
.x52{left:679.918125px;}
.x6{left:690.274050px;}
.x28{left:694.584150px;}
.x1c{left:703.672500px;}
.x2e{left:708.748500px;}
.x11{left:716.461950px;}
.x18{left:717.814500px;}
.x33{left:733.042500px;}
.x4d{left:734.632875px;}
.x5{left:798.357600px;}
.x13{left:833.608950px;}
.x4e{left:846.390375px;}
.x40{left:908.016435px;}
.x29{left:950.060250px;}
.x45{left:954.733335px;}
.x4f{left:958.147875px;}
.xe{left:968.943750px;}
.x41{left:1000.848885px;}
.x53{left:1014.001125px;}
.x50{left:1069.905225px;}
.xd{left:1130.770350px;}
.x3f{left:1171.149135px;}
.x51{left:1181.662725px;}
@media print{
.v2{vertical-align:-27.438933pt;}
.v1{vertical-align:-14.062933pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:22.838987pt;}
.v5{vertical-align:30.341867pt;}
.ls3{letter-spacing:-0.328717pt;}
.ls5{letter-spacing:-0.119930pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:37.672533pt;}
.ls2{letter-spacing:46.093493pt;}
.ls1{letter-spacing:60.718639pt;}
.ws9{word-spacing:-82.112194pt;}
.wsc{word-spacing:-66.521271pt;}
.wsa{word-spacing:-61.284320pt;}
.ws3{word-spacing:-53.930667pt;}
.wsf{word-spacing:-47.189333pt;}
.wsb{word-spacing:-42.095492pt;}
.wse{word-spacing:-21.923672pt;}
.ws4{word-spacing:-18.528000pt;}
.ws5{word-spacing:-16.469333pt;}
.ws1{word-spacing:-14.410667pt;}
.wsd{word-spacing:-0.139919pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:37.849360pt;}
.ws6{word-spacing:188.414172pt;}
.ws8{word-spacing:252.882667pt;}
.ws7{word-spacing:624.698667pt;}
._e{margin-left:-613.906667pt;}
._13{margin-left:-22.866687pt;}
._3{margin-left:-15.189333pt;}
._11{margin-left:-14.151761pt;}
._9{margin-left:-12.885333pt;}
._0{margin-left:-11.392000pt;}
._10{margin-left:-10.304000pt;}
._5{margin-left:-9.113600pt;}
._2{margin-left:-7.594667pt;}
._4{margin-left:-6.075733pt;}
._7{margin-left:-4.778667pt;}
._1{margin-left:-3.797333pt;}
._6{margin-left:-2.016000pt;}
._8{margin-left:-0.970667pt;}
._14{width:15.284795pt;}
._15{width:21.760000pt;}
._a{width:61.047355pt;}
._b{width:85.818400pt;}
._f{width:272.626667pt;}
._c{width:399.996800pt;}
._12{width:812.638391pt;}
._d{width:1377.663467pt;}
.fs6{font-size:46.959504pt;}
.fs7{font-size:51.200000pt;}
.fsa{font-size:52.732766pt;}
.fsb{font-size:67.799270pt;}
.fs3{font-size:74.666667pt;}
.fs15{font-size:78.862131pt;}
.fs16{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fsd{font-size:87.359552pt;}
.fs4{font-size:96.000000pt;}
.fsc{font-size:106.666667pt;}
.fs1{font-size:112.000000pt;}
.fs13{font-size:119.930176pt;}
.fs8{font-size:128.000000pt;}
.fs14{font-size:139.918539pt;}
.fs2{font-size:149.333333pt;}
.fsf{font-size:149.912720pt;}
.fs0{font-size:151.893333pt;}
.fs9{font-size:170.666667pt;}
.fs12{font-size:179.895264pt;}
.fs11{font-size:239.860352pt;}
.fs10{font-size:259.848715pt;}
.fse{font-size:279.837077pt;}
.y7e{bottom:-35.773333pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:2.849200pt;}
.yd{bottom:4.695931pt;}
.y88{bottom:6.927400pt;}
.y3a{bottom:8.152164pt;}
.ya1{bottom:8.182533pt;}
.y55{bottom:10.504050pt;}
.y7{bottom:12.662501pt;}
.ya{bottom:14.250573pt;}
.y62{bottom:20.119267pt;}
.y76{bottom:21.639733pt;}
.y39{bottom:26.985295pt;}
.y7a{bottom:28.317200pt;}
.y3b{bottom:39.506408pt;}
.y61{bottom:39.742853pt;}
.y38{bottom:40.071173pt;}
.ya0{bottom:46.849200pt;}
.y24{bottom:50.315520pt;}
.y87{bottom:51.215920pt;}
.y54{bottom:54.000387pt;}
.y37{bottom:55.374667pt;}
.y56{bottom:63.946256pt;}
.y2c{bottom:67.887200pt;}
.yac{bottom:70.412600pt;}
.y75{bottom:76.607733pt;}
.y36{bottom:80.708000pt;}
.y2e{bottom:81.141333pt;}
.y2b{bottom:93.220533pt;}
.y53{bottom:93.457080pt;}
.y23{bottom:100.982187pt;}
.yab{bottom:104.412600pt;}
.y35{bottom:106.041333pt;}
.y79{bottom:108.270667pt;}
.y81{bottom:108.672533pt;}
.y3c{bottom:113.358646pt;}
.y57{bottom:117.366622pt;}
.y89{bottom:117.995813pt;}
.y52{bottom:125.457080pt;}
.y7d{bottom:128.951067pt;}
.y74{bottom:134.768800pt;}
.yaa{bottom:135.544667pt;}
.y27{bottom:141.738400pt;}
.y22{bottom:151.648800pt;}
.y51{bottom:157.457067pt;}
.y58{bottom:170.786988pt;}
.y8e{bottom:181.188213pt;}
.yb{bottom:186.019600pt;}
.y3d{bottom:187.210885pt;}
.y50{bottom:189.457067pt;}
.y29{bottom:191.957200pt;}
.y13{bottom:196.908933pt;}
.y21{bottom:202.315467pt;}
.y6e{bottom:218.742400pt;}
.y33{bottom:221.290533pt;}
.y98{bottom:222.603280pt;}
.y59{bottom:224.207354pt;}
.yc{bottom:225.725333pt;}
.y60{bottom:226.993200pt;}
.y8a{bottom:229.064347pt;}
.y28{bottom:237.573467pt;}
.y1e{bottom:241.231867pt;}
.y97{bottom:248.125680pt;}
.y5{bottom:251.533333pt;}
.y20{bottom:252.982133pt;}
.y3e{bottom:261.063123pt;}
.y93{bottom:262.343013pt;}
.y95{bottom:262.725547pt;}
.y94{bottom:273.378347pt;}
.y4e{bottom:274.790400pt;}
.y43{bottom:275.406059pt;}
.y96{bottom:277.481947pt;}
.y5a{bottom:277.627720pt;}
.ya8{bottom:278.059067pt;}
.y1d{bottom:279.898533pt;}
.y92{bottom:280.702880pt;}
.y32{bottom:294.162667pt;}
.y18{bottom:294.859200pt;}
.y6a{bottom:299.604000pt;}
.ya7{bottom:302.059067pt;}
.y1f{bottom:303.648800pt;}
.y2a{bottom:304.329867pt;}
.y34{bottom:305.157733pt;}
.y2d{bottom:305.985733pt;}
.y4d{bottom:306.790400pt;}
.y31{bottom:316.829333pt;}
.y1c{bottom:318.565200pt;}
.y17{bottom:320.192533pt;}
.y4{bottom:321.839467pt;}
.y5b{bottom:331.069926pt;}
.y3f{bottom:334.928545pt;}
.y4c{bottom:338.790400pt;}
.y8b{bottom:340.132747pt;}
.y9{bottom:341.641333pt;}
.ya9{bottom:343.758800pt;}
.y16{bottom:345.525867pt;}
.ya2{bottom:349.333333pt;}
.ya6{bottom:352.182533pt;}
.y91{bottom:360.336347pt;}
.y86{bottom:365.875467pt;}
.y4b{bottom:370.790400pt;}
.y15{bottom:370.859200pt;}
.y3{bottom:376.239467pt;}
.y5c{bottom:384.490292pt;}
.y8f{bottom:384.713813pt;}
.y90{bottom:393.178613pt;}
.y14{bottom:394.132800pt;}
.y78{bottom:394.273733pt;}
.y85{bottom:395.208800pt;}
.y1b{bottom:395.898533pt;}
.y65{bottom:404.374400pt;}
.y40{bottom:408.780784pt;}
.y9d{bottom:421.258613pt;}
.y9f{bottom:421.333333pt;}
.ya5{bottom:429.515867pt;}
.y2{bottom:430.639467pt;}
.y1a{bottom:434.565200pt;}
.y46{bottom:434.711600pt;}
.y12{bottom:434.714000pt;}
.y5d{bottom:437.910658pt;}
.y73{bottom:443.304667pt;}
.y9c{bottom:450.203013pt;}
.y8c{bottom:451.201147pt;}
.y4a{bottom:456.123733pt;}
.y30{bottom:457.944267pt;}
.y11{bottom:460.047333pt;}
.y66{bottom:461.560133pt;}
.y45{bottom:464.044933pt;}
.ya4{bottom:468.182533pt;}
.y19{bottom:473.231867pt;}
.y77{bottom:474.227067pt;}
.y9b{bottom:479.147280pt;}
.y2f{bottom:480.610933pt;}
.y41{bottom:482.633022pt;}
.y80{bottom:483.217867pt;}
.y1{bottom:485.039467pt;}
.y10{bottom:485.380667pt;}
.y49{bottom:488.123733pt;}
.y5e{bottom:491.331024pt;}
.y64{bottom:494.790400pt;}
.y7c{bottom:499.450133pt;}
.y72{bottom:501.465733pt;}
.y9a{bottom:508.091680pt;}
.yf{bottom:510.714000pt;}
.y48{bottom:520.123733pt;}
.y26{bottom:522.131333pt;}
.y63{bottom:526.790400pt;}
.ye{bottom:533.987600pt;}
.y99{bottom:537.036080pt;}
.y69{bottom:539.756800pt;}
.y5f{bottom:544.751390pt;}
.y9e{bottom:545.515867pt;}
.y4f{bottom:552.123733pt;}
.y42{bottom:556.485261pt;}
.y47{bottom:558.983467pt;}
.y8d{bottom:562.269680pt;}
.y68{bottom:562.423467pt;}
.y44{bottom:568.724724pt;}
.y8{bottom:583.870133pt;}
.y6f{bottom:591.277733pt;}
.y67{bottom:612.284000pt;}
.y25{bottom:618.736533pt;}
.y6{bottom:659.536533pt;}
.y71{bottom:818.201600pt;}
.y7f{bottom:850.177733pt;}
.y7b{bottom:874.946533pt;}
.y70{bottom:876.362667pt;}
.y84{bottom:950.820800pt;}
.y6d{bottom:966.311733pt;}
.y82{bottom:986.012267pt;}
.y83{bottom:991.921867pt;}
.y6c{bottom:1088.405333pt;}
.y6b{bottom:1144.192000pt;}
.h28{height:29.333333pt;}
.h8{height:31.298693pt;}
.h13{height:37.824430pt;}
.h14{height:50.286666pt;}
.ha{height:52.113067pt;}
.h4{height:56.634667pt;}
.hf{height:57.904000pt;}
.h26{height:59.916736pt;}
.h29{height:62.000000pt;}
.h17{height:62.661710pt;}
.h11{height:63.402667pt;}
.h6{height:66.133333pt;}
.hb{height:66.176000pt;}
.h10{height:71.328000pt;}
.h27{height:73.333333pt;}
.h19{height:73.904000pt;}
.h9{height:74.400000pt;}
.h5{height:74.448000pt;}
.h2a{height:80.853333pt;}
.h15{height:82.720000pt;}
.h2{height:86.800000pt;}
.h18{height:89.014987pt;}
.h22{height:92.945886pt;}
.hc{height:99.264000pt;}
.h24{height:108.296949pt;}
.h3{height:115.733333pt;}
.h1c{height:116.182358pt;}
.h1{height:116.350293pt;}
.h7{height:123.268693pt;}
.hd{height:132.266667pt;}
.h1f{height:139.328882pt;}
.h1e{height:176.657149pt;}
.he{height:177.464133pt;}
.h21{height:187.870621pt;}
.h1a{height:190.227467pt;}
.h20{height:191.378578pt;}
.h1d{height:201.382754pt;}
.h1b{height:205.960089pt;}
.h23{height:221.720445pt;}
.h16{height:563.553467pt;}
.h25{height:576.679333pt;}
.h12{height:583.299200pt;}
.h0{height:720.000000pt;}
.w5{width:77.491373pt;}
.w2{width:177.959867pt;}
.w3{width:689.790933pt;}
.w4{width:716.109867pt;}
.w8{width:949.333333pt;}
.w7{width:1040.000000pt;}
.w6{width:1135.614800pt;}
.w1{width:1161.073733pt;}
.w0{width:1280.000000pt;}
.x39{left:-1104.662013pt;}
.x38{left:-1102.161747pt;}
.x37{left:-1094.666947pt;}
.x3c{left:-1014.134680pt;}
.x3d{left:-961.726013pt;}
.x3e{left:-812.296280pt;}
.x3a{left:-517.199347pt;}
.x43{left:-495.182147pt;}
.x44{left:-450.208280pt;}
.x54{left:-2.994747pt;}
.x0{left:0.000000pt;}
.x17{left:14.195200pt;}
.x19{left:15.261867pt;}
.x9{left:17.609811pt;}
.x2b{left:18.719904pt;}
.x25{left:20.224240pt;}
.x22{left:24.748711pt;}
.x24{left:27.765025pt;}
.x1f{left:28.840533pt;}
.x3{left:33.083307pt;}
.x2{left:34.338480pt;}
.x1{left:36.654800pt;}
.x16{left:37.843200pt;}
.x20{left:39.688533pt;}
.x8{left:42.342347pt;}
.xa{left:45.436747pt;}
.xf{left:52.044093pt;}
.x2c{left:57.996400pt;}
.x2a{left:82.149160pt;}
.x21{left:87.483987pt;}
.x10{left:94.149360pt;}
.x3b{left:101.049453pt;}
.x42{left:111.797453pt;}
.x36{left:121.792280pt;}
.x1e{left:149.369333pt;}
.x48{left:156.307267pt;}
.x14{left:167.894400pt;}
.x27{left:172.619200pt;}
.x2d{left:178.809467pt;}
.x30{left:215.813600pt;}
.x46{left:218.069333pt;}
.x47{left:221.981333pt;}
.x31{left:227.449200pt;}
.x1d{left:235.706400pt;}
.x7{left:250.308133pt;}
.x49{left:255.647267pt;}
.x2f{left:286.240267pt;}
.xc{left:294.856267pt;}
.x4{left:295.780800pt;}
.x26{left:298.299934pt;}
.x32{left:334.738267pt;}
.x23{left:345.853589pt;}
.x4a{left:354.987133pt;}
.x15{left:389.264533pt;}
.x12{left:432.428133pt;}
.x55{left:445.459867pt;}
.x4b{left:454.327133pt;}
.x35{left:461.010400pt;}
.x57{left:465.906667pt;}
.x59{left:496.500000pt;}
.x34{left:500.639733pt;}
.x56{left:529.339867pt;}
.xb{left:531.517867pt;}
.x1a{left:545.658667pt;}
.x4c{left:553.667133pt;}
.x5a{left:558.398667pt;}
.x58{left:565.429333pt;}
.x1b{left:588.974667pt;}
.x52{left:604.371667pt;}
.x6{left:613.576933pt;}
.x28{left:617.408133pt;}
.x1c{left:625.486667pt;}
.x2e{left:629.998667pt;}
.x11{left:636.855067pt;}
.x18{left:638.057333pt;}
.x33{left:651.593333pt;}
.x4d{left:653.007000pt;}
.x5{left:709.651200pt;}
.x13{left:740.985733pt;}
.x4e{left:752.347000pt;}
.x40{left:807.125720pt;}
.x29{left:844.498000pt;}
.x45{left:848.651853pt;}
.x4f{left:851.687000pt;}
.xe{left:861.283333pt;}
.x41{left:889.643453pt;}
.x53{left:901.334333pt;}
.x50{left:951.026867pt;}
.xd{left:1005.129200pt;}
.x3f{left:1041.021453pt;}
.x51{left:1050.366867pt;}
}




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