
    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_03300f52b0725f15b9971bd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101000;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_9f928a2e4aaadc3453dcd945.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_76d75c98af6bbeecaab2a456.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_351e07b9782c7c560742de9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101000;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_9922fe8c677f6f3018eded2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978000;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_dab52f7d29e396cbb7e7a822.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.724000;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_95d48b4c5fa3c1db9550d4de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_f7b47adde0cbd6dbd698af7a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_03006ec290e552f6f00c5fd3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_f7b47adde0cbd6dbd698af7a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_03006ec290e552f6f00c5fd3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_f7b47adde0cbd6dbd698af7a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_03006ec290e552f6f00c5fd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.235159,-0.084855,0.084855,0.235159,0,0);-ms-transform:matrix(0.235159,-0.084855,0.084855,0.235159,0,0);-webkit-transform:matrix(0.235159,-0.084855,0.084855,0.235159,0,0);}
.m2{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250229,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.188200px;}
.v1{vertical-align:13.092600px;}
.v3{vertical-align:17.625000px;}
.v4{vertical-align:26.730110px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsb{word-spacing:-101.742000px;}
.wsc{word-spacing:-100.284000px;}
.wsd{word-spacing:-83.996400px;}
.ws1{word-spacing:-81.432000px;}
.ws6{word-spacing:-36.224034px;}
.ws4{word-spacing:-17.640000px;}
.ws7{word-spacing:-15.720000px;}
.ws8{word-spacing:-14.700000px;}
.ws5{word-spacing:-11.468793px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:105.192000px;}
.ws9{word-spacing:128.304000px;}
.ws3{word-spacing:1798.689849px;}
.ws2{word-spacing:2589.174142px;}
._8{margin-left:-13.602467px;}
._1{margin-left:-6.624000px;}
._5{margin-left:-4.664400px;}
._3{margin-left:-3.548400px;}
._2{margin-left:-2.208000px;}
._0{margin-left:-1.104000px;}
._4{width:1.093200px;}
._6{width:3.616800px;}
._12{width:130.248000px;}
._11{width:131.472000px;}
._10{width:148.320000px;}
._f{width:149.688000px;}
._e{width:151.128000px;}
._d{width:158.256000px;}
._9{width:196.560058px;}
._c{width:571.620113px;}
._a{width:585.829759px;}
._7{width:591.701142px;}
._b{width:594.525574px;}
.fca{color:transparent;}
.fc7{color:rgb(250,202,7);}
.fc6{color:rgb(64,145,212);}
.fc4{color:rgb(239,42,70);}
.fc1{color:rgb(28,54,88);}
.fc9{color:rgb(0,0,0);}
.fc8{color:rgb(65,144,212);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(251,200,8);}
.fc0{color:rgb(57,53,54);}
.fs7{font-size:38.851800px;}
.fs16{font-size:43.224000px;}
.fse{font-size:46.811400px;}
.fs0{font-size:48.000000px;}
.fs13{font-size:51.604800px;}
.fs10{font-size:52.355400px;}
.fs9{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fsd{font-size:80.294400px;}
.fs17{font-size:83.996400px;}
.fs15{font-size:98.819400px;}
.fs14{font-size:100.284000px;}
.fs11{font-size:101.742000px;}
.fs4{font-size:108.000000px;}
.fs12{font-size:117.981000px;}
.fsf{font-size:119.696400px;}
.fsa{font-size:126.934200px;}
.fsb{font-size:128.777400px;}
.fs3{font-size:143.999261px;}
.fs1{font-size:144.000000px;}
.fs6{font-size:147.853200px;}
.fsc{font-size:160.361400px;}
.fs2{font-size:179.999166px;}
.fs5{font-size:197.137200px;}
.yef{bottom:-462.574050px;}
.yf0{bottom:-207.953400px;}
.yf6{bottom:-113.134500px;}
.y0{bottom:0.000000px;}
.y72{bottom:45.438000px;}
.yf8{bottom:48.591750px;}
.yf2{bottom:48.593250px;}
.y1{bottom:50.362800px;}
.y7{bottom:53.448000px;}
.y2f{bottom:55.983450px;}
.y2e{bottom:56.062500px;}
.yee{bottom:120.355800px;}
.y59{bottom:129.413100px;}
.ybd{bottom:136.788600px;}
.y14{bottom:138.561600px;}
.ydd{bottom:143.317350px;}
.ybc{bottom:149.709900px;}
.y58{bottom:150.413100px;}
.ydc{bottom:161.317350px;}
.y88{bottom:161.928150px;}
.ybb{bottom:167.709900px;}
.y57{bottom:171.413100px;}
.y3{bottom:175.105650px;}
.y13{bottom:177.549600px;}
.ydb{bottom:179.317350px;}
.y87{bottom:179.928150px;}
.yba{bottom:185.709900px;}
.y34{bottom:189.952200px;}
.ydf{bottom:192.546450px;}
.y30{bottom:193.715400px;}
.yf4{bottom:195.135000px;}
.yb9{bottom:203.709900px;}
.y9f{bottom:207.731700px;}
.y56{bottom:213.413100px;}
.yda{bottom:215.317350px;}
.y86{bottom:215.928150px;}
.y12{bottom:216.537600px;}
.y2{bottom:218.305650px;}
.yb8{bottom:221.709900px;}
.y9e{bottom:225.731700px;}
.yd9{bottom:233.317350px;}
.y85{bottom:233.928150px;}
.yb7{bottom:239.709900px;}
.y9d{bottom:243.731700px;}
.y35{bottom:245.066850px;}
.y31{bottom:245.961900px;}
.yd8{bottom:251.317350px;}
.y84{bottom:251.928150px;}
.y55{bottom:255.413100px;}
.y11{bottom:255.525600px;}
.yb6{bottom:257.709900px;}
.y9c{bottom:261.731700px;}
.yd7{bottom:269.317350px;}
.y83{bottom:269.928150px;}
.y37{bottom:272.173800px;}
.y54{bottom:276.413100px;}
.ye3{bottom:283.129350px;}
.yd6{bottom:287.317350px;}
.y82{bottom:287.928150px;}
.y4c{bottom:291.840150px;}
.yf7{bottom:292.212000px;}
.yb5{bottom:293.709900px;}
.y10{bottom:294.513600px;}
.y53{bottom:297.413100px;}
.y9b{bottom:297.731700px;}
.yf3{bottom:299.565300px;}
.ye8{bottom:300.522150px;}
.y81{bottom:305.928150px;}
.y4b{bottom:309.840150px;}
.yb4{bottom:311.709900px;}
.y9a{bottom:315.731700px;}
.y52{bottom:318.413100px;}
.ye7{bottom:318.522150px;}
.yd5{bottom:323.317350px;}
.y4a{bottom:327.840150px;}
.ye2{bottom:330.919350px;}
.yf{bottom:333.501600px;}
.y99{bottom:333.731700px;}
.ye6{bottom:336.522150px;}
.y51{bottom:339.413100px;}
.yd4{bottom:341.317350px;}
.y80{bottom:341.928150px;}
.y49{bottom:345.840150px;}
.yb3{bottom:347.709900px;}
.ye5{bottom:354.522150px;}
.y32{bottom:357.103950px;}
.yd3{bottom:359.317350px;}
.y7f{bottom:359.928150px;}
.y48{bottom:363.840150px;}
.yb2{bottom:365.709900px;}
.y47{bottom:366.541950px;}
.yf5{bottom:368.125050px;}
.y36{bottom:369.370650px;}
.ye{bottom:372.489600px;}
.yd2{bottom:377.317350px;}
.y7e{bottom:377.928150px;}
.yb1{bottom:383.709900px;}
.y46{bottom:384.541950px;}
.yd1{bottom:395.317350px;}
.y24{bottom:398.371650px;}
.y45{bottom:402.541950px;}
.y98{bottom:402.555900px;}
.y8c{bottom:402.766800px;}
.y73{bottom:411.460022px;}
.yd0{bottom:413.317350px;}
.y7d{bottom:413.928150px;}
.y23{bottom:416.371650px;}
.yb0{bottom:419.709900px;}
.y97{bottom:420.555900px;}
.y28{bottom:421.263450px;}
.y8b{bottom:423.766800px;}
.ycf{bottom:431.317350px;}
.y7c{bottom:431.928150px;}
.y33{bottom:431.979450px;}
.y22{bottom:434.371650px;}
.y44{bottom:438.541950px;}
.y96{bottom:438.555900px;}
.y27{bottom:442.263450px;}
.y8a{bottom:444.766800px;}
.y7b{bottom:449.928150px;}
.yd{bottom:450.492600px;}
.y21{bottom:452.371650px;}
.yaf{bottom:455.709900px;}
.y95{bottom:456.555900px;}
.y26{bottom:463.263450px;}
.y89{bottom:465.766800px;}
.yce{bottom:467.317350px;}
.yae{bottom:473.709900px;}
.y43{bottom:474.541950px;}
.y94{bottom:474.555900px;}
.y6d{bottom:475.790700px;}
.ye1{bottom:476.161350px;}
.y38{bottom:478.860300px;}
.y25{bottom:484.263450px;}
.ycd{bottom:485.317350px;}
.y7a{bottom:485.928150px;}
.y20{bottom:488.371650px;}
.y68{bottom:489.051300px;}
.yc{bottom:489.480600px;}
.yad{bottom:491.709900px;}
.ye4{bottom:492.541350px;}
.y42{bottom:492.541950px;}
.y93{bottom:492.555900px;}
.y6c{bottom:493.790700px;}
.ycc{bottom:503.317350px;}
.y79{bottom:503.928150px;}
.y1f{bottom:506.371650px;}
.y67{bottom:507.051300px;}
.yac{bottom:509.709900px;}
.y41{bottom:510.541950px;}
.y6b{bottom:511.790700px;}
.y50{bottom:514.900650px;}
.ycb{bottom:521.317350px;}
.ye0{bottom:522.259350px;}
.y1e{bottom:524.371650px;}
.y66{bottom:525.051300px;}
.yab{bottom:527.709900px;}
.yb{bottom:528.468600px;}
.y40{bottom:528.541950px;}
.y6a{bottom:529.790700px;}
.y4f{bottom:529.900650px;}
.yca{bottom:539.317350px;}
.y78{bottom:539.928150px;}
.y1d{bottom:542.371650px;}
.y65{bottom:543.051300px;}
.yaa{bottom:545.709900px;}
.y3f{bottom:546.541950px;}
.y69{bottom:547.790700px;}
.yec{bottom:556.241400px;}
.yc9{bottom:557.317350px;}
.y77{bottom:557.928150px;}
.ya3{bottom:559.304400px;}
.y4e{bottom:559.900650px;}
.ya9{bottom:563.709900px;}
.y91{bottom:564.435750px;}
.ya{bottom:567.456600px;}
.yeb{bottom:574.241400px;}
.yc8{bottom:575.317350px;}
.ya2{bottom:577.304400px;}
.y1c{bottom:578.371650px;}
.y64{bottom:579.051300px;}
.y4d{bottom:581.347350px;}
.y3e{bottom:582.541950px;}
.y2d{bottom:584.879100px;}
.yea{bottom:592.241400px;}
.y76{bottom:593.928150px;}
.y90{bottom:594.435750px;}
.ya1{bottom:595.304400px;}
.y1b{bottom:596.371650px;}
.y63{bottom:597.051300px;}
.ya8{bottom:599.709900px;}
.y3d{bottom:600.541950px;}
.y9{bottom:606.444600px;}
.y8f{bottom:609.435750px;}
.ye9{bottom:610.241400px;}
.yc7{bottom:611.317350px;}
.y75{bottom:611.928150px;}
.ya0{bottom:613.304400px;}
.y1a{bottom:614.371650px;}
.y2c{bottom:614.879100px;}
.y62{bottom:615.051300px;}
.ya7{bottom:617.709900px;}
.y3c{bottom:618.541950px;}
.yde{bottom:619.542450px;}
.yed{bottom:621.960000px;}
.yf1{bottom:623.170050px;}
.y71{bottom:626.058900px;}
.yc6{bottom:629.317350px;}
.y2b{bottom:629.879100px;}
.y19{bottom:632.371650px;}
.y61{bottom:633.051300px;}
.ya6{bottom:635.709900px;}
.y3b{bottom:636.541950px;}
.y8e{bottom:639.435750px;}
.y70{bottom:641.058900px;}
.y8{bottom:645.432600px;}
.yc5{bottom:647.317350px;}
.y74{bottom:647.928150px;}
.y60{bottom:651.051300px;}
.ya5{bottom:653.709900px;}
.y2a{bottom:659.879100px;}
.y8d{bottom:660.882600px;}
.y18{bottom:668.371650px;}
.y6f{bottom:671.058900px;}
.y6{bottom:672.245550px;}
.y3a{bottom:672.541950px;}
.y29{bottom:681.325950px;}
.yc4{bottom:683.317350px;}
.y5f{bottom:687.051300px;}
.ya4{bottom:689.709900px;}
.y6e{bottom:692.505600px;}
.yf9{bottom:698.749500px;}
.yc3{bottom:701.317350px;}
.yc2{bottom:719.317350px;}
.y5{bottom:729.066426px;}
.y16{bottom:787.018050px;}
.y5a{bottom:787.081050px;}
.yc1{bottom:787.081800px;}
.y4{bottom:789.463800px;}
.y17{bottom:789.839400px;}
.y92{bottom:790.891050px;}
.y5e{bottom:791.053650px;}
.y5d{bottom:791.054400px;}
.y5c{bottom:791.055150px;}
.ybe{bottom:791.103450px;}
.ybf{bottom:791.104200px;}
.y39{bottom:791.424300px;}
.y15{bottom:829.051800px;}
.y5b{bottom:829.114800px;}
.yc0{bottom:829.115550px;}
.h10{height:30.187849px;}
.h12{height:30.190849px;}
.h15{height:30.193849px;}
.h20{height:32.072208px;}
.h9{height:35.376049px;}
.h1c{height:38.290762px;}
.h18{height:38.847707px;}
.h1{height:42.288000px;}
.h13{height:44.580000px;}
.hb{height:52.860000px;}
.hc{height:54.600000px;}
.h21{height:62.661314px;}
.h14{height:63.432000px;}
.ha{height:65.520000px;}
.h11{height:73.067904px;}
.h1f{height:73.323995px;}
.h1d{height:74.811864px;}
.h19{height:75.899532px;}
.h1b{height:87.541902px;}
.h17{height:88.814729px;}
.hd{height:90.377150px;}
.he{height:91.689509px;}
.h6{height:95.148000px;}
.hf{height:114.177317px;}
.h2{height:126.864000px;}
.h1e{height:128.680500px;}
.h4{height:131.039327px;}
.h8{height:134.546412px;}
.h3{height:163.799241px;}
.h7{height:179.394852px;}
.h16{height:296.040000px;}
.h1a{height:389.422500px;}
.h5{height:810.000000px;}
.h0{height:918.000000px;}
.w3{width:311.008500px;}
.w2{width:317.176500px;}
.w4{width:366.510000px;}
.w1{width:1186.851000px;}
.w0{width:1188.000000px;}
.x3a{left:-701.080350px;}
.x39{left:-669.622350px;}
.x3b{left:-573.694950px;}
.x41{left:-57.804600px;}
.x40{left:-31.857150px;}
.x0{left:0.000000px;}
.x7{left:1.147500px;}
.x1a{left:47.904000px;}
.x29{left:50.265450px;}
.x20{left:51.510450px;}
.x9{left:53.775900px;}
.x37{left:64.574250px;}
.x5{left:66.618062px;}
.x6{left:68.244450px;}
.x1d{left:69.317850px;}
.x2b{left:70.560000px;}
.xd{left:71.758350px;}
.x25{left:72.924300px;}
.x10{left:74.169450px;}
.xc{left:75.190500px;}
.x1e{left:78.906750px;}
.x26{left:82.513200px;}
.x2c{left:83.581050px;}
.xe{left:84.779250px;}
.x4{left:101.418600px;}
.x8{left:107.896050px;}
.x15{left:183.024900px;}
.x2{left:265.752750px;}
.x16{left:282.574200px;}
.x1{left:323.506350px;}
.x3{left:363.600750px;}
.x3f{left:412.201500px;}
.x3d{left:415.817400px;}
.x18{left:420.120150px;}
.x36{left:423.188250px;}
.x35{left:424.970250px;}
.x3c{left:447.089850px;}
.x42{left:459.468000px;}
.x17{left:477.512700px;}
.x27{left:506.956050px;}
.x28{left:509.164146px;}
.x34{left:511.031250px;}
.x30{left:518.209050px;}
.x3e{left:542.451450px;}
.x19{left:576.808650px;}
.x14{left:668.216250px;}
.x13{left:734.094750px;}
.x12{left:785.138700px;}
.x2f{left:809.623500px;}
.x1c{left:812.298300px;}
.x2a{left:816.971250px;}
.xb{left:818.170950px;}
.x1f{left:824.298300px;}
.x24{left:833.159250px;}
.x31{left:847.797300px;}
.x1b{left:851.343750px;}
.xa{left:852.627000px;}
.x2d{left:856.050300px;}
.x38{left:870.823500px;}
.x23{left:876.610800px;}
.x11{left:878.772900px;}
.x32{left:939.295950px;}
.x33{left:943.812000px;}
.x2e{left:949.888200px;}
.xf{left:963.070350px;}
.x22{left:968.664600px;}
.x21{left:1067.052300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.611733pt;}
.v1{vertical-align:11.637867pt;}
.v3{vertical-align:15.666667pt;}
.v4{vertical-align:23.760098pt;}
.ls0{letter-spacing:0.000000pt;}
.wsb{word-spacing:-90.437333pt;}
.wsc{word-spacing:-89.141333pt;}
.wsd{word-spacing:-74.663467pt;}
.ws1{word-spacing:-72.384000pt;}
.ws6{word-spacing:-32.199141pt;}
.ws4{word-spacing:-15.680000pt;}
.ws7{word-spacing:-13.973333pt;}
.ws8{word-spacing:-13.066667pt;}
.ws5{word-spacing:-10.194483pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:93.504000pt;}
.ws9{word-spacing:114.048000pt;}
.ws3{word-spacing:1598.835421pt;}
.ws2{word-spacing:2301.488126pt;}
._8{margin-left:-12.091082pt;}
._1{margin-left:-5.888000pt;}
._5{margin-left:-4.146133pt;}
._3{margin-left:-3.154133pt;}
._2{margin-left:-1.962667pt;}
._0{margin-left:-0.981333pt;}
._4{width:0.971733pt;}
._6{width:3.214933pt;}
._12{width:115.776000pt;}
._11{width:116.864000pt;}
._10{width:131.840000pt;}
._f{width:133.056000pt;}
._e{width:134.336000pt;}
._d{width:140.672000pt;}
._9{width:174.720052pt;}
._c{width:508.106767pt;}
._a{width:520.737563pt;}
._7{width:525.956571pt;}
._b{width:528.467177pt;}
.fs7{font-size:34.534933pt;}
.fs16{font-size:38.421333pt;}
.fse{font-size:41.610133pt;}
.fs0{font-size:42.666667pt;}
.fs13{font-size:45.870933pt;}
.fs10{font-size:46.538133pt;}
.fs9{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fsd{font-size:71.372800pt;}
.fs17{font-size:74.663467pt;}
.fs15{font-size:87.839467pt;}
.fs14{font-size:89.141333pt;}
.fs11{font-size:90.437333pt;}
.fs4{font-size:96.000000pt;}
.fs12{font-size:104.872000pt;}
.fsf{font-size:106.396800pt;}
.fsa{font-size:112.830400pt;}
.fsb{font-size:114.468800pt;}
.fs3{font-size:127.999343pt;}
.fs1{font-size:128.000000pt;}
.fs6{font-size:131.425067pt;}
.fsc{font-size:142.543467pt;}
.fs2{font-size:159.999259pt;}
.fs5{font-size:175.233067pt;}
.yef{bottom:-411.176933pt;}
.yf0{bottom:-184.847467pt;}
.yf6{bottom:-100.564000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:40.389333pt;}
.yf8{bottom:43.192667pt;}
.yf2{bottom:43.194000pt;}
.y1{bottom:44.766933pt;}
.y7{bottom:47.509333pt;}
.y2f{bottom:49.763067pt;}
.y2e{bottom:49.833333pt;}
.yee{bottom:106.982933pt;}
.y59{bottom:115.033867pt;}
.ybd{bottom:121.589867pt;}
.y14{bottom:123.165867pt;}
.ydd{bottom:127.393200pt;}
.ybc{bottom:133.075467pt;}
.y58{bottom:133.700533pt;}
.ydc{bottom:143.393200pt;}
.y88{bottom:143.936133pt;}
.ybb{bottom:149.075467pt;}
.y57{bottom:152.367200pt;}
.y3{bottom:155.649467pt;}
.y13{bottom:157.821867pt;}
.ydb{bottom:159.393200pt;}
.y87{bottom:159.936133pt;}
.yba{bottom:165.075467pt;}
.y34{bottom:168.846400pt;}
.ydf{bottom:171.152400pt;}
.y30{bottom:172.191467pt;}
.yf4{bottom:173.453333pt;}
.yb9{bottom:181.075467pt;}
.y9f{bottom:184.650400pt;}
.y56{bottom:189.700533pt;}
.yda{bottom:191.393200pt;}
.y86{bottom:191.936133pt;}
.y12{bottom:192.477867pt;}
.y2{bottom:194.049467pt;}
.yb8{bottom:197.075467pt;}
.y9e{bottom:200.650400pt;}
.yd9{bottom:207.393200pt;}
.y85{bottom:207.936133pt;}
.yb7{bottom:213.075467pt;}
.y9d{bottom:216.650400pt;}
.y35{bottom:217.837200pt;}
.y31{bottom:218.632800pt;}
.yd8{bottom:223.393200pt;}
.y84{bottom:223.936133pt;}
.y55{bottom:227.033867pt;}
.y11{bottom:227.133867pt;}
.yb6{bottom:229.075467pt;}
.y9c{bottom:232.650400pt;}
.yd7{bottom:239.393200pt;}
.y83{bottom:239.936133pt;}
.y37{bottom:241.932267pt;}
.y54{bottom:245.700533pt;}
.ye3{bottom:251.670533pt;}
.yd6{bottom:255.393200pt;}
.y82{bottom:255.936133pt;}
.y4c{bottom:259.413467pt;}
.yf7{bottom:259.744000pt;}
.yb5{bottom:261.075467pt;}
.y10{bottom:261.789867pt;}
.y53{bottom:264.367200pt;}
.y9b{bottom:264.650400pt;}
.yf3{bottom:266.280267pt;}
.ye8{bottom:267.130800pt;}
.y81{bottom:271.936133pt;}
.y4b{bottom:275.413467pt;}
.yb4{bottom:277.075467pt;}
.y9a{bottom:280.650400pt;}
.y52{bottom:283.033867pt;}
.ye7{bottom:283.130800pt;}
.yd5{bottom:287.393200pt;}
.y4a{bottom:291.413467pt;}
.ye2{bottom:294.150533pt;}
.yf{bottom:296.445867pt;}
.y99{bottom:296.650400pt;}
.ye6{bottom:299.130800pt;}
.y51{bottom:301.700533pt;}
.yd4{bottom:303.393200pt;}
.y80{bottom:303.936133pt;}
.y49{bottom:307.413467pt;}
.yb3{bottom:309.075467pt;}
.ye5{bottom:315.130800pt;}
.y32{bottom:317.425733pt;}
.yd3{bottom:319.393200pt;}
.y7f{bottom:319.936133pt;}
.y48{bottom:323.413467pt;}
.yb2{bottom:325.075467pt;}
.y47{bottom:325.815067pt;}
.yf5{bottom:327.222267pt;}
.y36{bottom:328.329467pt;}
.ye{bottom:331.101867pt;}
.yd2{bottom:335.393200pt;}
.y7e{bottom:335.936133pt;}
.yb1{bottom:341.075467pt;}
.y46{bottom:341.815067pt;}
.yd1{bottom:351.393200pt;}
.y24{bottom:354.108133pt;}
.y45{bottom:357.815067pt;}
.y98{bottom:357.827467pt;}
.y8c{bottom:358.014933pt;}
.y73{bottom:365.742242pt;}
.yd0{bottom:367.393200pt;}
.y7d{bottom:367.936133pt;}
.y23{bottom:370.108133pt;}
.yb0{bottom:373.075467pt;}
.y97{bottom:373.827467pt;}
.y28{bottom:374.456400pt;}
.y8b{bottom:376.681600pt;}
.ycf{bottom:383.393200pt;}
.y7c{bottom:383.936133pt;}
.y33{bottom:383.981733pt;}
.y22{bottom:386.108133pt;}
.y44{bottom:389.815067pt;}
.y96{bottom:389.827467pt;}
.y27{bottom:393.123067pt;}
.y8a{bottom:395.348267pt;}
.y7b{bottom:399.936133pt;}
.yd{bottom:400.437867pt;}
.y21{bottom:402.108133pt;}
.yaf{bottom:405.075467pt;}
.y95{bottom:405.827467pt;}
.y26{bottom:411.789733pt;}
.y89{bottom:414.014933pt;}
.yce{bottom:415.393200pt;}
.yae{bottom:421.075467pt;}
.y43{bottom:421.815067pt;}
.y94{bottom:421.827467pt;}
.y6d{bottom:422.925067pt;}
.ye1{bottom:423.254533pt;}
.y38{bottom:425.653600pt;}
.y25{bottom:430.456400pt;}
.ycd{bottom:431.393200pt;}
.y7a{bottom:431.936133pt;}
.y20{bottom:434.108133pt;}
.y68{bottom:434.712267pt;}
.yc{bottom:435.093867pt;}
.yad{bottom:437.075467pt;}
.ye4{bottom:437.814533pt;}
.y42{bottom:437.815067pt;}
.y93{bottom:437.827467pt;}
.y6c{bottom:438.925067pt;}
.ycc{bottom:447.393200pt;}
.y79{bottom:447.936133pt;}
.y1f{bottom:450.108133pt;}
.y67{bottom:450.712267pt;}
.yac{bottom:453.075467pt;}
.y41{bottom:453.815067pt;}
.y6b{bottom:454.925067pt;}
.y50{bottom:457.689467pt;}
.ycb{bottom:463.393200pt;}
.ye0{bottom:464.230533pt;}
.y1e{bottom:466.108133pt;}
.y66{bottom:466.712267pt;}
.yab{bottom:469.075467pt;}
.yb{bottom:469.749867pt;}
.y40{bottom:469.815067pt;}
.y6a{bottom:470.925067pt;}
.y4f{bottom:471.022800pt;}
.yca{bottom:479.393200pt;}
.y78{bottom:479.936133pt;}
.y1d{bottom:482.108133pt;}
.y65{bottom:482.712267pt;}
.yaa{bottom:485.075467pt;}
.y3f{bottom:485.815067pt;}
.y69{bottom:486.925067pt;}
.yec{bottom:494.436800pt;}
.yc9{bottom:495.393200pt;}
.y77{bottom:495.936133pt;}
.ya3{bottom:497.159467pt;}
.y4e{bottom:497.689467pt;}
.ya9{bottom:501.075467pt;}
.y91{bottom:501.720667pt;}
.ya{bottom:504.405867pt;}
.yeb{bottom:510.436800pt;}
.yc8{bottom:511.393200pt;}
.ya2{bottom:513.159467pt;}
.y1c{bottom:514.108133pt;}
.y64{bottom:514.712267pt;}
.y4d{bottom:516.753200pt;}
.y3e{bottom:517.815067pt;}
.y2d{bottom:519.892533pt;}
.yea{bottom:526.436800pt;}
.y76{bottom:527.936133pt;}
.y90{bottom:528.387333pt;}
.ya1{bottom:529.159467pt;}
.y1b{bottom:530.108133pt;}
.y63{bottom:530.712267pt;}
.ya8{bottom:533.075467pt;}
.y3d{bottom:533.815067pt;}
.y9{bottom:539.061867pt;}
.y8f{bottom:541.720667pt;}
.ye9{bottom:542.436800pt;}
.yc7{bottom:543.393200pt;}
.y75{bottom:543.936133pt;}
.ya0{bottom:545.159467pt;}
.y1a{bottom:546.108133pt;}
.y2c{bottom:546.559200pt;}
.y62{bottom:546.712267pt;}
.ya7{bottom:549.075467pt;}
.y3c{bottom:549.815067pt;}
.yde{bottom:550.704400pt;}
.yed{bottom:552.853333pt;}
.yf1{bottom:553.928933pt;}
.y71{bottom:556.496800pt;}
.yc6{bottom:559.393200pt;}
.y2b{bottom:559.892533pt;}
.y19{bottom:562.108133pt;}
.y61{bottom:562.712267pt;}
.ya6{bottom:565.075467pt;}
.y3b{bottom:565.815067pt;}
.y8e{bottom:568.387333pt;}
.y70{bottom:569.830133pt;}
.y8{bottom:573.717867pt;}
.yc5{bottom:575.393200pt;}
.y74{bottom:575.936133pt;}
.y60{bottom:578.712267pt;}
.ya5{bottom:581.075467pt;}
.y2a{bottom:586.559200pt;}
.y8d{bottom:587.451200pt;}
.y18{bottom:594.108133pt;}
.y6f{bottom:596.496800pt;}
.y6{bottom:597.551600pt;}
.y3a{bottom:597.815067pt;}
.y29{bottom:605.623067pt;}
.yc4{bottom:607.393200pt;}
.y5f{bottom:610.712267pt;}
.ya4{bottom:613.075467pt;}
.y6e{bottom:615.560533pt;}
.yf9{bottom:621.110667pt;}
.yc3{bottom:623.393200pt;}
.yc2{bottom:639.393200pt;}
.y5{bottom:648.059046pt;}
.y16{bottom:699.571600pt;}
.y5a{bottom:699.627600pt;}
.yc1{bottom:699.628267pt;}
.y4{bottom:701.745600pt;}
.y17{bottom:702.079467pt;}
.y92{bottom:703.014267pt;}
.y5e{bottom:703.158800pt;}
.y5d{bottom:703.159467pt;}
.y5c{bottom:703.160133pt;}
.ybe{bottom:703.203067pt;}
.ybf{bottom:703.203733pt;}
.y39{bottom:703.488267pt;}
.y15{bottom:736.934933pt;}
.y5b{bottom:736.990933pt;}
.yc0{bottom:736.991600pt;}
.h10{height:26.833643pt;}
.h12{height:26.836310pt;}
.h15{height:26.838977pt;}
.h20{height:28.508629pt;}
.h9{height:31.445377pt;}
.h1c{height:34.036233pt;}
.h18{height:34.531295pt;}
.h1{height:37.589333pt;}
.h13{height:39.626667pt;}
.hb{height:46.986667pt;}
.hc{height:48.533333pt;}
.h21{height:55.698946pt;}
.h14{height:56.384000pt;}
.ha{height:58.240000pt;}
.h11{height:64.949248pt;}
.h1f{height:65.176884pt;}
.h1d{height:66.499435pt;}
.h19{height:67.466251pt;}
.h1b{height:77.815024pt;}
.h17{height:78.946426pt;}
.hd{height:80.335245pt;}
.he{height:81.501786pt;}
.h6{height:84.576000pt;}
.hf{height:101.490948pt;}
.h2{height:112.768000pt;}
.h1e{height:114.382667pt;}
.h4{height:116.479402pt;}
.h8{height:119.596811pt;}
.h3{height:145.599325pt;}
.h7{height:159.462091pt;}
.h16{height:263.146667pt;}
.h1a{height:346.153333pt;}
.h5{height:720.000000pt;}
.h0{height:816.000000pt;}
.w3{width:276.452000pt;}
.w2{width:281.934667pt;}
.w4{width:325.786667pt;}
.w1{width:1054.978667pt;}
.w0{width:1056.000000pt;}
.x3a{left:-623.182533pt;}
.x39{left:-595.219867pt;}
.x3b{left:-509.951067pt;}
.x41{left:-51.381867pt;}
.x40{left:-28.317467pt;}
.x0{left:0.000000pt;}
.x7{left:1.020000pt;}
.x1a{left:42.581333pt;}
.x29{left:44.680400pt;}
.x20{left:45.787067pt;}
.x9{left:47.800800pt;}
.x37{left:57.399333pt;}
.x5{left:59.216055pt;}
.x6{left:60.661733pt;}
.x1d{left:61.615867pt;}
.x2b{left:62.720000pt;}
.xd{left:63.785200pt;}
.x25{left:64.821600pt;}
.x10{left:65.928400pt;}
.xc{left:66.836000pt;}
.x1e{left:70.139333pt;}
.x26{left:73.345067pt;}
.x2c{left:74.294267pt;}
.xe{left:75.359333pt;}
.x4{left:90.149867pt;}
.x8{left:95.907600pt;}
.x15{left:162.688800pt;}
.x2{left:236.224667pt;}
.x16{left:251.177067pt;}
.x1{left:287.561200pt;}
.x3{left:323.200667pt;}
.x3f{left:366.401333pt;}
.x3d{left:369.615467pt;}
.x18{left:373.440133pt;}
.x36{left:376.167333pt;}
.x35{left:377.751333pt;}
.x3c{left:397.413200pt;}
.x42{left:408.416000pt;}
.x17{left:424.455733pt;}
.x27{left:450.627600pt;}
.x28{left:452.590352pt;}
.x34{left:454.250000pt;}
.x30{left:460.630267pt;}
.x3e{left:482.179067pt;}
.x19{left:512.718800pt;}
.x14{left:593.970000pt;}
.x13{left:652.528667pt;}
.x12{left:697.901067pt;}
.x2f{left:719.665333pt;}
.x1c{left:722.042933pt;}
.x2a{left:726.196667pt;}
.xb{left:727.263067pt;}
.x1f{left:732.709600pt;}
.x24{left:740.586000pt;}
.x31{left:753.597600pt;}
.x1b{left:756.750000pt;}
.xa{left:757.890667pt;}
.x2d{left:760.933600pt;}
.x38{left:774.065333pt;}
.x23{left:779.209600pt;}
.x11{left:781.131467pt;}
.x32{left:834.929733pt;}
.x33{left:838.944000pt;}
.x2e{left:844.345067pt;}
.xf{left:856.062533pt;}
.x22{left:861.035200pt;}
.x21{left:948.490933pt;}
}




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