
    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_5b379624a81c832985edfdf4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e02052889174368cea100d71.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_5dfb10f2fa1d63090be59afd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861328;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_62dac23dcdf03e6a45869275.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d45cfac2552a3642c90f2cdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895508;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f1013d8d2dc7f51cb7d806d4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e979fc66330e66091062cd4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_8ebc362cd267bd841d483f88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861328;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_e42fb05030bcdf02add6b1ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.808105;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c58839a829c57d69406295b8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_baec303cfdd7d31b7651b575.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_18ef84bf298e9e96e04a5c0d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.873535;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_e979fc66330e66091062cd4f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000002px;}
.ls1{letter-spacing:88.160157px;}
.ls3{letter-spacing:197.663086px;}
.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;}
}
.ws4{word-spacing:-33.000001px;}
.ws2{word-spacing:-14.920899px;}
.ws3{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-7.511446px;}
._e{margin-left:-6.004063px;}
._1a{margin-left:-4.491463px;}
._8{margin-left:-3.490586px;}
._0{margin-left:-1.808487px;}
._d{width:1.031363px;}
._7{width:2.292298px;}
._f{width:4.314164px;}
._10{width:5.328260px;}
._12{width:7.463772px;}
._14{width:8.564442px;}
._13{width:9.702265px;}
._c{width:12.813271px;}
._6{width:13.997282px;}
._5{width:17.934973px;}
._21{width:18.977240px;}
._b{width:22.000456px;}
._19{width:23.287170px;}
._18{width:26.624082px;}
._20{width:27.833219px;}
._1f{width:30.815870px;}
._1e{width:32.092322px;}
._23{width:35.459064px;}
._22{width:36.776589px;}
._1d{width:49.450356px;}
._1b{width:53.298631px;}
._1c{width:54.924537px;}
._3{width:58.974534px;}
._1{width:62.413723px;}
._2{width:63.580135px;}
._17{width:93.569396px;}
._15{width:97.997445px;}
._16{width:99.834322px;}
._9{width:754.993036px;}
._4{width:1025.883347px;}
._a{width:1048.072456px;}
.fc8{color:rgb(19,115,51);}
.fc6{color:rgb(46,116,181);}
.fc7{color:rgb(30,77,120);}
.fc5{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(46,117,181);}
.fc9{color:rgb(64,64,64);}
.fc4{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs6{font-size:72.000000px;}
.fs9{font-size:78.000003px;}
.fs1{font-size:83.999997px;}
.fs8{font-size:96.000003px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.125000px;}
.y19{bottom:4.125091px;}
.y10c{bottom:10.821791px;}
.y10b{bottom:10.823247px;}
.y114{bottom:10.823254px;}
.y10e{bottom:10.824720px;}
.yf{bottom:13.125000px;}
.yd{bottom:13.125046px;}
.y5{bottom:17.719539px;}
.y116{bottom:17.720215px;}
.y10a{bottom:30.402357px;}
.y113{bottom:30.403819px;}
.y4b{bottom:38.316284px;}
.y3d{bottom:38.316467px;}
.y60{bottom:38.316650px;}
.y1d{bottom:38.316833px;}
.yb7{bottom:38.317382px;}
.y112{bottom:49.981459px;}
.y5e{bottom:56.849858px;}
.y1a{bottom:56.850038px;}
.y3a{bottom:56.850218px;}
.yfb{bottom:56.850578px;}
.y86{bottom:58.457519px;}
.y5f{bottom:58.457887px;}
.yb6{bottom:58.458251px;}
.y4a{bottom:58.458253px;}
.y3c{bottom:58.458436px;}
.y1c{bottom:58.458527px;}
.yfd{bottom:58.458983px;}
.y111{bottom:69.562024px;}
.y18{bottom:75.224947px;}
.y17{bottom:102.512783px;}
.y16{bottom:132.769958px;}
.ya9{bottom:135.139893px;}
.yd1{bottom:135.199946px;}
.y12c{bottom:152.380125px;}
.yb4{bottom:153.741203px;}
.ya8{bottom:156.875976px;}
.yd0{bottom:156.935300px;}
.yfa{bottom:157.069328px;}
.y8c{bottom:163.119145px;}
.y15{bottom:165.726195px;}
.y2{bottom:171.115778px;}
.yf9{bottom:177.210938px;}
.ya7{bottom:178.612793px;}
.ycf{bottom:178.671383px;}
.y12b{bottom:181.548338px;}
.y8b{bottom:184.855226px;}
.yb3{bottom:186.958004px;}
.y14{bottom:196.498351px;}
.yf8{bottom:197.352533px;}
.y12a{bottom:204.711908px;}
.y5d{bottom:205.525395px;}
.y8a{bottom:206.591311px;}
.yb2{bottom:206.718014px;}
.ya6{bottom:211.828125px;}
.yce{bottom:211.888185px;}
.y13{bottom:215.270415px;}
.yf7{bottom:217.494143px;}
.y85{bottom:218.363154px;}
.y5c{bottom:220.724120px;}
.yb1{bottom:226.478024px;}
.y129{bottom:227.874023px;}
.y89{bottom:228.328126px;}
.ya5{bottom:231.588137px;}
.ycd{bottom:231.648194px;}
.yf6{bottom:237.635738px;}
.y5b{bottom:239.034302px;}
.y84{bottom:240.098873px;}
.y88{bottom:250.063478px;}
.y128{bottom:251.036130px;}
.ya4{bottom:251.348879px;}
.ycc{bottom:251.408204px;}
.y12{bottom:251.502135px;}
.y5a{bottom:257.344483px;}
.yf5{bottom:257.777348px;}
.yb0{bottom:258.758055px;}
.y83{bottom:261.834953px;}
.ycb{bottom:271.168214px;}
.y127{bottom:274.199708px;}
.y59{bottom:276.030765px;}
.yf4{bottom:277.918943px;}
.y82{bottom:283.571411px;}
.ya3{bottom:283.628910px;}
.y87{bottom:283.800292px;}
.y126{bottom:297.363284px;}
.yf3{bottom:298.060553px;}
.yca{bottom:303.448245px;}
.y81{bottom:305.307127px;}
.yf2{bottom:318.202148px;}
.y125{bottom:320.525393px;}
.y80{bottom:327.043944px;}
.yf1{bottom:338.343743px;}
.y39{bottom:342.045233px;}
.y7f{bottom:348.779663px;}
.y11{bottom:352.651332px;}
.y124{bottom:354.262201px;}
.yf0{bottom:358.485353px;}
.y7e{bottom:370.516118px;}
.y38{bottom:375.781313px;}
.y123{bottom:375.997551px;}
.yef{bottom:378.626948px;}
.ye{bottom:382.897335px;}
.y10{bottom:385.147335px;}
.y7d{bottom:392.252198px;}
.y122{bottom:397.734368px;}
.yee{bottom:398.768558px;}
.y37{bottom:409.517393px;}
.y7c{bottom:413.988278px;}
.yed{bottom:418.910153px;}
.y121{bottom:431.469721px;}
.y7b{bottom:435.724361px;}
.yec{bottom:439.051763px;}
.y36{bottom:443.253668px;}
.y120{bottom:453.205073px;}
.y7a{bottom:457.460446px;}
.yeb{bottom:459.193358px;}
.y35{bottom:476.989752px;}
.y79{bottom:479.196530px;}
.yea{bottom:479.334953px;}
.y11f{bottom:486.943360px;}
.y34{bottom:498.725835px;}
.ye9{bottom:499.476563px;}
.y78{bottom:500.932613px;}
.y11e{bottom:508.678711px;}
.ye8{bottom:519.618158px;}
.y33{bottom:520.462103px;}
.y11d{bottom:530.414063px;}
.y77{bottom:534.668706px;}
.ye7{bottom:539.759768px;}
.y32{bottom:554.198183px;}
.y76{bottom:556.405523px;}
.ye6{bottom:559.901363px;}
.y11c{bottom:564.149406px;}
.y75{bottom:578.141228px;}
.ye5{bottom:580.042973px;}
.yc{bottom:580.522334px;}
.y11b{bottom:585.886223px;}
.y31{bottom:587.934263px;}
.y74{bottom:599.876946px;}
.ye4{bottom:600.184568px;}
.y11a{bottom:619.623053px;}
.ye3{bottom:620.326178px;}
.y73{bottom:621.613763px;}
.y30{bottom:621.670538px;}
.ya2{bottom:639.973381px;}
.y119{bottom:643.959961px;}
.y2f{bottom:653.812133px;}
.ye2{bottom:654.062258px;}
.y72{bottom:655.349851px;}
.ya1{bottom:661.709472px;}
.y71{bottom:677.085942px;}
.ya0{bottom:683.445563px;}
.y2e{bottom:687.548213px;}
.ye1{bottom:687.799066px;}
.y118{bottom:690.975578px;}
.y70{bottom:698.822033px;}
.y9f{bottom:705.181632px;}
.y2d{bottom:707.689823px;}
.ye0{bottom:709.534418px;}
.y117{bottom:709.861460px;}
.y6f{bottom:720.558102px;}
.yc9{bottom:723.917727px;}
.y9e{bottom:726.918462px;}
.y2c{bottom:727.831418px;}
.y6e{bottom:742.294194px;}
.ydf{bottom:744.310543px;}
.yc8{bottom:745.653818px;}
.y2b{bottom:747.973028px;}
.y9d{bottom:748.653813px;}
.y110{bottom:758.128419px;}
.y6d{bottom:764.030283px;}
.yc7{bottom:767.390629px;}
.y2a{bottom:768.114623px;}
.yde{bottom:768.959468px;}
.y9c{bottom:770.390624px;}
.y6c{bottom:785.766364px;}
.yc6{bottom:789.125979px;}
.y9b{bottom:792.125975px;}
.ydd{bottom:793.294921px;}
.yb{bottom:795.261889px;}
.y29{bottom:800.256218px;}
.y6b{bottom:807.502814px;}
.yc5{bottom:810.862789px;}
.y115{bottom:813.209473px;}
.y9a{bottom:813.862057px;}
.y10f{bottom:816.865723px;}
.y6a{bottom:829.238527px;}
.y28{bottom:832.397828px;}
.yc4{bottom:832.598879px;}
.ya{bottom:834.093788px;}
.y99{bottom:835.598876px;}
.ydc{bottom:839.091799px;}
.y109{bottom:848.071292px;}
.y69{bottom:850.975346px;}
.y27{bottom:852.539431px;}
.y58{bottom:853.905398px;}
.yc3{bottom:854.334961px;}
.y98{bottom:857.334961px;}
.ydb{bottom:860.689456px;}
.y48{bottom:861.423158px;}
.y10d{bottom:867.648929px;}
.y9{bottom:869.662026px;}
.y26{bottom:872.681033px;}
.y68{bottom:872.711062px;}
.y57{bottom:874.046993px;}
.yc2{bottom:876.070312px;}
.y97{bottom:879.071045px;}
.yda{bottom:880.831058px;}
.y47{bottom:881.564949px;}
.y56{bottom:894.188963px;}
.y67{bottom:894.447515px;}
.yc1{bottom:897.807131px;}
.y96{bottom:900.807128px;}
.y25{bottom:904.822628px;}
.y46{bottom:906.206544px;}
.y108{bottom:911.157509px;}
.yd9{bottom:912.606450px;}
.y107{bottom:912.639930px;}
.y55{bottom:914.330198px;}
.y66{bottom:916.183598px;}
.y8{bottom:917.230251px;}
.yc0{bottom:919.543946px;}
.y45{bottom:930.847959px;}
.y54{bottom:934.471808px;}
.y95{bottom:934.543207px;}
.y24{bottom:936.964238px;}
.y106{bottom:937.541011px;}
.ybf{bottom:941.279300px;}
.y65{bottom:949.919671px;}
.y53{bottom:954.613769px;}
.yd8{bottom:955.255365px;}
.y44{bottom:955.489749px;}
.y94{bottom:956.279297px;}
.y105{bottom:959.276363px;}
.y7{bottom:962.718655px;}
.ybe{bottom:963.015383px;}
.y23{bottom:969.105833px;}
.y64{bottom:971.655755px;}
.y52{bottom:974.755004px;}
.yd7{bottom:976.990722px;}
.y93{bottom:978.015379px;}
.y43{bottom:980.131344px;}
.y63{bottom:993.391838px;}
.y104{bottom:994.051756px;}
.y51{bottom:994.896609px;}
.ybd{bottom:996.752198px;}
.yaf{bottom:998.727533px;}
.yd6{bottom:998.727539px;}
.y92{bottom:999.751468px;}
.y22{bottom:1001.247436px;}
.y6{bottom:1002.382852px;}
.y42{bottom:1004.772767px;}
.y50{bottom:1015.038573px;}
.ybc{bottom:1018.487549px;}
.y103{bottom:1018.700683px;}
.yae{bottom:1020.464356px;}
.y91{bottom:1021.488288px;}
.y1{bottom:1022.767617px;}
.y62{bottom:1024.647949px;}
.y41{bottom:1029.414552px;}
.y21{bottom:1033.389038px;}
.y4f{bottom:1035.179809px;}
.y102{bottom:1038.842285px;}
.ybb{bottom:1040.223634px;}
.yad{bottom:1042.199706px;}
.y90{bottom:1043.223634px;}
.y40{bottom:1054.056152px;}
.yd5{bottom:1054.199706px;}
.y4e{bottom:1055.321411px;}
.y101{bottom:1058.982422px;}
.yba{bottom:1061.960449px;}
.yac{bottom:1063.936523px;}
.y8f{bottom:1064.960449px;}
.y20{bottom:1065.530640px;}
.y61{bottom:1066.880129px;}
.y4d{bottom:1075.463378px;}
.yd4{bottom:1075.936522px;}
.y100{bottom:1079.125489px;}
.yb9{bottom:1083.695801px;}
.y1f{bottom:1085.672242px;}
.y8e{bottom:1086.695801px;}
.y3f{bottom:1087.792054px;}
.yab{bottom:1097.671874px;}
.yd3{bottom:1097.672606px;}
.yff{bottom:1099.267090px;}
.y3e{bottom:1112.128234px;}
.y4c{bottom:1112.128417px;}
.yb8{bottom:1117.951904px;}
.y8d{bottom:1117.952636px;}
.yfe{bottom:1119.407227px;}
.yd2{bottom:1119.407959px;}
.y1e{bottom:1119.408325px;}
.yaa{bottom:1119.408691px;}
.yfc{bottom:1135.423829px;}
.yb5{bottom:1135.424561px;}
.y1b{bottom:1135.424927px;}
.y3b{bottom:1135.425109px;}
.y49{bottom:1135.425293px;}
.y3{bottom:1166.595554px;}
.h3{height:20.141602px;}
.he{height:20.141693px;}
.h21{height:30.080567px;}
.h23{height:33.736817px;}
.h17{height:35.964000px;}
.hb{height:40.913087px;}
.h16{height:43.066405px;}
.h10{height:43.989259px;}
.hc{height:45.890626px;}
.h2{height:47.373048px;}
.h1c{height:47.988281px;}
.h19{height:49.218750px;}
.h1f{height:49.500001px;}
.h20{height:49.658204px;}
.h18{height:53.320315px;}
.h4{height:58.406248px;}
.h13{height:65.625002px;}
.h6{height:73.828125px;}
.h5{height:82.031248px;}
.ha{height:86.132810px;}
.h22{height:88.817871px;}
.h14{height:127.199700px;}
.h11{height:127.199895px;}
.hd{height:127.200075px;}
.h1a{height:127.200435px;}
.h1d{height:127.201170px;}
.h15{height:127.574707px;}
.h12{height:127.574891px;}
.hf{height:127.575073px;}
.h1b{height:127.575439px;}
.h1e{height:127.576171px;}
.h9{height:194.250000px;}
.h7{height:195.375046px;}
.h8{height:196.500000px;}
.h1{height:240.232383px;}
.h0{height:1263.000000px;}
.w6{width:49.500000px;}
.w9{width:97.874954px;}
.w5{width:123.750023px;}
.w7{width:201.375000px;}
.w8{width:238.499954px;}
.w2{width:240.750000px;}
.w4{width:273.374955px;}
.w3{width:273.375000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:85.049996px;}
.x13{left:86.174995px;}
.xd{left:112.049996px;}
.x3{left:120.375000px;}
.xe{left:139.049996px;}
.x5{left:172.800007px;}
.x14{left:211.050018px;}
.xb{left:259.424996px;}
.x15{left:261.675015px;}
.x6{left:267.750000px;}
.x8{left:270.000000px;}
.x2{left:317.925015px;}
.xa{left:384.689358px;}
.x9{left:432.674996px;}
.x7{left:447.300015px;}
.x16{left:464.175015px;}
.x4{left:558.674996px;}
.x17{left:703.799970px;}
.x11{left:729.956662px;}
.xf{left:749.081662px;}
.x12{left:791.149687px;}
.xc{left:799.506502px;}
.x10{left:812.924996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.ls1{letter-spacing:78.364584pt;}
.ls3{letter-spacing:175.700521pt;}
.ws4{word-spacing:-29.333334pt;}
.ws2{word-spacing:-13.263021pt;}
.ws3{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-6.676841pt;}
._e{margin-left:-5.336945pt;}
._1a{margin-left:-3.992412pt;}
._8{margin-left:-3.102743pt;}
._0{margin-left:-1.607544pt;}
._d{width:0.916767pt;}
._7{width:2.037598pt;}
._f{width:3.834813pt;}
._10{width:4.736231pt;}
._12{width:6.634464pt;}
._14{width:7.612838pt;}
._13{width:8.624236pt;}
._c{width:11.389575pt;}
._6{width:12.442028pt;}
._5{width:15.942198pt;}
._21{width:16.868658pt;}
._b{width:19.555961pt;}
._19{width:20.699707pt;}
._18{width:23.665850pt;}
._20{width:24.740639pt;}
._1f{width:27.391885pt;}
._1e{width:28.526508pt;}
._23{width:31.519168pt;}
._22{width:32.690301pt;}
._1d{width:43.955872pt;}
._1b{width:47.376561pt;}
._1c{width:48.821811pt;}
._3{width:52.421808pt;}
._1{width:55.478865pt;}
._2{width:56.515676pt;}
._17{width:83.172796pt;}
._15{width:87.108840pt;}
._16{width:88.741619pt;}
._9{width:671.104921pt;}
._4{width:911.896308pt;}
._a{width:931.619961pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666668pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs6{font-size:64.000000pt;}
.fs9{font-size:69.333336pt;}
.fs1{font-size:74.666664pt;}
.fs8{font-size:85.333336pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.666666pt;}
.y19{bottom:3.666748pt;}
.y10c{bottom:9.619370pt;}
.y10b{bottom:9.620664pt;}
.y114{bottom:9.620670pt;}
.y10e{bottom:9.621973pt;}
.yf{bottom:11.666667pt;}
.yd{bottom:11.666708pt;}
.y5{bottom:15.750701pt;}
.y116{bottom:15.751302pt;}
.y10a{bottom:27.024317pt;}
.y113{bottom:27.025617pt;}
.y4b{bottom:34.058919pt;}
.y3d{bottom:34.059082pt;}
.y60{bottom:34.059244pt;}
.y1d{bottom:34.059407pt;}
.yb7{bottom:34.059895pt;}
.y112{bottom:44.427963pt;}
.y5e{bottom:50.533207pt;}
.y1a{bottom:50.533367pt;}
.y3a{bottom:50.533527pt;}
.yfb{bottom:50.533847pt;}
.y86{bottom:51.962239pt;}
.y5f{bottom:51.962566pt;}
.yb6{bottom:51.962890pt;}
.y4a{bottom:51.962891pt;}
.y3c{bottom:51.963054pt;}
.y1c{bottom:51.963135pt;}
.yfd{bottom:51.963540pt;}
.y111{bottom:61.832910pt;}
.y18{bottom:66.866619pt;}
.y17{bottom:91.122474pt;}
.y16{bottom:118.017740pt;}
.ya9{bottom:120.124349pt;}
.yd1{bottom:120.177730pt;}
.y12c{bottom:135.449000pt;}
.yb4{bottom:136.658847pt;}
.ya8{bottom:139.445312pt;}
.yd0{bottom:139.498044pt;}
.yfa{bottom:139.617180pt;}
.y8c{bottom:144.994795pt;}
.y15{bottom:147.312173pt;}
.y2{bottom:152.102914pt;}
.yf9{bottom:157.520834pt;}
.ya7{bottom:158.766927pt;}
.ycf{bottom:158.819007pt;}
.y12b{bottom:161.376300pt;}
.y8b{bottom:164.315756pt;}
.yb3{bottom:166.184893pt;}
.y14{bottom:174.665201pt;}
.yf8{bottom:175.424474pt;}
.y12a{bottom:181.966141pt;}
.y5d{bottom:182.689240pt;}
.y8a{bottom:183.636721pt;}
.yb2{bottom:183.749346pt;}
.ya6{bottom:188.291666pt;}
.yce{bottom:188.345053pt;}
.y13{bottom:191.351480pt;}
.yf7{bottom:193.328127pt;}
.y85{bottom:194.100582pt;}
.y5c{bottom:196.199218pt;}
.yb1{bottom:201.313799pt;}
.y129{bottom:202.554687pt;}
.y89{bottom:202.958334pt;}
.ya5{bottom:205.856121pt;}
.ycd{bottom:205.909506pt;}
.yf6{bottom:211.231767pt;}
.y5b{bottom:212.474935pt;}
.y84{bottom:213.421221pt;}
.y88{bottom:222.278647pt;}
.y128{bottom:223.143226pt;}
.ya4{bottom:223.421225pt;}
.ycc{bottom:223.473959pt;}
.y12{bottom:223.557453pt;}
.y5a{bottom:228.750652pt;}
.yf5{bottom:229.135420pt;}
.yb0{bottom:230.007160pt;}
.y83{bottom:232.742180pt;}
.ycb{bottom:241.038412pt;}
.y127{bottom:243.733073pt;}
.y59{bottom:245.360680pt;}
.yf4{bottom:247.039060pt;}
.y82{bottom:252.063476pt;}
.ya3{bottom:252.114587pt;}
.y87{bottom:252.266927pt;}
.y126{bottom:264.322919pt;}
.yf3{bottom:264.942714pt;}
.yca{bottom:269.731773pt;}
.y81{bottom:271.384113pt;}
.yf2{bottom:282.846354pt;}
.y125{bottom:284.911460pt;}
.y80{bottom:290.705728pt;}
.yf1{bottom:300.749994pt;}
.y39{bottom:304.040207pt;}
.y7f{bottom:310.026367pt;}
.y11{bottom:313.467851pt;}
.y124{bottom:314.899735pt;}
.yf0{bottom:318.653647pt;}
.y7e{bottom:329.347661pt;}
.y38{bottom:334.027834pt;}
.y123{bottom:334.220046pt;}
.yef{bottom:336.557287pt;}
.ye{bottom:340.353187pt;}
.y10{bottom:342.353187pt;}
.y7d{bottom:348.668621pt;}
.y122{bottom:353.541661pt;}
.yee{bottom:354.460940pt;}
.y37{bottom:364.015460pt;}
.y7c{bottom:367.989581pt;}
.yed{bottom:372.364580pt;}
.y121{bottom:383.528641pt;}
.y7b{bottom:387.310543pt;}
.yec{bottom:390.268234pt;}
.y36{bottom:394.003261pt;}
.y120{bottom:402.848954pt;}
.y7a{bottom:406.631508pt;}
.yeb{bottom:408.171874pt;}
.y35{bottom:423.990890pt;}
.y79{bottom:425.952471pt;}
.yea{bottom:426.075514pt;}
.y11f{bottom:432.838542pt;}
.y34{bottom:443.311853pt;}
.ye9{bottom:443.979167pt;}
.y78{bottom:445.273434pt;}
.y11e{bottom:452.158854pt;}
.ye8{bottom:461.882807pt;}
.y33{bottom:462.632980pt;}
.y11d{bottom:471.479167pt;}
.y77{bottom:475.261072pt;}
.ye7{bottom:479.786460pt;}
.y32{bottom:492.620607pt;}
.y76{bottom:494.582687pt;}
.ye6{bottom:497.690100pt;}
.y11c{bottom:501.466139pt;}
.y75{bottom:513.903314pt;}
.ye5{bottom:515.593754pt;}
.yc{bottom:516.019852pt;}
.y11b{bottom:520.787754pt;}
.y31{bottom:522.608234pt;}
.y74{bottom:533.223952pt;}
.ye4{bottom:533.497394pt;}
.y11a{bottom:550.776047pt;}
.ye3{bottom:551.401047pt;}
.y73{bottom:552.545567pt;}
.y30{bottom:552.596034pt;}
.ya2{bottom:568.865227pt;}
.y119{bottom:572.408854pt;}
.y2f{bottom:581.166341pt;}
.ye2{bottom:581.388674pt;}
.y72{bottom:582.533200pt;}
.ya1{bottom:588.186197pt;}
.y71{bottom:601.854170pt;}
.ya0{bottom:607.507167pt;}
.y2e{bottom:611.153967pt;}
.ye1{bottom:611.376948pt;}
.y118{bottom:614.200514pt;}
.y70{bottom:621.175140pt;}
.y9f{bottom:626.828117pt;}
.y2d{bottom:629.057620pt;}
.ye0{bottom:630.697261pt;}
.y117{bottom:630.987964pt;}
.y6f{bottom:640.496090pt;}
.yc9{bottom:643.482424pt;}
.y9e{bottom:646.149744pt;}
.y2c{bottom:646.961260pt;}
.y6e{bottom:659.817061pt;}
.ydf{bottom:661.609372pt;}
.yc8{bottom:662.803394pt;}
.y2b{bottom:664.864914pt;}
.y9d{bottom:665.470056pt;}
.y110{bottom:673.891928pt;}
.y6d{bottom:679.138030pt;}
.yc7{bottom:682.125004pt;}
.y2a{bottom:682.768554pt;}
.yde{bottom:683.519527pt;}
.y9c{bottom:684.791666pt;}
.y6c{bottom:698.458990pt;}
.yc6{bottom:701.445315pt;}
.y9b{bottom:704.111978pt;}
.ydd{bottom:705.151041pt;}
.yb{bottom:706.899457pt;}
.y29{bottom:711.338861pt;}
.y6b{bottom:717.780279pt;}
.yc5{bottom:720.766924pt;}
.y115{bottom:722.852865pt;}
.y9a{bottom:723.432939pt;}
.y10f{bottom:726.102865pt;}
.y6a{bottom:737.100912pt;}
.y28{bottom:739.909180pt;}
.yc4{bottom:740.087893pt;}
.ya{bottom:741.416701pt;}
.y99{bottom:742.754556pt;}
.ydc{bottom:745.859377pt;}
.y109{bottom:753.841148pt;}
.y69{bottom:756.422529pt;}
.y27{bottom:757.812828pt;}
.y58{bottom:759.027020pt;}
.yc3{bottom:759.408854pt;}
.y98{bottom:762.075521pt;}
.ydb{bottom:765.057295pt;}
.y48{bottom:765.709474pt;}
.y10d{bottom:771.243492pt;}
.y9{bottom:773.032912pt;}
.y26{bottom:775.716474pt;}
.y68{bottom:775.743166pt;}
.y57{bottom:776.930661pt;}
.yc2{bottom:778.729166pt;}
.y97{bottom:781.396484pt;}
.yda{bottom:782.960940pt;}
.y47{bottom:783.613288pt;}
.y56{bottom:794.834634pt;}
.y67{bottom:795.064457pt;}
.yc1{bottom:798.050783pt;}
.y96{bottom:800.717447pt;}
.y25{bottom:804.286780pt;}
.y46{bottom:805.516928pt;}
.y108{bottom:809.917786pt;}
.yd9{bottom:811.205733pt;}
.y107{bottom:811.235494pt;}
.y55{bottom:812.737954pt;}
.y66{bottom:814.385420pt;}
.y8{bottom:815.315778pt;}
.yc0{bottom:817.372397pt;}
.y45{bottom:827.420408pt;}
.y54{bottom:830.641607pt;}
.y95{bottom:830.705073pt;}
.y24{bottom:832.857100pt;}
.y106{bottom:833.369787pt;}
.ybf{bottom:836.692711pt;}
.y65{bottom:844.373041pt;}
.y53{bottom:848.545572pt;}
.yd8{bottom:849.115880pt;}
.y44{bottom:849.324222pt;}
.y94{bottom:850.026042pt;}
.y105{bottom:852.690100pt;}
.y7{bottom:855.749916pt;}
.ybe{bottom:856.013674pt;}
.y23{bottom:861.427407pt;}
.y64{bottom:863.694004pt;}
.y52{bottom:866.448892pt;}
.yd7{bottom:868.436197pt;}
.y93{bottom:869.347003pt;}
.y43{bottom:871.227861pt;}
.y63{bottom:883.014967pt;}
.y104{bottom:883.601561pt;}
.y51{bottom:884.352541pt;}
.ybd{bottom:886.001953pt;}
.yaf{bottom:887.757807pt;}
.yd6{bottom:887.757812pt;}
.y92{bottom:888.667971pt;}
.y22{bottom:889.997721pt;}
.y6{bottom:891.006980pt;}
.y42{bottom:893.131348pt;}
.y50{bottom:902.256509pt;}
.ybc{bottom:905.322265pt;}
.y103{bottom:905.511718pt;}
.yae{bottom:907.079428pt;}
.y91{bottom:907.989589pt;}
.y1{bottom:909.126771pt;}
.y62{bottom:910.798177pt;}
.y41{bottom:915.035157pt;}
.y21{bottom:918.568034pt;}
.y4f{bottom:920.159830pt;}
.y102{bottom:923.415365pt;}
.ybb{bottom:924.643230pt;}
.yad{bottom:926.399739pt;}
.y90{bottom:927.309897pt;}
.y40{bottom:936.938802pt;}
.yd5{bottom:937.066406pt;}
.y4e{bottom:938.063476pt;}
.y101{bottom:941.317708pt;}
.yba{bottom:943.964843pt;}
.yac{bottom:945.721354pt;}
.y8f{bottom:946.631510pt;}
.y20{bottom:947.138347pt;}
.y61{bottom:948.337892pt;}
.y4d{bottom:955.967447pt;}
.yd4{bottom:956.388020pt;}
.y100{bottom:959.222656pt;}
.yb9{bottom:963.285157pt;}
.y1f{bottom:965.041993pt;}
.y8e{bottom:965.951823pt;}
.y3f{bottom:966.926270pt;}
.yab{bottom:975.708332pt;}
.yd3{bottom:975.708983pt;}
.yff{bottom:977.126302pt;}
.y3e{bottom:988.558430pt;}
.y4c{bottom:988.558593pt;}
.yb8{bottom:993.735026pt;}
.y8d{bottom:993.735677pt;}
.yfe{bottom:995.028646pt;}
.yd2{bottom:995.029297pt;}
.y1e{bottom:995.029622pt;}
.yaa{bottom:995.029947pt;}
.yfc{bottom:1009.265625pt;}
.yb5{bottom:1009.266276pt;}
.y1b{bottom:1009.266601pt;}
.y3b{bottom:1009.266764pt;}
.y49{bottom:1009.266927pt;}
.y3{bottom:1036.973826pt;}
.h3{height:17.903646pt;}
.he{height:17.903727pt;}
.h21{height:26.738281pt;}
.h23{height:29.988281pt;}
.h17{height:31.968000pt;}
.hb{height:36.367188pt;}
.h16{height:38.281249pt;}
.h10{height:39.101563pt;}
.hc{height:40.791668pt;}
.h2{height:42.109376pt;}
.h1c{height:42.656250pt;}
.h19{height:43.750000pt;}
.h1f{height:44.000001pt;}
.h20{height:44.140625pt;}
.h18{height:47.395835pt;}
.h4{height:51.916665pt;}
.h13{height:58.333335pt;}
.h6{height:65.625000pt;}
.h5{height:72.916665pt;}
.ha{height:76.562498pt;}
.h22{height:78.949219pt;}
.h14{height:113.066400pt;}
.h11{height:113.066573pt;}
.hd{height:113.066733pt;}
.h1a{height:113.067053pt;}
.h1d{height:113.067707pt;}
.h15{height:113.399740pt;}
.h12{height:113.399903pt;}
.hf{height:113.400065pt;}
.h1b{height:113.400391pt;}
.h1e{height:113.401041pt;}
.h9{height:172.666667pt;}
.h7{height:173.666708pt;}
.h8{height:174.666667pt;}
.h1{height:213.539896pt;}
.h0{height:1122.666667pt;}
.w6{width:44.000000pt;}
.w9{width:86.999959pt;}
.w5{width:110.000020pt;}
.w7{width:179.000000pt;}
.w8{width:211.999959pt;}
.w2{width:214.000000pt;}
.w4{width:242.999960pt;}
.w3{width:243.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.599996pt;}
.x13{left:76.599996pt;}
.xd{left:99.599996pt;}
.x3{left:107.000000pt;}
.xe{left:123.599996pt;}
.x5{left:153.600007pt;}
.x14{left:187.600016pt;}
.xb{left:230.599996pt;}
.x15{left:232.600013pt;}
.x6{left:238.000000pt;}
.x8{left:240.000000pt;}
.x2{left:282.600013pt;}
.xa{left:341.946096pt;}
.x9{left:384.599996pt;}
.x7{left:397.600013pt;}
.x16{left:412.600013pt;}
.x4{left:496.599996pt;}
.x17{left:625.599973pt;}
.x11{left:648.850366pt;}
.xf{left:665.850366pt;}
.x12{left:703.244166pt;}
.xc{left:710.672446pt;}
.x10{left:722.599996pt;}
}




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