
    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_0899b355192dd14bcc92f342.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_20102df3c9f23df23818dc22.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e5711d61f3727a2f60de9abd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7ab4338a2c94456b5db70524.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007000;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_6445482af03f265fad021808.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_d1c29721bc5da1f47b44bf44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_7afeba7a8b6754fd978b7f46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931641;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_ac8384d0d50601478cdb1186.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_9362d693cc676eb96ba33d51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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_836bdd995b09a8265ea1609c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.676270;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_21b8f89eb7b99936286ba65e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.737305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23e32d6fd8f850482238c952.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734375;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_44e88453f4b1e2a17c75c26a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.909668;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;}
.ffe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:fff;src:url('chunks/assets/font_8041fb94ae0fcd7466e5e95b.woff2')format("woff");}.fff{font-family:fff;line-height:0.932129;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.m3{transform:matrix(0.230347,-0.097286,0.097320,0.230280,0,0);-ms-transform:matrix(0.230347,-0.097286,0.097320,0.230280,0,0);-webkit-transform:matrix(0.230347,-0.097286,0.097320,0.230280,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);}
.m2{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-57.364199px;}
.v4{vertical-align:-10.476000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.109600px;}
.v3{vertical-align:8.194500px;}
.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;}
}
.ws1{word-spacing:-54.288000px;}
.ws2{word-spacing:-33.930000px;}
.ws5{word-spacing:-31.192200px;}
.ws8{word-spacing:-22.630311px;}
.ws3{word-spacing:-22.498661px;}
.ws4{word-spacing:-22.287831px;}
.wsf{word-spacing:-20.947500px;}
.wsb{word-spacing:-20.429626px;}
.wsc{word-spacing:-15.318414px;}
.wsd{word-spacing:-10.257264px;}
.ws9{word-spacing:-3.481538px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:6.072165px;}
.ws7{word-spacing:11.058528px;}
.wsa{word-spacing:27.187858px;}
.wse{word-spacing:202.544430px;}
.ws10{word-spacing:247.886644px;}
.ws11{word-spacing:1132.776738px;}
._f{margin-left:-1370.794667px;}
._c{margin-left:-1161.742532px;}
._d{margin-left:-254.367334px;}
._e{margin-left:-233.710186px;}
._13{margin-left:-14.640221px;}
._3{margin-left:-8.854268px;}
._11{margin-left:-6.525000px;}
._14{margin-left:-5.220000px;}
._0{margin-left:-4.194374px;}
._1{margin-left:-2.889949px;}
._2{margin-left:-1.450335px;}
._4{width:2.610000px;}
._b{width:3.722051px;}
._6{width:5.021054px;}
._9{width:6.143036px;}
._8{width:7.538338px;}
._a{width:10.028757px;}
._7{width:41.557349px;}
._5{width:44.678449px;}
._10{width:89.145837px;}
._12{width:369.747903px;}
.fc8{color:rgb(234,157,52);}
.fca{color:rgb(247,247,247);}
.fc7{color:rgb(40,105,131);}
.fc6{color:rgb(107,107,107);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(180,99,122);}
.fc9{color:rgb(0,255,0);}
.fc3{color:rgb(68,136,204);}
.fc2{color:rgb(121,117,147);}
.fcb{color:transparent;}
.fc1{color:rgb(87,82,121);}
.fc0{color:rgb(215,130,126);}
.fsc{font-size:41.029056px;}
.fse{font-size:42.075000px;}
.fs9{font-size:61.273656px;}
.fsa{font-size:61.277583px;}
.fsd{font-size:62.820001px;}
.fsb{font-size:65.682481px;}
.fs7{font-size:82.610749px;}
.fsf{font-size:83.790001px;}
.fs6{font-size:90.521245px;}
.fs8{font-size:101.970001px;}
.fs5{font-size:110.925001px;}
.fs1{font-size:119.970001px;}
.fs3{font-size:130.500001px;}
.fs2{font-size:143.550001px;}
.fs4{font-size:169.650001px;}
.fs0{font-size:208.800002px;}
.y0{bottom:0.000000px;}
.y56{bottom:9.000001px;}
.y7e{bottom:9.000002px;}
.y50{bottom:9.000004px;}
.yb1{bottom:20.064900px;}
.y62{bottom:40.500001px;}
.y73{bottom:40.500003px;}
.y67{bottom:46.681254px;}
.yea{bottom:58.703986px;}
.ye0{bottom:59.957536px;}
.yb0{bottom:62.192761px;}
.yd4{bottom:71.708611px;}
.y61{bottom:72.000002px;}
.y7d{bottom:73.125003px;}
.yde{bottom:75.803911px;}
.y10b{bottom:77.625001px;}
.ye9{bottom:78.356611px;}
.ydf{bottom:79.610162px;}
.y55{bottom:86.625000px;}
.y60{bottom:104.625002px;}
.y7c{bottom:104.625003px;}
.yd0{bottom:108.017640px;}
.yc1{bottom:110.747101px;}
.yed{bottom:115.555412px;}
.y58{bottom:115.875000px;}
.y8c{bottom:118.125001px;}
.y100{bottom:121.500001px;}
.yf3{bottom:123.668912px;}
.yaf{bottom:126.525601px;}
.y40{bottom:133.875001px;}
.y5f{bottom:136.125002px;}
.y38{bottom:138.375001px;}
.y76{bottom:141.750000px;}
.y29{bottom:142.875001px;}
.ye8{bottom:150.320537px;}
.ydd{bottom:150.631487px;}
.y6f{bottom:151.875001px;}
.yae{bottom:157.367227px;}
.y66{bottom:157.945078px;}
.y68{bottom:160.020460px;}
.ybc{bottom:165.137101px;}
.yd2{bottom:165.203612px;}
.y45{bottom:165.375001px;}
.y8b{bottom:166.500001px;}
.yd3{bottom:167.303462px;}
.y54{bottom:167.625001px;}
.y4c{bottom:168.750151px;}
.ye7{bottom:169.973162px;}
.ydc{bottom:170.284112px;}
.yff{bottom:171.000001px;}
.ybb{bottom:173.845051px;}
.y98{bottom:177.749776px;}
.y83{bottom:184.500001px;}
.y7f{bottom:185.625001px;}
.y63{bottom:190.125000px;}
.y28{bottom:191.250002px;}
.y37{bottom:195.750002px;}
.y3f{bottom:196.875002px;}
.y2c{bottom:199.125002px;}
.y106{bottom:200.249777px;}
.y5e{bottom:200.250003px;}
.ya8{bottom:205.048586px;}
.ycf{bottom:205.875002px;}
.y69{bottom:208.782376px;}
.y64{bottom:209.779053px;}
.yb{bottom:212.625002px;}
.yf2{bottom:212.725038px;}
.yba{bottom:213.303982px;}
.yec{bottom:213.306663px;}
.yee{bottom:215.827788px;}
.y6e{bottom:216.000002px;}
.y4b{bottom:219.375002px;}
.y97{bottom:222.749777px;}
.y44{bottom:222.750002px;}
.y21{bottom:223.875002px;}
.ya7{bottom:224.203352px;}
.y5{bottom:225.000002px;}
.yfe{bottom:228.375002px;}
.y82{bottom:229.500002px;}
.y53{bottom:230.625002px;}
.y5d{bottom:231.750003px;}
.y11{bottom:232.875002px;}
.yb9{bottom:233.847752px;}
.y36{bottom:244.125002px;}
.y105{bottom:245.249777px;}
.y3e{bottom:246.375002px;}
.ydb{bottom:248.487738px;}
.y1b{bottom:248.625002px;}
.ye4{bottom:248.806788px;}
.yce{bottom:250.875002px;}
.y75{bottom:255.375002px;}
.ye6{bottom:255.745188px;}
.yc3{bottom:255.849902px;}
.y7b{bottom:256.500000px;}
.y16{bottom:258.750002px;}
.y5c{bottom:263.250003px;}
.yca{bottom:263.927336px;}
.yd5{bottom:265.126863px;}
.yc0{bottom:265.526636px;}
.y96{bottom:267.749777px;}
.yda{bottom:268.140363px;}
.ye3{bottom:268.459413px;}
.ya{bottom:270.000002px;}
.yad{bottom:270.869702px;}
.y20{bottom:273.375002px;}
.ye5{bottom:275.397813px;}
.yb7{bottom:275.530952px;}
.yfd{bottom:276.750002px;}
.y4a{bottom:276.750152px;}
.y10{bottom:277.875002px;}
.y2f{bottom:280.125002px;}
.yc9{bottom:283.082102px;}
.ybf{bottom:284.681402px;}
.yc2{bottom:286.710916px;}
.y52{bottom:288.000002px;}
.y104{bottom:290.249777px;}
.y4{bottom:295.875002px;}
.y27{bottom:297.000002px;}
.y81{bottom:300.375000px;}
.y74{bottom:300.375002px;}
.y35{bottom:301.500002px;}
.y10a{bottom:302.625002px;}
.yf4{bottom:303.090663px;}
.y3d{bottom:303.750002px;}
.y1a{bottom:306.000002px;}
.yf1{bottom:308.329788px;}
.yf0{bottom:309.639288px;}
.ya9{bottom:314.493144px;}
.ycd{bottom:317.250003px;}
.y8a{bottom:321.750003px;}
.yab{bottom:323.050986px;}
.y15{bottom:324.000003px;}
.yb5{bottom:325.754637px;}
.y9{bottom:327.375003px;}
.y1f{bottom:329.625003px;}
.ybe{bottom:331.525503px;}
.y95{bottom:331.875003px;}
.yc6{bottom:332.695913px;}
.y2e{bottom:333.000003px;}
.yfc{bottom:334.125003px;}
.ye2{bottom:334.409689px;}
.y43{bottom:337.500003px;}
.y65{bottom:337.848187px;}
.yd9{bottom:338.197489px;}
.yf{bottom:340.875003px;}
.yb4{bottom:344.909403px;}
.y51{bottom:345.375003px;}
.y109{bottom:347.625003px;}
.y34{bottom:349.875003px;}
.ya6{bottom:350.940987px;}
.y3c{bottom:352.125003px;}
.ye1{bottom:354.062314px;}
.y26{bottom:354.375003px;}
.y103{bottom:354.902403px;}
.yd8{bottom:357.850114px;}
.y5b{bottom:358.875004px;}
.yc5{bottom:359.260203px;}
.y19{bottom:362.250003px;}
.ya5{bottom:370.095753px;}
.y3{bottom:370.125003px;}
.y72{bottom:371.250000px;}
.y89{bottom:371.250003px;}
.yc8{bottom:376.840287px;}
.y94{bottom:376.875003px;}
.y1e{bottom:379.125003px;}
.yfb{bottom:382.500003px;}
.y8{bottom:383.625003px;}
.y49{bottom:384.750003px;}
.ye{bottom:385.875003px;}
.y6d{bottom:387.000003px;}
.yb8{bottom:388.139103px;}
.y14{bottom:389.250003px;}
.yc4{bottom:390.109841px;}
.y5a{bottom:391.500004px;}
.yef{bottom:393.456289px;}
.yeb{bottom:394.364164px;}
.yc7{bottom:395.995053px;}
.y84{bottom:399.375003px;}
.y25{bottom:403.875003px;}
.yaa{bottom:404.732324px;}
.y33{bottom:407.250003px;}
.y108{bottom:410.625003px;}
.y18{bottom:411.750003px;}
.yd7{bottom:412.570489px;}
.y3b{bottom:418.500003px;}
.y59{bottom:423.000004px;}
.ybd{bottom:423.940696px;}
.y88{bottom:427.500003px;}
.yd{bottom:430.875003px;}
.yfa{bottom:432.000003px;}
.yd6{bottom:432.223114px;}
.y7a{bottom:433.125003px;}
.y1d{bottom:436.500003px;}
.y93{bottom:439.875004px;}
.y48{bottom:442.125004px;}
.yb6{bottom:444.285004px;}
.y6c{bottom:444.375004px;}
.y99{bottom:447.750004px;}
.yb3{bottom:449.012038px;}
.y7{bottom:450.000004px;}
.y24{bottom:452.250004px;}
.y13{bottom:454.500004px;}
.y107{bottom:455.625004px;}
.y32{bottom:456.750004px;}
.y2b{bottom:460.125004px;}
.y102{bottom:462.375004px;}
.y3a{bottom:463.500004px;}
.yb2{bottom:468.166804px;}
.yf5{bottom:470.250004px;}
.y2{bottom:475.875004px;}
.y87{bottom:477.000004px;}
.y79{bottom:478.125004px;}
.ya3{bottom:479.639395px;}
.y4f{bottom:482.625000px;}
.y71{bottom:483.750004px;}
.y92{bottom:484.875004px;}
.yf9{bottom:489.375004px;}
.y47{bottom:490.500004px;}
.yf6{bottom:496.125004px;}
.y42{bottom:497.250004px;}
.y2d{bottom:500.625004px;}
.ya4{bottom:500.973829px;}
.y6b{bottom:510.750004px;}
.y8e{bottom:511.875004px;}
.ycc{bottom:515.250004px;}
.y77{bottom:518.625004px;}
.y12{bottom:519.750004px;}
.yd1{bottom:519.953765px;}
.y17{bottom:520.875004px;}
.y70{bottom:528.750004px;}
.yac{bottom:531.160504px;}
.ya1{bottom:532.798504px;}
.yc{bottom:535.500004px;}
.yf8{bottom:537.750004px;}
.y1{bottom:541.125004px;}
.y1c{bottom:544.500004px;}
.y6{bottom:555.750004px;}
.y90{bottom:556.875004px;}
.ya0{bottom:559.344605px;}
.y23{bottom:561.375004px;}
.y4e{bottom:563.625005px;}
.y31{bottom:565.875005px;}
.y101{bottom:568.125005px;}
.y2a{bottom:569.250005px;}
.y8d{bottom:577.125005px;}
.ycb{bottom:580.500005px;}
.y78{bottom:582.750005px;}
.y80{bottom:583.875005px;}
.y86{bottom:586.125005px;}
.ya2{bottom:586.169855px;}
.y91{bottom:590.625005px;}
.y46{bottom:599.625005px;}
.y41{bottom:603.000005px;}
.y6a{bottom:616.500005px;}
.y22{bottom:626.625005px;}
.y9d{bottom:628.354674px;}
.y30{bottom:631.125005px;}
.y39{bottom:634.500005px;}
.yf7{bottom:646.875005px;}
.y9c{bottom:647.509440px;}
.y85{bottom:651.375005px;}
.y57{bottom:660.375005px;}
.y8f{bottom:661.500005px;}
.y9b{bottom:666.664205px;}
.y4d{bottom:668.250005px;}
.y9f{bottom:695.929751px;}
.y9e{bottom:706.297956px;}
.y9a{bottom:745.599606px;}
.h16{height:28.467915px;}
.h1b{height:29.193640px;}
.h8{height:32.625000px;}
.h17{height:38.977604px;}
.h1c{height:39.971250px;}
.h11{height:42.514583px;}
.h13{height:43.142877px;}
.h14{height:43.145642px;}
.h19{height:43.587510px;}
.h1d{height:44.231661px;}
.h15{height:47.594141px;}
.hd{height:55.060387px;}
.h12{height:58.209974px;}
.h1e{height:58.996670px;}
.h1a{height:59.679000px;}
.hc{height:63.736150px;}
.he{height:64.125000px;}
.h1f{height:67.191170px;}
.h20{height:75.382120px;}
.h9{height:80.377296px;}
.h2{height:91.777051px;}
.h5{height:92.016991px;}
.h4{height:99.832501px;}
.h6{height:100.093501px;}
.h3{height:109.815751px;}
.hf{height:128.250000px;}
.h7{height:129.782251px;}
.h1{height:159.732001px;}
.hb{height:430.875000px;}
.ha{height:446.625000px;}
.h18{height:593.982360px;}
.h10{height:792.000000px;}
.h0{height:810.000000px;}
.w6{width:453.375000px;}
.w1{width:518.625000px;}
.w9{width:648.000000px;}
.w8{width:720.000000px;}
.wa{width:792.000000px;}
.w7{width:793.125000px;}
.w2{width:864.000000px;}
.w4{width:936.000000px;}
.w3{width:1008.000000px;}
.w5{width:1225.125000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x21{left:17.878356px;}
.x39{left:27.055656px;}
.x37{left:45.446406px;}
.x15{left:49.581156px;}
.x49{left:52.309500px;}
.x38{left:53.934531px;}
.x11{left:59.366182px;}
.xa{left:61.698999px;}
.x48{left:64.315501px;}
.x24{left:70.435657px;}
.x36{left:72.321682px;}
.x2b{left:74.026807px;}
.x12{left:84.010432px;}
.x1{left:88.312501px;}
.x10{left:93.362557px;}
.x23{left:97.317382px;}
.x1d{left:98.488957px;}
.x1c{left:103.375957px;}
.x6{left:108.000000px;}
.x29{left:111.538507px;}
.x5{left:117.668255px;}
.x2a{left:123.754882px;}
.x2d{left:137.677207px;}
.x8{left:143.642709px;}
.x2c{left:147.714307px;}
.x46{left:149.082301px;}
.x2{left:153.562501px;}
.x45{left:168.682051px;}
.x59{left:177.897751px;}
.x30{left:180.972157px;}
.x35{left:182.914808px;}
.x18{left:190.780508px;}
.x42{left:194.614952px;}
.x16{left:198.583358px;}
.x43{left:208.765202px;}
.x17{left:210.661508px;}
.xb{left:213.199501px;}
.x5c{left:233.556002px;}
.x22{left:236.616008px;}
.x44{left:238.248377px;}
.x47{left:241.201502px;}
.x53{left:243.962252px;}
.x13{left:247.651508px;}
.x58{left:254.510252px;}
.x26{left:256.635458px;}
.x1b{left:261.872333px;}
.x1e{left:263.500583px;}
.x25{left:264.732158px;}
.x14{left:272.337850px;}
.x9{left:282.270487px;}
.x1f{left:286.035458px;}
.x1a{left:290.137958px;}
.x19{left:303.174758px;}
.x5b{left:309.516002px;}
.x40{left:319.261803px;}
.x3d{left:320.431353px;}
.x27{left:322.106859px;}
.x28{left:327.222234px;}
.x41{left:333.218553px;}
.x33{left:354.682959px;}
.x34{left:366.706959px;}
.xc{left:372.855239px;}
.x20{left:375.894834px;}
.x3e{left:390.112353px;}
.x54{left:397.320003px;}
.x31{left:400.891659px;}
.x3b{left:417.518859px;}
.xd{left:420.808300px;}
.x4d{left:424.022028px;}
.x4c{left:429.013653px;}
.x3{left:432.000000px;}
.x5a{left:437.208003px;}
.x57{left:446.638879px;}
.x4a{left:475.870354px;}
.x3f{left:477.355954px;}
.x55{left:478.653004px;}
.x4b{left:490.020604px;}
.x3a{left:491.138410px;}
.x3c{left:502.651810px;}
.x4{left:504.000000px;}
.x51{left:505.795579px;}
.x56{left:507.280879px;}
.x50{left:509.293204px;}
.x52{left:576.316955px;}
.x2f{left:579.748661px;}
.x4f{left:581.377205px;}
.x2e{left:582.720161px;}
.x32{left:585.462611px;}
.x4e{left:597.057455px;}
.xe{left:720.000000px;}
.xf{left:756.000000px;}
.x7{left:960.750000px;}
@media print{
.v2{vertical-align:-50.990399pt;}
.v4{vertical-align:-9.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.875200pt;}
.v3{vertical-align:7.284000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-48.256000pt;}
.ws2{word-spacing:-30.160000pt;}
.ws5{word-spacing:-27.726400pt;}
.ws8{word-spacing:-20.115832pt;}
.ws3{word-spacing:-19.998810pt;}
.ws4{word-spacing:-19.811405pt;}
.wsf{word-spacing:-18.620000pt;}
.wsb{word-spacing:-18.159667pt;}
.wsc{word-spacing:-13.616368pt;}
.wsd{word-spacing:-9.117568pt;}
.ws9{word-spacing:-3.094700pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:5.397480pt;}
.ws7{word-spacing:9.829803pt;}
.wsa{word-spacing:24.166985pt;}
.wse{word-spacing:180.039494pt;}
.ws10{word-spacing:220.343683pt;}
.ws11{word-spacing:1006.912656pt;}
._f{margin-left:-1218.484149pt;}
._c{margin-left:-1032.660029pt;}
._d{margin-left:-226.104297pt;}
._e{margin-left:-207.742388pt;}
._13{margin-left:-13.013530pt;}
._3{margin-left:-7.870461pt;}
._11{margin-left:-5.800000pt;}
._14{margin-left:-4.640000pt;}
._0{margin-left:-3.728333pt;}
._1{margin-left:-2.568843pt;}
._2{margin-left:-1.289186pt;}
._4{width:2.320000pt;}
._b{width:3.308489pt;}
._6{width:4.463159pt;}
._9{width:5.460476pt;}
._8{width:6.700745pt;}
._a{width:8.914451pt;}
._7{width:36.939866pt;}
._5{width:39.714177pt;}
._10{width:79.240744pt;}
._12{width:328.664803pt;}
.fsc{font-size:36.470272pt;}
.fse{font-size:37.400000pt;}
.fs9{font-size:54.465472pt;}
.fsa{font-size:54.468963pt;}
.fsd{font-size:55.840000pt;}
.fsb{font-size:58.384427pt;}
.fs7{font-size:73.431777pt;}
.fsf{font-size:74.480001pt;}
.fs6{font-size:80.463329pt;}
.fs8{font-size:90.640001pt;}
.fs5{font-size:98.600001pt;}
.fs1{font-size:106.640001pt;}
.fs3{font-size:116.000001pt;}
.fs2{font-size:127.600001pt;}
.fs4{font-size:150.800001pt;}
.fs0{font-size:185.600001pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:8.000001pt;}
.y7e{bottom:8.000002pt;}
.y50{bottom:8.000003pt;}
.yb1{bottom:17.835467pt;}
.y62{bottom:36.000001pt;}
.y73{bottom:36.000003pt;}
.y67{bottom:41.494448pt;}
.yea{bottom:52.181321pt;}
.ye0{bottom:53.295588pt;}
.yb0{bottom:55.282454pt;}
.yd4{bottom:63.740988pt;}
.y61{bottom:64.000001pt;}
.y7d{bottom:65.000002pt;}
.yde{bottom:67.381255pt;}
.y10b{bottom:69.000001pt;}
.ye9{bottom:69.650321pt;}
.ydf{bottom:70.764588pt;}
.y55{bottom:77.000000pt;}
.y60{bottom:93.000002pt;}
.y7c{bottom:93.000003pt;}
.yd0{bottom:96.015680pt;}
.yc1{bottom:98.441868pt;}
.yed{bottom:102.715922pt;}
.y58{bottom:103.000000pt;}
.y8c{bottom:105.000001pt;}
.y100{bottom:108.000001pt;}
.yf3{bottom:109.927922pt;}
.yaf{bottom:112.467201pt;}
.y40{bottom:119.000001pt;}
.y5f{bottom:121.000002pt;}
.y38{bottom:123.000001pt;}
.y76{bottom:126.000000pt;}
.y29{bottom:127.000001pt;}
.ye8{bottom:133.618255pt;}
.ydd{bottom:133.894655pt;}
.y6f{bottom:135.000001pt;}
.yae{bottom:139.881979pt;}
.y66{bottom:140.395625pt;}
.y68{bottom:142.240409pt;}
.ybc{bottom:146.788535pt;}
.yd2{bottom:146.847655pt;}
.y45{bottom:147.000001pt;}
.y8b{bottom:148.000001pt;}
.yd3{bottom:148.714189pt;}
.y54{bottom:149.000001pt;}
.y4c{bottom:150.000135pt;}
.ye7{bottom:151.087255pt;}
.ydc{bottom:151.363655pt;}
.yff{bottom:152.000001pt;}
.ybb{bottom:154.528935pt;}
.y98{bottom:157.999801pt;}
.y83{bottom:164.000001pt;}
.y7f{bottom:165.000001pt;}
.y63{bottom:169.000000pt;}
.y28{bottom:170.000001pt;}
.y37{bottom:174.000001pt;}
.y3f{bottom:175.000001pt;}
.y2c{bottom:177.000001pt;}
.y106{bottom:177.999801pt;}
.y5e{bottom:178.000002pt;}
.ya8{bottom:182.265410pt;}
.ycf{bottom:183.000001pt;}
.y69{bottom:185.584334pt;}
.y64{bottom:186.470270pt;}
.yb{bottom:189.000002pt;}
.yf2{bottom:189.088922pt;}
.yba{bottom:189.603539pt;}
.yec{bottom:189.605922pt;}
.yee{bottom:191.846922pt;}
.y6e{bottom:192.000002pt;}
.y4b{bottom:195.000002pt;}
.y97{bottom:197.999802pt;}
.y44{bottom:198.000002pt;}
.y21{bottom:199.000002pt;}
.ya7{bottom:199.291868pt;}
.y5{bottom:200.000002pt;}
.yfe{bottom:203.000002pt;}
.y82{bottom:204.000002pt;}
.y53{bottom:205.000002pt;}
.y5d{bottom:206.000002pt;}
.y11{bottom:207.000002pt;}
.yb9{bottom:207.864668pt;}
.y36{bottom:217.000002pt;}
.y105{bottom:217.999802pt;}
.y3e{bottom:219.000002pt;}
.ydb{bottom:220.877989pt;}
.y1b{bottom:221.000002pt;}
.ye4{bottom:221.161589pt;}
.yce{bottom:223.000002pt;}
.y75{bottom:227.000002pt;}
.ye6{bottom:227.329056pt;}
.yc3{bottom:227.422135pt;}
.y7b{bottom:228.000000pt;}
.y16{bottom:230.000002pt;}
.y5c{bottom:234.000003pt;}
.yca{bottom:234.602077pt;}
.yd5{bottom:235.668323pt;}
.yc0{bottom:236.023677pt;}
.y96{bottom:237.999802pt;}
.yda{bottom:238.346989pt;}
.ye3{bottom:238.630589pt;}
.ya{bottom:240.000002pt;}
.yad{bottom:240.773069pt;}
.y20{bottom:243.000002pt;}
.ye5{bottom:244.798056pt;}
.yb7{bottom:244.916402pt;}
.yfd{bottom:246.000002pt;}
.y4a{bottom:246.000135pt;}
.y10{bottom:247.000002pt;}
.y2f{bottom:249.000002pt;}
.yc9{bottom:251.628535pt;}
.ybf{bottom:253.050135pt;}
.yc2{bottom:254.854148pt;}
.y52{bottom:256.000002pt;}
.y104{bottom:257.999802pt;}
.y4{bottom:263.000002pt;}
.y27{bottom:264.000002pt;}
.y81{bottom:267.000000pt;}
.y74{bottom:267.000002pt;}
.y35{bottom:268.000002pt;}
.y10a{bottom:269.000002pt;}
.yf4{bottom:269.413923pt;}
.y3d{bottom:270.000002pt;}
.y1a{bottom:272.000002pt;}
.yf1{bottom:274.070923pt;}
.yf0{bottom:275.234923pt;}
.ya9{bottom:279.549461pt;}
.ycd{bottom:282.000002pt;}
.y8a{bottom:286.000002pt;}
.yab{bottom:287.156432pt;}
.y15{bottom:288.000002pt;}
.yb5{bottom:289.559677pt;}
.y9{bottom:291.000002pt;}
.y1f{bottom:293.000002pt;}
.ybe{bottom:294.689336pt;}
.y95{bottom:295.000002pt;}
.yc6{bottom:295.729701pt;}
.y2e{bottom:296.000002pt;}
.yfc{bottom:297.000002pt;}
.ye2{bottom:297.253056pt;}
.y43{bottom:300.000002pt;}
.y65{bottom:300.309499pt;}
.yd9{bottom:300.619990pt;}
.yf{bottom:303.000002pt;}
.yb4{bottom:306.586136pt;}
.y51{bottom:307.000002pt;}
.y109{bottom:309.000002pt;}
.y34{bottom:311.000002pt;}
.ya6{bottom:311.947544pt;}
.y3c{bottom:313.000003pt;}
.ye1{bottom:314.722057pt;}
.y26{bottom:315.000003pt;}
.y103{bottom:315.468803pt;}
.yd8{bottom:318.088990pt;}
.y5b{bottom:319.000003pt;}
.yc5{bottom:319.342403pt;}
.y19{bottom:322.000003pt;}
.ya5{bottom:328.974003pt;}
.y3{bottom:329.000003pt;}
.y72{bottom:330.000000pt;}
.y89{bottom:330.000003pt;}
.yc8{bottom:334.969144pt;}
.y94{bottom:335.000003pt;}
.y1e{bottom:337.000003pt;}
.yfb{bottom:340.000003pt;}
.y8{bottom:341.000003pt;}
.y49{bottom:342.000003pt;}
.ye{bottom:343.000003pt;}
.y6d{bottom:344.000003pt;}
.yb8{bottom:345.012536pt;}
.y14{bottom:346.000003pt;}
.yc4{bottom:346.764303pt;}
.y5a{bottom:348.000004pt;}
.yef{bottom:349.738924pt;}
.yeb{bottom:350.545924pt;}
.yc7{bottom:351.995603pt;}
.y84{bottom:355.000003pt;}
.y25{bottom:359.000003pt;}
.yaa{bottom:359.762066pt;}
.y33{bottom:362.000003pt;}
.y108{bottom:365.000003pt;}
.y18{bottom:366.000003pt;}
.yd7{bottom:366.729324pt;}
.y3b{bottom:372.000003pt;}
.y59{bottom:376.000004pt;}
.ybd{bottom:376.836174pt;}
.y88{bottom:380.000003pt;}
.yd{bottom:383.000003pt;}
.yfa{bottom:384.000003pt;}
.yd6{bottom:384.198324pt;}
.y7a{bottom:385.000003pt;}
.y1d{bottom:388.000003pt;}
.y93{bottom:391.000003pt;}
.y48{bottom:393.000003pt;}
.yb6{bottom:394.920003pt;}
.y6c{bottom:395.000003pt;}
.y99{bottom:398.000003pt;}
.yb3{bottom:399.121812pt;}
.y7{bottom:400.000003pt;}
.y24{bottom:402.000003pt;}
.y13{bottom:404.000003pt;}
.y107{bottom:405.000003pt;}
.y32{bottom:406.000003pt;}
.y2b{bottom:409.000003pt;}
.y102{bottom:411.000003pt;}
.y3a{bottom:412.000003pt;}
.yb2{bottom:416.148270pt;}
.yf5{bottom:418.000003pt;}
.y2{bottom:423.000003pt;}
.y87{bottom:424.000003pt;}
.y79{bottom:425.000003pt;}
.ya3{bottom:426.346129pt;}
.y4f{bottom:429.000000pt;}
.y71{bottom:430.000003pt;}
.y92{bottom:431.000003pt;}
.yf9{bottom:435.000003pt;}
.y47{bottom:436.000003pt;}
.yf6{bottom:441.000004pt;}
.y42{bottom:442.000004pt;}
.y2d{bottom:445.000004pt;}
.ya4{bottom:445.310070pt;}
.y6b{bottom:454.000004pt;}
.y8e{bottom:455.000004pt;}
.ycc{bottom:458.000004pt;}
.y77{bottom:461.000004pt;}
.y12{bottom:462.000004pt;}
.yd1{bottom:462.181124pt;}
.y17{bottom:463.000004pt;}
.y70{bottom:470.000004pt;}
.yac{bottom:472.142671pt;}
.ya1{bottom:473.598671pt;}
.yc{bottom:476.000004pt;}
.yf8{bottom:478.000004pt;}
.y1{bottom:481.000004pt;}
.y1c{bottom:484.000004pt;}
.y6{bottom:494.000004pt;}
.y90{bottom:495.000004pt;}
.ya0{bottom:497.195204pt;}
.y23{bottom:499.000004pt;}
.y4e{bottom:501.000004pt;}
.y31{bottom:503.000004pt;}
.y101{bottom:505.000004pt;}
.y2a{bottom:506.000004pt;}
.y8d{bottom:513.000004pt;}
.ycb{bottom:516.000004pt;}
.y78{bottom:518.000004pt;}
.y80{bottom:519.000004pt;}
.y86{bottom:521.000004pt;}
.ya2{bottom:521.039871pt;}
.y91{bottom:525.000004pt;}
.y46{bottom:533.000004pt;}
.y41{bottom:536.000004pt;}
.y6a{bottom:548.000004pt;}
.y22{bottom:557.000004pt;}
.y9d{bottom:558.537488pt;}
.y30{bottom:561.000004pt;}
.y39{bottom:564.000005pt;}
.yf7{bottom:575.000005pt;}
.y9c{bottom:575.563946pt;}
.y85{bottom:579.000005pt;}
.y57{bottom:587.000005pt;}
.y8f{bottom:588.000005pt;}
.y9b{bottom:592.590405pt;}
.y4d{bottom:594.000005pt;}
.y9f{bottom:618.604223pt;}
.y9e{bottom:627.820405pt;}
.y9a{bottom:662.755205pt;}
.h16{height:25.304813pt;}
.h1b{height:25.949903pt;}
.h8{height:29.000000pt;}
.h17{height:34.646759pt;}
.h1c{height:35.530000pt;}
.h11{height:37.790740pt;}
.h13{height:38.349224pt;}
.h14{height:38.351682pt;}
.h19{height:38.744453pt;}
.h1d{height:39.317032pt;}
.h15{height:42.305903pt;}
.hd{height:48.942566pt;}
.h12{height:51.742199pt;}
.h1e{height:52.441485pt;}
.h1a{height:53.048000pt;}
.hc{height:56.654355pt;}
.he{height:57.000000pt;}
.h1f{height:59.725485pt;}
.h20{height:67.006329pt;}
.h9{height:71.446485pt;}
.h2{height:81.579601pt;}
.h5{height:81.792881pt;}
.h4{height:88.740001pt;}
.h6{height:88.972001pt;}
.h3{height:97.614001pt;}
.hf{height:114.000000pt;}
.h7{height:115.362001pt;}
.h1{height:141.984001pt;}
.hb{height:383.000000pt;}
.ha{height:397.000000pt;}
.h18{height:527.984320pt;}
.h10{height:704.000000pt;}
.h0{height:720.000000pt;}
.w6{width:403.000000pt;}
.w1{width:461.000000pt;}
.w9{width:576.000000pt;}
.w8{width:640.000000pt;}
.wa{width:704.000000pt;}
.w7{width:705.000000pt;}
.w2{width:768.000000pt;}
.w4{width:832.000000pt;}
.w3{width:896.000000pt;}
.w5{width:1089.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x21{left:15.891872pt;}
.x39{left:24.049472pt;}
.x37{left:40.396806pt;}
.x15{left:44.072139pt;}
.x49{left:46.497334pt;}
.x38{left:47.941806pt;}
.x11{left:52.769939pt;}
.xa{left:54.843554pt;}
.x48{left:57.169334pt;}
.x24{left:62.609473pt;}
.x36{left:64.285939pt;}
.x2b{left:65.801606pt;}
.x12{left:74.675939pt;}
.x1{left:78.500001pt;}
.x10{left:82.988939pt;}
.x23{left:86.504339pt;}
.x1d{left:87.545739pt;}
.x1c{left:91.889739pt;}
.x6{left:96.000000pt;}
.x29{left:99.145340pt;}
.x5{left:104.594004pt;}
.x2a{left:110.004340pt;}
.x2d{left:122.379740pt;}
.x8{left:127.682408pt;}
.x2c{left:131.301606pt;}
.x46{left:132.517601pt;}
.x2{left:136.500001pt;}
.x45{left:149.939601pt;}
.x59{left:158.131335pt;}
.x30{left:160.864140pt;}
.x35{left:162.590940pt;}
.x18{left:169.582673pt;}
.x42{left:172.991068pt;}
.x16{left:176.518540pt;}
.x43{left:185.569068pt;}
.x17{left:187.254674pt;}
.xb{left:189.510667pt;}
.x5c{left:207.605335pt;}
.x22{left:210.325340pt;}
.x44{left:211.776335pt;}
.x47{left:214.401335pt;}
.x53{left:216.855335pt;}
.x13{left:220.134674pt;}
.x58{left:226.231335pt;}
.x26{left:228.120407pt;}
.x1b{left:232.775407pt;}
.x1e{left:234.222741pt;}
.x25{left:235.317474pt;}
.x14{left:242.078089pt;}
.x9{left:250.907099pt;}
.x1f{left:254.253741pt;}
.x1a{left:257.900407pt;}
.x19{left:269.488674pt;}
.x5b{left:275.125336pt;}
.x40{left:283.788269pt;}
.x3d{left:284.827869pt;}
.x27{left:286.317208pt;}
.x28{left:290.864208pt;}
.x41{left:296.194269pt;}
.x33{left:315.273741pt;}
.x34{left:325.961741pt;}
.xc{left:331.426879pt;}
.x20{left:334.128741pt;}
.x3e{left:346.766536pt;}
.x54{left:353.173336pt;}
.x31{left:356.348142pt;}
.x3b{left:371.127875pt;}
.xd{left:374.051823pt;}
.x4d{left:376.908470pt;}
.x4c{left:381.345470pt;}
.x3{left:384.000000pt;}
.x5a{left:388.629336pt;}
.x57{left:397.012337pt;}
.x4a{left:422.995870pt;}
.x3f{left:424.316403pt;}
.x55{left:425.469337pt;}
.x4b{left:435.573870pt;}
.x3a{left:436.567476pt;}
.x3c{left:446.801609pt;}
.x4{left:448.000000pt;}
.x51{left:449.596070pt;}
.x56{left:450.916337pt;}
.x50{left:452.705070pt;}
.x52{left:512.281737pt;}
.x2f{left:515.332143pt;}
.x4f{left:516.779737pt;}
.x2e{left:517.973476pt;}
.x32{left:520.411210pt;}
.x4e{left:530.717738pt;}
.xe{left:640.000000pt;}
.xf{left:672.000000pt;}
.x7{left:854.000000pt;}
}




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