
    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_149447afb04563bab5000fae.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_9cf94f6e12822052b8965a4a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_5e62811051c97335178be85f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_6c74f105cf3698aebc8e9e69.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_218b2d8a4a07667592301833.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_30b5b7f8210ad76a8fd47bb4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_2fd0b6fef4c52b7f75ab4554.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.319653px;}
.ls3{letter-spacing:0.319830px;}
.ls5{letter-spacing:0.330720px;}
.ls1{letter-spacing:0.700100px;}
.ls0{letter-spacing:1655.745178px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-19.038232px;}
.ws4{word-spacing:-16.613273px;}
.ws7{word-spacing:-16.271993px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.374074px;}
.ws2{word-spacing:-13.505755px;}
.ws3{word-spacing:-13.499995px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-4.076758px;}
._4{margin-left:-2.680809px;}
._1{margin-left:-1.237605px;}
._0{width:1.152887px;}
._2{width:3.052219px;}
._7{width:4.286629px;}
._3{width:5.497704px;}
._8{width:6.885413px;}
._6{width:8.558863px;}
._5{width:9.860550px;}
._15{width:11.679832px;}
._13{width:12.928865px;}
._10{width:13.996251px;}
._14{width:15.155350px;}
._e{width:17.603099px;}
._12{width:18.801591px;}
._11{width:20.336388px;}
._1c{width:24.732863px;}
._1b{width:25.744644px;}
._c{width:28.211575px;}
._17{width:29.648361px;}
._18{width:30.741815px;}
._1a{width:34.131243px;}
._19{width:35.304057px;}
._16{width:39.994832px;}
._d{width:41.302826px;}
._a{width:42.319065px;}
._f{width:43.424992px;}
._b{width:44.589555px;}
.fcb{color:transparent;}
.fcc{color:rgb(48,103,133);}
.fca{color:rgb(0,101,204);}
.fc8{color:rgb(245,158,0);}
.fc6{color:rgb(44,62,80);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc9{color:rgb(0,176,80);}
.fc7{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs3{font-size:95.759962px;}
.y4{bottom:-14.759994px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.059989px;}
.y17{bottom:4.319715px;}
.y41{bottom:4.499582px;}
.y19{bottom:4.499715px;}
.y27{bottom:4.499729px;}
.y9{bottom:4.499980px;}
.y79{bottom:4.859810px;}
.y67{bottom:4.859936px;}
.ya{bottom:23.760000px;}
.y8{bottom:45.720000px;}
.y6{bottom:50.219980px;}
.y7{bottom:51.299979px;}
.yc5{bottom:138.779944px;}
.yac{bottom:141.479943px;}
.ya0{bottom:141.659943px;}
.y83{bottom:143.999942px;}
.y66{bottom:155.700000px;}
.y39{bottom:158.579937px;}
.y65{bottom:160.559936px;}
.yc4{bottom:163.979934px;}
.y9f{bottom:167.039933px;}
.yab{bottom:178.739929px;}
.y82{bottom:182.699927px;}
.y64{bottom:185.939926px;}
.y116{bottom:187.379925px;}
.ydd{bottom:194.579922px;}
.y38{bottom:197.819921px;}
.yc3{bottom:201.239920px;}
.y100{bottom:201.599919px;}
.y9e{bottom:204.299918px;}
.yaa{bottom:215.999914px;}
.ydc{bottom:219.779912px;}
.y81{bottom:222.839911px;}
.y63{bottom:223.199911px;}
.y115{bottom:224.639910px;}
.yc2{bottom:226.619909px;}
.yff{bottom:226.979909px;}
.y9d{bottom:229.499908px;}
.y46{bottom:235.259906px;}
.y25{bottom:241.739903px;}
.ydb{bottom:244.979902px;}
.y80{bottom:248.039901px;}
.y62{bottom:248.399901px;}
.y114{bottom:249.839900px;}
.ya9{bottom:253.259899px;}
.y45{bottom:253.799898px;}
.ye8{bottom:258.479897px;}
.yc1{bottom:263.879894px;}
.yfe{bottom:264.239894px;}
.y9c{bottom:266.759893px;}
.y44{bottom:272.339891px;}
.y74{bottom:273.239891px;}
.yda{bottom:283.679887px;}
.y7f{bottom:285.299886px;}
.y61{bottom:285.659886px;}
.y113{bottom:287.099885px;}
.yc0{bottom:289.079884px;}
.ya8{bottom:290.519884px;}
.y43{bottom:291.059884px;}
.y9b{bottom:291.959883px;}
.y73{bottom:298.439881px;}
.ye7{bottom:298.619881px;}
.yfd{bottom:301.499879px;}
.y42{bottom:310.499876px;}
.y7e{bottom:310.679876px;}
.y60{bottom:311.039876px;}
.y112{bottom:312.479875px;}
.ya7{bottom:315.719874px;}
.y72{bottom:323.819870px;}
.yfc{bottom:326.699869px;}
.ybf{bottom:327.599869px;}
.y9a{bottom:329.219868px;}
.y7d{bottom:347.939861px;}
.y71{bottom:349.019860px;}
.y5f{bottom:349.559860px;}
.y111{bottom:349.739860px;}
.ya6{bottom:352.979859px;}
.y99{bottom:354.599858px;}
.yfb{bottom:363.959854px;}
.ybe{bottom:367.919853px;}
.y37{bottom:370.079852px;}
.y7c{bottom:373.139851px;}
.y70{bottom:374.219850px;}
.yd9{bottom:374.399850px;}
.ye6{bottom:386.279845px;}
.y110{bottom:386.999845px;}
.y24{bottom:387.899845px;}
.yfa{bottom:389.339844px;}
.y5e{bottom:389.699844px;}
.ya5{bottom:390.239844px;}
.y98{bottom:391.859843px;}
.ybd{bottom:393.119843px;}
.y6f{bottom:399.599840px;}
.y36{bottom:401.939839px;}
.y7b{bottom:410.399836px;}
.yd8{bottom:411.659835px;}
.yf9{bottom:414.539834px;}
.y5d{bottom:414.899834px;}
.y97{bottom:417.059833px;}
.y35{bottom:421.739831px;}
.y10f{bottom:424.259830px;}
.y6e{bottom:424.799830px;}
.ya4{bottom:427.499829px;}
.ybc{bottom:430.379828px;}
.yd7{bottom:436.859825px;}
.y5c{bottom:440.279824px;}
.y34{bottom:441.539823px;}
.y7a{bottom:447.659821px;}
.ye5{bottom:448.919820px;}
.y10e{bottom:449.459820px;}
.y6d{bottom:449.999820px;}
.yf8{bottom:451.799819px;}
.y96{bottom:454.319818px;}
.ybb{bottom:455.579818px;}
.y33{bottom:461.339815px;}
.ya3{bottom:464.759814px;}
.y78{bottom:469.260000px;}
.y77{bottom:474.119810px;}
.y6c{bottom:475.379810px;}
.yf7{bottom:477.179809px;}
.y5b{bottom:477.539809px;}
.y23{bottom:478.799808px;}
.y95{bottom:479.699808px;}
.y32{bottom:481.319807px;}
.y10d{bottom:486.719805px;}
.yba{bottom:492.839803px;}
.yd6{bottom:499.499800px;}
.y31{bottom:501.119800px;}
.y5a{bottom:502.739799px;}
.ya2{bottom:503.459799px;}
.y22{bottom:507.599797px;}
.y10c{bottom:512.099795px;}
.y6b{bottom:513.899794px;}
.yf6{bottom:514.439794px;}
.y76{bottom:515.699794px;}
.y94{bottom:516.959793px;}
.yb9{bottom:518.219793px;}
.y30{bottom:520.919792px;}
.y21{bottom:524.519790px;}
.yd5{bottom:524.699790px;}
.y59{bottom:528.119789px;}
.y75{bottom:535.679786px;}
.ye4{bottom:536.759785px;}
.ya1{bottom:539.279784px;}
.yf5{bottom:539.639784px;}
.y2f{bottom:540.719784px;}
.y20{bottom:541.259783px;}
.y93{bottom:542.159783px;}
.y10b{bottom:549.359780px;}
.yd4{bottom:549.899780px;}
.y58{bottom:553.319779px;}
.y6a{bottom:554.039778px;}
.yb8{bottom:555.479778px;}
.y2e{bottom:560.519776px;}
.ye3{bottom:561.959775px;}
.y1f{bottom:569.879772px;}
.y10a{bottom:574.559770px;}
.yf4{bottom:578.159769px;}
.y57{bottom:578.519769px;}
.y2d{bottom:580.499768px;}
.yb7{bottom:580.679768px;}
.y92{bottom:580.859768px;}
.ye2{bottom:587.159765px;}
.yd3{bottom:588.599765px;}
.y69{bottom:592.739763px;}
.y1e{bottom:598.679761px;}
.y2c{bottom:600.299760px;}
.y56{bottom:603.899758px;}
.y109{bottom:611.819755px;}
.yb6{bottom:617.939753px;}
.yf3{bottom:618.299753px;}
.y2b{bottom:620.099752px;}
.y91{bottom:620.999752px;}
.ye1{bottom:625.859750px;}
.y1d{bottom:627.299749px;}
.y68{bottom:627.839749px;}
.y55{bottom:629.099748px;}
.yd2{bottom:629.999748px;}
.y108{bottom:637.199745px;}
.y2a{bottom:639.899744px;}
.yb5{bottom:643.319743px;}
.yf2{bottom:643.679743px;}
.y1c{bottom:644.399742px;}
.y90{bottom:646.199742px;}
.y54{bottom:654.299738px;}
.y29{bottom:659.699736px;}
.ye0{bottom:667.259733px;}
.yf1{bottom:668.879732px;}
.yd1{bottom:670.139732px;}
.y26{bottom:673.560000px;}
.y107{bottom:674.459730px;}
.y28{bottom:679.679728px;}
.y1b{bottom:680.759728px;}
.yb4{bottom:681.839727px;}
.y8f{bottom:683.459727px;}
.yf0{bottom:694.259722px;}
.yd0{bottom:695.519722px;}
.y106{bottom:699.659720px;}
.y53{bottom:704.879718px;}
.y16{bottom:707.220000px;}
.ydf{bottom:707.399717px;}
.y8e{bottom:708.659717px;}
.y18{bottom:711.719715px;}
.y1a{bottom:713.159715px;}
.yef{bottom:719.459712px;}
.yb3{bottom:721.979711px;}
.y52{bottom:730.259708px;}
.ycf{bottom:732.779707px;}
.y105{bottom:736.919705px;}
.yee{bottom:744.659702px;}
.y15{bottom:745.739702px;}
.y8d{bottom:745.919702px;}
.y51{bottom:755.459698px;}
.yce{bottom:757.979697px;}
.yb2{bottom:759.239696px;}
.y104{bottom:762.299695px;}
.y13{bottom:768.059693px;}
.yde{bottom:770.039692px;}
.y8c{bottom:771.299691px;}
.y14{bottom:774.899690px;}
.y50{bottom:780.659688px;}
.ycd{bottom:795.239682px;}
.yb1{bottom:796.499681px;}
.y103{bottom:799.559680px;}
.y12{bottom:802.439679px;}
.y4f{bottom:806.039678px;}
.y8b{bottom:808.559677px;}
.ycc{bottom:820.619672px;}
.y10{bottom:824.759670px;}
.y4e{bottom:831.239668px;}
.y11{bottom:831.599667px;}
.yb0{bottom:835.199666px;}
.y8a{bottom:845.819662px;}
.yed{bottom:848.699661px;}
.y4d{bottom:856.619657px;}
.ycb{bottom:857.879657px;}
.ye{bottom:859.139656px;}
.y102{bottom:862.019655px;}
.yf{bottom:865.079654px;}
.y89{bottom:871.019652px;}
.yec{bottom:874.079650px;}
.yaf{bottom:875.339650px;}
.y4c{bottom:881.819647px;}
.yca{bottom:883.079647px;}
.yd{bottom:898.559641px;}
.yeb{bottom:899.279640px;}
.yae{bottom:900.539640px;}
.y4b{bottom:907.019637px;}
.y88{bottom:909.719636px;}
.yc9{bottom:921.599631px;}
.y101{bottom:924.479630px;}
.yc{bottom:932.399627px;}
.yea{bottom:936.539625px;}
.yad{bottom:937.799625px;}
.y87{bottom:949.859620px;}
.y4a{bottom:957.599617px;}
.yc8{bottom:961.739615px;}
.y3a{bottom:961.919615px;}
.y3f{bottom:962.999615px;}
.y86{bottom:975.059610px;}
.y3e{bottom:981.179608px;}
.y49{bottom:982.799607px;}
.yc7{bottom:987.119605px;}
.ye9{bottom:999.179600px;}
.y3d{bottom:999.539600px;}
.y48{bottom:1008.179597px;}
.y85{bottom:1012.319595px;}
.yc6{bottom:1024.379590px;}
.y3c{bottom:1026.899589px;}
.y40{bottom:1039.320000px;}
.y3b{bottom:1045.259582px;}
.y47{bottom:1046.699581px;}
.y84{bottom:1049.579580px;}
.y5{bottom:1107.179557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.080000px;}
.h7{height:18.900000px;}
.hd{height:20.160000px;}
.h6{height:20.340000px;}
.h17{height:21.960000px;}
.ha{height:32.693893px;}
.hc{height:33.518307px;}
.h4{height:36.703110px;}
.h11{height:37.520493px;}
.h5{height:38.759750px;}
.h12{height:39.339828px;}
.h1{height:41.522679px;}
.h10{height:43.390178px;}
.h13{height:43.536076px;}
.he{height:44.149201px;}
.h2{height:47.545293px;}
.h18{height:47.988262px;}
.hf{height:48.095137px;}
.h9{height:48.796855px;}
.hb{height:50.027324px;}
.h16{height:51.679667px;}
.h15{height:52.277323px;}
.h19{height:60.465210px;}
.h14{height:61.164468px;}
.h8{height:69.528839px;}
.h0{height:1188.000000px;}
.w4{width:3.600000px;}
.w8{width:5.040000px;}
.w2{width:7.020000px;}
.w6{width:8.280000px;}
.w1{width:9.720000px;}
.w7{width:14.580000px;}
.w5{width:33.840000px;}
.w3{width:58.500000px;}
.w9{width:187.020000px;}
.w0{width:918.000000px;}
.x2d{left:-4.680265px;}
.x0{left:0.000000px;}
.x4{left:69.299972px;}
.x5{left:95.579962px;}
.x21{left:98.099961px;}
.x1{left:107.999957px;}
.x1f{left:109.259956px;}
.x1e{left:111.959955px;}
.x1b{left:113.399955px;}
.x1c{left:118.439953px;}
.x1d{left:122.219888px;}
.x8{left:123.839950px;}
.x14{left:125.280000px;}
.x22{left:127.979949px;}
.x11{left:134.098824px;}
.x30{left:140.039944px;}
.x31{left:144.179942px;}
.x20{left:158.219937px;}
.x57{left:165.599934px;}
.x58{left:169.739932px;}
.x51{left:179.819928px;}
.x15{left:183.780000px;}
.x16{left:187.380000px;}
.x4d{left:191.699923px;}
.x4e{left:201.959919px;}
.x59{left:203.039919px;}
.x5a{left:204.839918px;}
.x53{left:205.919918px;}
.x4b{left:211.859915px;}
.x52{left:216.179914px;}
.x2f{left:217.259913px;}
.x17{left:221.219912px;}
.x25{left:222.479911px;}
.x18{left:224.100000px;}
.x33{left:232.019907px;}
.x34{left:236.159906px;}
.x54{left:238.859904px;}
.x23{left:243.359928px;}
.xe{left:247.319901px;}
.xf{left:253.439899px;}
.x3d{left:257.399897px;}
.x9{left:262.619818px;}
.x19{left:265.140000px;}
.x35{left:274.859890px;}
.x36{left:282.959887px;}
.x26{left:284.039886px;}
.x24{left:285.839886px;}
.x1a{left:287.819885px;}
.x2e{left:290.339884px;}
.x3e{left:297.719881px;}
.x55{left:301.499879px;}
.x2{left:302.579879px;}
.x3f{left:306.539877px;}
.x29{left:317.879926px;}
.xa{left:331.559867px;}
.x37{left:335.159866px;}
.x38{left:339.299864px;}
.x50{left:352.259859px;}
.x10{left:376.019275px;}
.x39{left:379.259848px;}
.x3a{left:383.399847px;}
.x56{left:388.079845px;}
.x6{left:395.279842px;}
.x12{left:402.839839px;}
.x28{left:404.099838px;}
.x40{left:406.439837px;}
.x13{left:408.959836px;}
.x41{left:410.579836px;}
.x2a{left:415.619834px;}
.x42{left:428.579829px;}
.x43{left:432.539827px;}
.x27{left:435.780704px;}
.xb{left:438.119825px;}
.xc{left:444.239822px;}
.x3b{left:458.099817px;}
.x44{left:471.419811px;}
.x45{left:475.379810px;}
.x2b{left:512.459795px;}
.x46{left:545.219782px;}
.x47{left:549.179780px;}
.xd{left:580.319768px;}
.x48{left:589.139764px;}
.x49{left:593.279763px;}
.x4a{left:655.919738px;}
.x2c{left:666.000000px;}
.x3{left:691.199724px;}
.x4f{left:700.739720px;}
.x4c{left:730.980000px;}
.x3c{left:761.579695px;}
.x7{left:837.180000px;}
.x32{left:912.960000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.284136pt;}
.ls3{letter-spacing:0.284293pt;}
.ls5{letter-spacing:0.293973pt;}
.ls1{letter-spacing:0.622311pt;}
.ls0{letter-spacing:1471.773491pt;}
.ws6{word-spacing:-16.922873pt;}
.ws4{word-spacing:-14.767354pt;}
.ws7{word-spacing:-14.463994pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.776955pt;}
.ws2{word-spacing:-12.005115pt;}
.ws3{word-spacing:-11.999995pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-3.623785pt;}
._4{margin-left:-2.382941pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._2{width:2.713084pt;}
._7{width:3.810337pt;}
._3{width:4.886848pt;}
._8{width:6.120367pt;}
._6{width:7.607878pt;}
._5{width:8.764934pt;}
._15{width:10.382073pt;}
._13{width:11.492325pt;}
._10{width:12.441112pt;}
._14{width:13.471422pt;}
._e{width:15.647200pt;}
._12{width:16.712525pt;}
._11{width:18.076790pt;}
._1c{width:21.984767pt;}
._1b{width:22.884128pt;}
._c{width:25.076956pt;}
._17{width:26.354099pt;}
._18{width:27.326058pt;}
._1a{width:30.338883pt;}
._19{width:31.381384pt;}
._16{width:35.550962pt;}
._d{width:36.713623pt;}
._a{width:37.616946pt;}
._f{width:38.599993pt;}
._b{width:39.635160pt;}
.fs5{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs3{font-size:85.119966pt;}
.y4{bottom:-13.119995pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.719990pt;}
.y17{bottom:3.839747pt;}
.y41{bottom:3.999629pt;}
.y19{bottom:3.999747pt;}
.y27{bottom:3.999759pt;}
.y9{bottom:3.999982pt;}
.y79{bottom:4.319831pt;}
.y67{bottom:4.319943pt;}
.ya{bottom:21.120000pt;}
.y8{bottom:40.640000pt;}
.y6{bottom:44.639982pt;}
.y7{bottom:45.599982pt;}
.yc5{bottom:123.359951pt;}
.yac{bottom:125.759950pt;}
.ya0{bottom:125.919950pt;}
.y83{bottom:127.999949pt;}
.y66{bottom:138.400000pt;}
.y39{bottom:140.959944pt;}
.y65{bottom:142.719943pt;}
.yc4{bottom:145.759942pt;}
.y9f{bottom:148.479941pt;}
.yab{bottom:158.879936pt;}
.y82{bottom:162.399935pt;}
.y64{bottom:165.279934pt;}
.y116{bottom:166.559933pt;}
.ydd{bottom:172.959931pt;}
.y38{bottom:175.839930pt;}
.yc3{bottom:178.879928pt;}
.y100{bottom:179.199928pt;}
.y9e{bottom:181.599927pt;}
.yaa{bottom:191.999923pt;}
.ydc{bottom:195.359922pt;}
.y81{bottom:198.079921pt;}
.y63{bottom:198.399921pt;}
.y115{bottom:199.679920pt;}
.yc2{bottom:201.439919pt;}
.yff{bottom:201.759919pt;}
.y9d{bottom:203.999918pt;}
.y46{bottom:209.119916pt;}
.y25{bottom:214.879914pt;}
.ydb{bottom:217.759913pt;}
.y80{bottom:220.479912pt;}
.y62{bottom:220.799912pt;}
.y114{bottom:222.079911pt;}
.ya9{bottom:225.119910pt;}
.y45{bottom:225.599910pt;}
.ye8{bottom:229.759908pt;}
.yc1{bottom:234.559906pt;}
.yfe{bottom:234.879906pt;}
.y9c{bottom:237.119905pt;}
.y44{bottom:242.079903pt;}
.y74{bottom:242.879903pt;}
.yda{bottom:252.159899pt;}
.y7f{bottom:253.599899pt;}
.y61{bottom:253.919898pt;}
.y113{bottom:255.199898pt;}
.yc0{bottom:256.959897pt;}
.ya8{bottom:258.239897pt;}
.y43{bottom:258.719897pt;}
.y9b{bottom:259.519896pt;}
.y73{bottom:265.279894pt;}
.ye7{bottom:265.439894pt;}
.yfd{bottom:267.999893pt;}
.y42{bottom:275.999890pt;}
.y7e{bottom:276.159890pt;}
.y60{bottom:276.479889pt;}
.y112{bottom:277.759889pt;}
.ya7{bottom:280.639888pt;}
.y72{bottom:287.839885pt;}
.yfc{bottom:290.399884pt;}
.ybf{bottom:291.199884pt;}
.y9a{bottom:292.639883pt;}
.y7d{bottom:309.279876pt;}
.y71{bottom:310.239876pt;}
.y5f{bottom:310.719876pt;}
.y111{bottom:310.879876pt;}
.ya6{bottom:313.759874pt;}
.y99{bottom:315.199874pt;}
.yfb{bottom:323.519871pt;}
.ybe{bottom:327.039869pt;}
.y37{bottom:328.959868pt;}
.y7c{bottom:331.679867pt;}
.y70{bottom:332.639867pt;}
.yd9{bottom:332.799867pt;}
.ye6{bottom:343.359863pt;}
.y110{bottom:343.999862pt;}
.y24{bottom:344.799862pt;}
.yfa{bottom:346.079862pt;}
.y5e{bottom:346.399861pt;}
.ya5{bottom:346.879861pt;}
.y98{bottom:348.319861pt;}
.ybd{bottom:349.439860pt;}
.y6f{bottom:355.199858pt;}
.y36{bottom:357.279857pt;}
.y7b{bottom:364.799854pt;}
.yd8{bottom:365.919854pt;}
.yf9{bottom:368.479853pt;}
.y5d{bottom:368.799852pt;}
.y97{bottom:370.719852pt;}
.y35{bottom:374.879850pt;}
.y10f{bottom:377.119849pt;}
.y6e{bottom:377.599849pt;}
.ya4{bottom:379.999848pt;}
.ybc{bottom:382.559847pt;}
.yd7{bottom:388.319845pt;}
.y5c{bottom:391.359843pt;}
.y34{bottom:392.479843pt;}
.y7a{bottom:397.919841pt;}
.ye5{bottom:399.039840pt;}
.y10e{bottom:399.519840pt;}
.y6d{bottom:399.999840pt;}
.yf8{bottom:401.599839pt;}
.y96{bottom:403.839838pt;}
.ybb{bottom:404.959838pt;}
.y33{bottom:410.079836pt;}
.ya3{bottom:413.119835pt;}
.y78{bottom:417.120000pt;}
.y77{bottom:421.439831pt;}
.y6c{bottom:422.559831pt;}
.yf7{bottom:424.159830pt;}
.y5b{bottom:424.479830pt;}
.y23{bottom:425.599830pt;}
.y95{bottom:426.399829pt;}
.y32{bottom:427.839829pt;}
.y10d{bottom:432.639827pt;}
.yba{bottom:438.079825pt;}
.yd6{bottom:443.999822pt;}
.y31{bottom:445.439822pt;}
.y5a{bottom:446.879821pt;}
.ya2{bottom:447.519821pt;}
.y22{bottom:451.199820pt;}
.y10c{bottom:455.199818pt;}
.y6b{bottom:456.799817pt;}
.yf6{bottom:457.279817pt;}
.y76{bottom:458.399817pt;}
.y94{bottom:459.519816pt;}
.yb9{bottom:460.639816pt;}
.y30{bottom:463.039815pt;}
.y21{bottom:466.239814pt;}
.yd5{bottom:466.399813pt;}
.y59{bottom:469.439812pt;}
.y75{bottom:476.159810pt;}
.ye4{bottom:477.119809pt;}
.ya1{bottom:479.359808pt;}
.yf5{bottom:479.679808pt;}
.y2f{bottom:480.639808pt;}
.y20{bottom:481.119808pt;}
.y93{bottom:481.919807pt;}
.y10b{bottom:488.319805pt;}
.yd4{bottom:488.799804pt;}
.y58{bottom:491.839803pt;}
.y6a{bottom:492.479803pt;}
.yb8{bottom:493.759802pt;}
.y2e{bottom:498.239801pt;}
.ye3{bottom:499.519800pt;}
.y1f{bottom:506.559797pt;}
.y10a{bottom:510.719796pt;}
.yf4{bottom:513.919794pt;}
.y57{bottom:514.239794pt;}
.y2d{bottom:515.999794pt;}
.yb7{bottom:516.159794pt;}
.y92{bottom:516.319793pt;}
.ye2{bottom:521.919791pt;}
.yd3{bottom:523.199791pt;}
.y69{bottom:526.879789pt;}
.y1e{bottom:532.159787pt;}
.y2c{bottom:533.599787pt;}
.y56{bottom:536.799785pt;}
.y109{bottom:543.839782pt;}
.yb6{bottom:549.279780pt;}
.yf3{bottom:549.599780pt;}
.y2b{bottom:551.199780pt;}
.y91{bottom:551.999779pt;}
.ye1{bottom:556.319777pt;}
.y1d{bottom:557.599777pt;}
.y68{bottom:558.079777pt;}
.y55{bottom:559.199776pt;}
.yd2{bottom:559.999776pt;}
.y108{bottom:566.399773pt;}
.y2a{bottom:568.799772pt;}
.yb5{bottom:571.839771pt;}
.yf2{bottom:572.159771pt;}
.y1c{bottom:572.799771pt;}
.y90{bottom:574.399770pt;}
.y54{bottom:581.599767pt;}
.y29{bottom:586.399765pt;}
.ye0{bottom:593.119763pt;}
.yf1{bottom:594.559762pt;}
.yd1{bottom:595.679762pt;}
.y26{bottom:598.720000pt;}
.y107{bottom:599.519760pt;}
.y28{bottom:604.159758pt;}
.y1b{bottom:605.119758pt;}
.yb4{bottom:606.079758pt;}
.y8f{bottom:607.519757pt;}
.yf0{bottom:617.119753pt;}
.yd0{bottom:618.239753pt;}
.y106{bottom:621.919751pt;}
.y53{bottom:626.559749pt;}
.y16{bottom:628.640000pt;}
.ydf{bottom:628.799748pt;}
.y8e{bottom:629.919748pt;}
.y18{bottom:632.639747pt;}
.y1a{bottom:633.919746pt;}
.yef{bottom:639.519744pt;}
.yb3{bottom:641.759743pt;}
.y52{bottom:649.119740pt;}
.ycf{bottom:651.359739pt;}
.y105{bottom:655.039738pt;}
.yee{bottom:661.919735pt;}
.y15{bottom:662.879735pt;}
.y8d{bottom:663.039735pt;}
.y51{bottom:671.519731pt;}
.yce{bottom:673.759730pt;}
.yb2{bottom:674.879730pt;}
.y104{bottom:677.599729pt;}
.y13{bottom:682.719727pt;}
.yde{bottom:684.479726pt;}
.y8c{bottom:685.599726pt;}
.y14{bottom:688.799724pt;}
.y50{bottom:693.919722pt;}
.ycd{bottom:706.879717pt;}
.yb1{bottom:707.999717pt;}
.y103{bottom:710.719716pt;}
.y12{bottom:713.279715pt;}
.y4f{bottom:716.479713pt;}
.y8b{bottom:718.719713pt;}
.ycc{bottom:729.439708pt;}
.y10{bottom:733.119707pt;}
.y4e{bottom:738.879704pt;}
.y11{bottom:739.199704pt;}
.yb0{bottom:742.399703pt;}
.y8a{bottom:751.839699pt;}
.yed{bottom:754.399698pt;}
.y4d{bottom:761.439695pt;}
.ycb{bottom:762.559695pt;}
.ye{bottom:763.679695pt;}
.y102{bottom:766.239694pt;}
.yf{bottom:768.959692pt;}
.y89{bottom:774.239690pt;}
.yec{bottom:776.959689pt;}
.yaf{bottom:778.079689pt;}
.y4c{bottom:783.839686pt;}
.yca{bottom:784.959686pt;}
.yd{bottom:798.719681pt;}
.yeb{bottom:799.359680pt;}
.yae{bottom:800.479680pt;}
.y4b{bottom:806.239678pt;}
.y88{bottom:808.639677pt;}
.yc9{bottom:819.199672pt;}
.y101{bottom:821.759671pt;}
.yc{bottom:828.799668pt;}
.yea{bottom:832.479667pt;}
.yad{bottom:833.599667pt;}
.y87{bottom:844.319662pt;}
.y4a{bottom:851.199660pt;}
.yc8{bottom:854.879658pt;}
.y3a{bottom:855.039658pt;}
.y3f{bottom:855.999658pt;}
.y86{bottom:866.719653pt;}
.y3e{bottom:872.159651pt;}
.y49{bottom:873.599651pt;}
.yc7{bottom:877.439649pt;}
.ye9{bottom:888.159645pt;}
.y3d{bottom:888.479645pt;}
.y48{bottom:896.159642pt;}
.y85{bottom:899.839640pt;}
.yc6{bottom:910.559636pt;}
.y3c{bottom:912.799635pt;}
.y40{bottom:923.840000pt;}
.y3b{bottom:929.119628pt;}
.y47{bottom:930.399628pt;}
.y84{bottom:932.959627pt;}
.y5{bottom:984.159606pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.960000pt;}
.h7{height:16.800000pt;}
.hd{height:17.920000pt;}
.h6{height:18.080000pt;}
.h17{height:19.520000pt;}
.ha{height:29.061238pt;}
.hc{height:29.794051pt;}
.h4{height:32.624987pt;}
.h11{height:33.351549pt;}
.h5{height:34.453111pt;}
.h12{height:34.968736pt;}
.h1{height:36.909048pt;}
.h10{height:38.569047pt;}
.h13{height:38.698735pt;}
.he{height:39.243734pt;}
.h2{height:42.262483pt;}
.h18{height:42.656233pt;}
.hf{height:42.751233pt;}
.h9{height:43.374983pt;}
.hb{height:44.468732pt;}
.h16{height:45.937482pt;}
.h15{height:46.468731pt;}
.h19{height:53.746854pt;}
.h14{height:54.368416pt;}
.h8{height:61.803413pt;}
.h0{height:1056.000000pt;}
.w4{width:3.200000pt;}
.w8{width:4.480000pt;}
.w2{width:6.240000pt;}
.w6{width:7.360000pt;}
.w1{width:8.640000pt;}
.w7{width:12.960000pt;}
.w5{width:30.080000pt;}
.w3{width:52.000000pt;}
.w9{width:166.240000pt;}
.w0{width:816.000000pt;}
.x2d{left:-4.160235pt;}
.x0{left:0.000000pt;}
.x4{left:61.599975pt;}
.x5{left:84.959966pt;}
.x21{left:87.199965pt;}
.x1{left:95.999962pt;}
.x1f{left:97.119961pt;}
.x1e{left:99.519960pt;}
.x1b{left:100.799960pt;}
.x1c{left:105.279958pt;}
.x1d{left:108.639901pt;}
.x8{left:110.079956pt;}
.x14{left:111.360000pt;}
.x22{left:113.759954pt;}
.x11{left:119.198955pt;}
.x30{left:124.479950pt;}
.x31{left:128.159949pt;}
.x20{left:140.639944pt;}
.x57{left:147.199941pt;}
.x58{left:150.879940pt;}
.x51{left:159.839936pt;}
.x15{left:163.360000pt;}
.x16{left:166.560000pt;}
.x4d{left:170.399932pt;}
.x4e{left:179.519928pt;}
.x59{left:180.479928pt;}
.x5a{left:182.079927pt;}
.x53{left:183.039927pt;}
.x4b{left:188.319925pt;}
.x52{left:192.159923pt;}
.x2f{left:193.119923pt;}
.x17{left:196.639921pt;}
.x25{left:197.759921pt;}
.x18{left:199.200000pt;}
.x33{left:206.239918pt;}
.x34{left:209.919916pt;}
.x54{left:212.319915pt;}
.x23{left:216.319936pt;}
.xe{left:219.839912pt;}
.xf{left:225.279910pt;}
.x3d{left:228.799908pt;}
.x9{left:233.439838pt;}
.x19{left:235.680000pt;}
.x35{left:244.319902pt;}
.x36{left:251.519899pt;}
.x26{left:252.479899pt;}
.x24{left:254.079898pt;}
.x1a{left:255.839898pt;}
.x2e{left:258.079897pt;}
.x3e{left:264.639894pt;}
.x55{left:267.999893pt;}
.x2{left:268.959892pt;}
.x3f{left:272.479891pt;}
.x29{left:282.559934pt;}
.xa{left:294.719882pt;}
.x37{left:297.919881pt;}
.x38{left:301.599879pt;}
.x50{left:313.119875pt;}
.x10{left:334.239355pt;}
.x39{left:337.119865pt;}
.x3a{left:340.799864pt;}
.x56{left:344.959862pt;}
.x6{left:351.359859pt;}
.x12{left:358.079857pt;}
.x28{left:359.199856pt;}
.x40{left:361.279855pt;}
.x13{left:363.519855pt;}
.x41{left:364.959854pt;}
.x2a{left:369.439852pt;}
.x42{left:380.959848pt;}
.x43{left:384.479846pt;}
.x27{left:387.360626pt;}
.xb{left:389.439844pt;}
.xc{left:394.879842pt;}
.x3b{left:407.199837pt;}
.x44{left:419.039832pt;}
.x45{left:422.559831pt;}
.x2b{left:455.519818pt;}
.x46{left:484.639806pt;}
.x47{left:488.159805pt;}
.xd{left:515.839794pt;}
.x48{left:523.679791pt;}
.x49{left:527.359789pt;}
.x4a{left:583.039767pt;}
.x2c{left:592.000000pt;}
.x3{left:614.399754pt;}
.x4f{left:622.879751pt;}
.x4c{left:649.760000pt;}
.x3c{left:676.959729pt;}
.x7{left:744.160000pt;}
.x32{left:811.520000pt;}
}




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