
    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_ba469906af3e6ddafbcdbec5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_38d09658f8d4ade2cb6ebfe1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_379040bfbc473c911862e3c9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_c3c45b7ac330ff1db9c38eaf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_ac7a091052b98860f47ca48b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.788000;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_f59086a77bbf561409607816.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_b44959efd47024abf50f1b45.woff')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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_7010f8b017b66a9a1b5fb9ba.woff')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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;}
.m8{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m7{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.159999px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.070339px;}
.ls5{letter-spacing:0.130032px;}
.ls1{letter-spacing:0.131827px;}
.ls3{letter-spacing:0.135538px;}
.ls8{letter-spacing:0.523109px;}
.lse{letter-spacing:0.590542px;}
.ls7{letter-spacing:12.641585px;}
.ls9{letter-spacing:13.161818px;}
.lsb{letter-spacing:13.362904px;}
.ls6{letter-spacing:13.883138px;}
.lsa{letter-spacing:14.084584px;}
.ls2{letter-spacing:16.721465px;}
.lsc{letter-spacing:37.514795px;}
.lsd{letter-spacing:40.400254px;}
.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;}
}
.ws8{word-spacing:-48.378487px;}
.ws0{word-spacing:-22.503591px;}
.ws2{word-spacing:-19.795792px;}
.ws6{word-spacing:-16.919993px;}
.wsa{word-spacing:-16.562005px;}
.ws3{word-spacing:-15.565794px;}
.ws1{word-spacing:-14.889414px;}
.ws5{word-spacing:-14.043594px;}
.ws7{word-spacing:-13.366435px;}
.ws15{word-spacing:-13.280537px;}
.ws14{word-spacing:-12.689995px;}
.ws9{word-spacing:-12.061350px;}
.ws11{word-spacing:-3.925071px;}
.wsc{word-spacing:-3.449940px;}
.ws13{word-spacing:-3.414014px;}
.wsd{word-spacing:-3.203689px;}
.ws12{word-spacing:-2.633855px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.403092px;}
.wsf{word-spacing:0.560493px;}
.wse{word-spacing:0.773122px;}
.ws10{word-spacing:1.124473px;}
._30{margin-left:-2.205322px;}
._1{margin-left:-1.011001px;}
._0{width:1.372833px;}
._7{width:2.848438px;}
._2{width:4.095435px;}
._6{width:5.180663px;}
._3{width:6.961823px;}
._4{width:8.114883px;}
._5{width:9.257263px;}
._10{width:10.894546px;}
._4e{width:11.903526px;}
._b{width:12.904155px;}
._a{width:14.083238px;}
._4f{width:15.773950px;}
._9{width:16.968688px;}
._8{width:18.094408px;}
._16{width:19.560668px;}
._c{width:20.978024px;}
._15{width:22.701221px;}
._11{width:23.807435px;}
._17{width:25.427818px;}
._e{width:27.589813px;}
._d{width:28.823721px;}
._18{width:30.364092px;}
._12{width:31.811935px;}
._14{width:33.243640px;}
._13{width:34.281456px;}
._19{width:42.774837px;}
._f{width:44.097528px;}
._35{width:48.400820px;}
._23{width:49.524723px;}
._20{width:50.570388px;}
._2e{width:54.189126px;}
._2f{width:57.650145px;}
._33{width:58.729242px;}
._27{width:59.853799px;}
._38{width:65.431380px;}
._1e{width:66.705734px;}
._21{width:69.881240px;}
._50{width:74.494677px;}
._32{width:75.944953px;}
._22{width:78.826794px;}
._37{width:83.930617px;}
._40{width:93.902547px;}
._2d{width:101.193982px;}
._1f{width:104.976096px;}
._2b{width:110.824207px;}
._3f{width:118.903698px;}
._2a{width:124.114393px;}
._29{width:129.306831px;}
._28{width:130.916361px;}
._43{width:135.773365px;}
._1d{width:138.515648px;}
._24{width:149.845829px;}
._3b{width:151.713528px;}
._36{width:154.785202px;}
._1c{width:158.873826px;}
._1b{width:163.025942px;}
._3d{width:165.824829px;}
._42{width:167.513623px;}
._25{width:182.288784px;}
._46{width:185.936236px;}
._3e{width:188.540574px;}
._4b{width:199.517959px;}
._3c{width:208.158708px;}
._48{width:212.507960px;}
._3a{width:227.853253px;}
._4d{width:241.896460px;}
._31{width:244.807256px;}
._49{width:251.623795px;}
._4a{width:259.205571px;}
._34{width:267.884979px;}
._39{width:272.617319px;}
._2c{width:312.648810px;}
._4c{width:316.300718px;}
._47{width:321.468737px;}
._45{width:323.211965px;}
._44{width:327.709850px;}
._26{width:351.160202px;}
._41{width:378.563919px;}
._1a{width:1088.295951px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.343422px;}
.fs4{font-size:48.051341px;}
.fsb{font-size:50.759980px;}
.fsa{font-size:53.465739px;}
.fs0{font-size:56.174378px;}
.fs7{font-size:59.557656px;}
.fs9{font-size:62.263175px;}
.fs6{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs8{font-size:79.183168px;}
.fs2{font-size:90.014364px;}
.fs1{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.yf3{bottom:2.879692px;}
.y100{bottom:2.879772px;}
.yff{bottom:3.059772px;}
.y129{bottom:3.599689px;}
.y2{bottom:106.379957px;}
.y119{bottom:125.459950px;}
.y36{bottom:131.039948px;}
.y6a{bottom:133.019947px;}
.y165{bottom:133.559947px;}
.ydf{bottom:139.319944px;}
.y9d{bottom:139.859944px;}
.y118{bottom:143.279943px;}
.y35{bottom:148.859940px;}
.y164{bottom:149.759940px;}
.y69{bottom:151.019940px;}
.yde{bottom:157.139937px;}
.y9c{bottom:158.039937px;}
.y117{bottom:161.099936px;}
.y163{bottom:165.959934px;}
.y34{bottom:166.679933px;}
.y68{bottom:168.659933px;}
.ydd{bottom:175.139930px;}
.y9b{bottom:176.399929px;}
.y116{bottom:179.099928px;}
.y162{bottom:182.159927px;}
.y33{bottom:184.499926px;}
.y67{bottom:186.659925px;}
.y9a{bottom:194.399922px;}
.ydc{bottom:195.659922px;}
.y115{bottom:196.739921px;}
.y161{bottom:198.359921px;}
.y32{bottom:202.319919px;}
.y66{bottom:204.479918px;}
.y99{bottom:212.219915px;}
.ydb{bottom:213.659915px;}
.y114{bottom:214.559914px;}
.y31{bottom:220.139912px;}
.y65{bottom:222.119911px;}
.y98{bottom:230.219908px;}
.y160{bottom:230.759908px;}
.y113{bottom:232.559907px;}
.yda{bottom:234.179906px;}
.y30{bottom:238.139905px;}
.y64{bottom:240.119904px;}
.y15f{bottom:247.139901px;}
.y97{bottom:247.859901px;}
.y112{bottom:250.199900px;}
.yd9{bottom:252.539899px;}
.y2f{bottom:255.959898px;}
.y63{bottom:257.939897px;}
.y15e{bottom:263.159895px;}
.y96{bottom:265.859894px;}
.y111{bottom:268.199893px;}
.yd8{bottom:270.359892px;}
.y2e{bottom:273.599891px;}
.y62{bottom:275.759890px;}
.y15d{bottom:279.359888px;}
.y95{bottom:283.679887px;}
.y110{bottom:286.019886px;}
.yd7{bottom:288.359885px;}
.y2d{bottom:291.599883px;}
.y61{bottom:293.579883px;}
.y15c{bottom:295.559882px;}
.y94{bottom:301.499879px;}
.y10f{bottom:303.839878px;}
.y142{bottom:306.719877px;}
.yd6{bottom:308.159877px;}
.y2c{bottom:309.419876px;}
.y60{bottom:311.399875px;}
.y15b{bottom:311.939875px;}
.y93{bottom:319.319872px;}
.y10e{bottom:321.659871px;}
.y141{bottom:324.539870px;}
.yd5{bottom:326.519869px;}
.y2b{bottom:327.239869px;}
.y15a{bottom:328.139869px;}
.y5f{bottom:329.219868px;}
.y92{bottom:337.319865px;}
.y10d{bottom:339.479864px;}
.y140{bottom:342.359863px;}
.y159{bottom:344.339862px;}
.y2a{bottom:345.059862px;}
.y5e{bottom:347.039861px;}
.y91{bottom:356.759857px;}
.y10c{bottom:357.479857px;}
.y13f{bottom:360.179856px;}
.y158{bottom:360.359856px;}
.y29{bottom:363.059855px;}
.y5d{bottom:365.039854px;}
.yd4{bottom:366.299853px;}
.y10b{bottom:375.119850px;}
.y90{bottom:376.019850px;}
.y157{bottom:376.739849px;}
.y13e{bottom:377.999849px;}
.y28{bottom:380.699848px;}
.y5c{bottom:382.859847px;}
.yd3{bottom:384.119846px;}
.y10a{bottom:392.939843px;}
.y8f{bottom:394.019842px;}
.y13d{bottom:395.999842px;}
.y27{bottom:398.519841px;}
.y5b{bottom:400.499840px;}
.yd2{bottom:405.359838px;}
.y156{bottom:409.139836px;}
.y109{bottom:410.939836px;}
.y8e{bottom:411.659835px;}
.y13c{bottom:413.819834px;}
.y26{bottom:416.519833px;}
.y5a{bottom:418.499833px;}
.yd1{bottom:425.339830px;}
.y155{bottom:426.059830px;}
.y108{bottom:428.579829px;}
.y8d{bottom:429.659828px;}
.y13b{bottom:431.459827px;}
.y25{bottom:434.159826px;}
.y59{bottom:436.319825px;}
.yd0{bottom:443.519823px;}
.y107{bottom:446.579821px;}
.y8c{bottom:447.479821px;}
.y154{bottom:448.199821px;}
.y13a{bottom:449.459820px;}
.y24{bottom:452.159819px;}
.y58{bottom:454.139818px;}
.ycf{bottom:461.339815px;}
.y106{bottom:464.399814px;}
.y8b{bottom:465.119814px;}
.y139{bottom:467.279813px;}
.y153{bottom:467.459813px;}
.y23{bottom:469.979812px;}
.y57{bottom:471.959811px;}
.yce{bottom:479.159808px;}
.y105{bottom:482.039807px;}
.y8a{bottom:483.119807px;}
.y138{bottom:485.099806px;}
.y152{bottom:485.459806px;}
.y22{bottom:488.339805px;}
.y56{bottom:489.959804px;}
.ycd{bottom:498.599801px;}
.y104{bottom:500.039800px;}
.y89{bottom:500.939800px;}
.y137{bottom:502.919799px;}
.y151{bottom:503.279799px;}
.y55{bottom:507.599797px;}
.y21{bottom:511.019796px;}
.y103{bottom:517.859793px;}
.ycc{bottom:518.219793px;}
.y88{bottom:518.759792px;}
.y136{bottom:520.739792px;}
.y150{bottom:521.099792px;}
.y54{bottom:525.419790px;}
.y20{bottom:533.699787px;}
.y102{bottom:535.679786px;}
.ycb{bottom:535.859786px;}
.y87{bottom:538.199785px;}
.y135{bottom:538.559785px;}
.y14f{bottom:538.919784px;}
.y53{bottom:543.419783px;}
.y101{bottom:553.499779px;}
.yca{bottom:553.859778px;}
.y1f{bottom:555.659778px;}
.y134{bottom:556.379777px;}
.y14e{bottom:556.739777px;}
.y86{bottom:557.639777px;}
.y52{bottom:561.059776px;}
.y17a{bottom:561.779775px;}
.yfe{bottom:565.920000px;}
.yc9{bottom:571.679771px;}
.y1e{bottom:571.859771px;}
.y133{bottom:574.379770px;}
.y14d{bottom:574.559770px;}
.y85{bottom:575.459770px;}
.y51{bottom:579.059768px;}
.y179{bottom:583.739767px;}
.yfd{bottom:584.099766px;}
.y1d{bottom:588.239765px;}
.yc8{bottom:589.319764px;}
.y84{bottom:590.039764px;}
.y132{bottom:592.019763px;}
.y14c{bottom:592.379763px;}
.y83{bottom:593.279763px;}
.y50{bottom:596.879761px;}
.yfc{bottom:599.399760px;}
.y178{bottom:599.939760px;}
.y1c{bottom:604.619758px;}
.yc7{bottom:607.319757px;}
.y131{bottom:609.839756px;}
.y82{bottom:610.199756px;}
.y80{bottom:610.379756px;}
.y7f{bottom:610.919756px;}
.y7e{bottom:613.979754px;}
.y4f{bottom:614.519754px;}
.yfb{bottom:614.699754px;}
.y177{bottom:616.139754px;}
.y81{bottom:620.279752px;}
.yc5{bottom:623.879750px;}
.yc6{bottom:624.599750px;}
.y1b{bottom:625.319750px;}
.yc4{bottom:627.839749px;}
.y14b{bottom:628.199749px;}
.yfa{bottom:629.999748px;}
.y176{bottom:632.339747px;}
.y4e{bottom:632.519747px;}
.y7d{bottom:633.959746px;}
.y1a{bottom:641.699743px;}
.yf9{bottom:645.299742px;}
.y14a{bottom:646.019742px;}
.yc3{bottom:646.199742px;}
.y130{bottom:646.739741px;}
.y175{bottom:648.539741px;}
.y4d{bottom:650.879740px;}
.y7c{bottom:651.959739px;}
.y19{bottom:657.899737px;}
.yf8{bottom:660.599736px;}
.y149{bottom:663.839734px;}
.yc2{bottom:664.019734px;}
.y174{bottom:664.739734px;}
.y12f{bottom:665.639734px;}
.y7b{bottom:669.959732px;}
.y4c{bottom:673.559731px;}
.y18{bottom:674.099730px;}
.yf7{bottom:675.899730px;}
.y173{bottom:681.119728px;}
.yc1{bottom:681.659727px;}
.y148{bottom:682.199727px;}
.y12e{bottom:684.539726px;}
.y7a{bottom:689.399724px;}
.y17{bottom:690.299724px;}
.yf6{bottom:691.199724px;}
.y4b{bottom:695.879722px;}
.y172{bottom:697.319721px;}
.yc0{bottom:699.659720px;}
.y12d{bottom:703.619719px;}
.y147{bottom:704.879718px;}
.y16{bottom:706.499717px;}
.y79{bottom:708.659717px;}
.y171{bottom:713.339715px;}
.y4a{bottom:713.519715px;}
.ybf{bottom:717.479713px;}
.y12c{bottom:722.519711px;}
.y15{bottom:722.699711px;}
.yf5{bottom:724.859710px;}
.y78{bottom:726.659709px;}
.y146{bottom:727.019709px;}
.y170{bottom:729.719708px;}
.y49{bottom:731.339707px;}
.ybe{bottom:735.299706px;}
.y14{bottom:738.899704px;}
.yf1{bottom:740.159704px;}
.y12b{bottom:741.419703px;}
.y77{bottom:744.299702px;}
.y16f{bottom:745.919702px;}
.y145{bottom:746.459701px;}
.yf4{bottom:746.999701px;}
.y48{bottom:749.339700px;}
.ybd{bottom:753.119699px;}
.yef{bottom:754.919698px;}
.y13{bottom:755.099698px;}
.y12a{bottom:760.139696px;}
.y76{bottom:762.119695px;}
.y144{bottom:762.659695px;}
.yf2{bottom:766.440000px;}
.y47{bottom:766.979693px;}
.yf0{bottom:769.319692px;}
.ybc{bottom:770.939692px;}
.y12{bottom:771.479691px;}
.y128{bottom:774.900000px;}
.y143{bottom:776.879689px;}
.y16e{bottom:778.319689px;}
.y75{bottom:780.119688px;}
.y46{bottom:784.979686px;}
.yee{bottom:785.339686px;}
.y11{bottom:787.679685px;}
.ybb{bottom:788.939684px;}
.y16d{bottom:794.519682px;}
.y127{bottom:797.219681px;}
.y74{bottom:797.759681px;}
.y45{bottom:802.799679px;}
.yed{bottom:802.979679px;}
.y10{bottom:804.059678px;}
.yba{bottom:805.679678px;}
.yb9{bottom:809.459676px;}
.y16c{bottom:810.719676px;}
.y73{bottom:815.759674px;}
.y126{bottom:816.119674px;}
.yec{bottom:819.539672px;}
.y44{bottom:820.439672px;}
.yf{bottom:825.479670px;}
.y16b{bottom:826.919669px;}
.yb8{bottom:828.179669px;}
.yb7{bottom:831.239668px;}
.y72{bottom:833.579667px;}
.y125{bottom:834.659666px;}
.yeb{bottom:837.179665px;}
.y43{bottom:838.439665px;}
.y16a{bottom:843.119663px;}
.ye{bottom:845.099662px;}
.yb6{bottom:849.779660px;}
.y71{bottom:851.219660px;}
.yd{bottom:852.839659px;}
.yb5{bottom:853.019659px;}
.y124{bottom:853.199659px;}
.yea{bottom:854.999658px;}
.y42{bottom:856.259657px;}
.y169{bottom:859.319656px;}
.yc{bottom:864.539654px;}
.y70{bottom:869.219652px;}
.y123{bottom:871.379651px;}
.yb3{bottom:872.639651px;}
.ye9{bottom:872.999651px;}
.y41{bottom:874.079650px;}
.y168{bottom:875.699650px;}
.yb4{bottom:878.399649px;}
.yb{bottom:883.979646px;}
.y6f{bottom:887.039645px;}
.y122{bottom:890.279644px;}
.ye8{bottom:890.639644px;}
.yb0{bottom:890.819644px;}
.yb2{bottom:891.539643px;}
.ya{bottom:891.719643px;}
.y40{bottom:891.899643px;}
.yaf{bottom:894.779642px;}
.yb1{bottom:901.079640px;}
.y6e{bottom:904.859638px;}
.y121{bottom:906.479637px;}
.y167{bottom:907.919637px;}
.ye7{bottom:908.639637px;}
.y3f{bottom:909.719636px;}
.y9{bottom:911.159636px;}
.yae{bottom:913.319635px;}
.yad{bottom:916.559633px;}
.y6d{bottom:922.679631px;}
.y7{bottom:923.039631px;}
.y166{bottom:924.299630px;}
.ye6{bottom:926.459629px;}
.y3e{bottom:927.539629px;}
.y8{bottom:931.499627px;}
.yac{bottom:935.099626px;}
.y6c{bottom:940.499624px;}
.ye5{bottom:944.099622px;}
.y3d{bottom:945.359622px;}
.y6{bottom:946.799621px;}
.ya8{bottom:951.659619px;}
.yaa{bottom:952.379619px;}
.yab{bottom:955.259618px;}
.ya7{bottom:955.439618px;}
.y120{bottom:956.699617px;}
.y6b{bottom:959.039616px;}
.ya9{bottom:961.739615px;}
.ye4{bottom:962.819615px;}
.y3c{bottom:963.359615px;}
.y11f{bottom:972.899611px;}
.ya6{bottom:975.419610px;}
.y5{bottom:978.659609px;}
.y3b{bottom:980.999608px;}
.ye3{bottom:985.499606px;}
.y11e{bottom:989.099604px;}
.ya5{bottom:993.239603px;}
.y3a{bottom:998.819600px;}
.y11d{bottom:1005.299598px;}
.ye2{bottom:1008.179597px;}
.y4{bottom:1010.339596px;}
.ya3{bottom:1011.239596px;}
.y39{bottom:1016.819593px;}
.ya4{bottom:1016.999593px;}
.y11c{bottom:1021.499591px;}
.ya1{bottom:1029.239588px;}
.ye1{bottom:1030.139588px;}
.ya0{bottom:1032.479587px;}
.y38{bottom:1034.459586px;}
.y11b{bottom:1037.699585px;}
.ya2{bottom:1038.239585px;}
.y3{bottom:1042.199583px;}
.y9f{bottom:1048.859580px;}
.ye0{bottom:1051.379579px;}
.y9e{bottom:1052.099579px;}
.y37{bottom:1052.459579px;}
.y11a{bottom:1053.899578px;}
.y1{bottom:1086.659565px;}
.h17{height:14.400000px;}
.h19{height:17.460000px;}
.h13{height:30.708655px;}
.h6{height:31.196274px;}
.h5{height:33.059322px;}
.h16{height:34.922866px;}
.h18{height:35.125906px;}
.hf{height:36.998291px;}
.ha{height:38.367100px;}
.h1{height:38.647972px;}
.h11{height:40.339704px;}
.h9{height:40.796994px;}
.hd{height:42.837064px;}
.hc{height:43.086117px;}
.h7{height:46.563821px;}
.he{height:46.834541px;}
.h8{height:50.069644px;}
.h4{height:50.288927px;}
.hb{height:54.794752px;}
.h10{height:55.392336px;}
.h14{height:56.112336px;}
.h12{height:57.552336px;}
.h15{height:58.272335px;}
.h3{height:59.994925px;}
.h2{height:75.330374px;}
.h0{height:1188.000000px;}
.w4{width:3.060000px;}
.w2{width:6.480000px;}
.wa{width:7.920000px;}
.w6{width:22.320000px;}
.w7{width:28.620000px;}
.w3{width:29.880720px;}
.w9{width:32.760000px;}
.w8{width:34.920000px;}
.wb{width:42.660000px;}
.w5{width:59.220000px;}
.w1{width:103.320000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.759972px;}
.x4{left:160.560026px;}
.x6a{left:164.879934px;}
.x17{left:166.860717px;}
.x1b{left:170.999932px;}
.x18{left:172.619931px;}
.x1e{left:173.699931px;}
.x1f{left:177.659929px;}
.x5{left:179.099928px;}
.x2f{left:184.319926px;}
.x20{left:185.399926px;}
.x30{left:187.739925px;}
.x97{left:190.620454px;}
.x1{left:191.699923px;}
.x31{left:194.399922px;}
.x45{left:196.199922px;}
.x74{left:198.179921px;}
.x3d{left:201.059920px;}
.x5e{left:205.559918px;}
.x77{left:209.520394px;}
.x90{left:220.679930px;}
.xc{left:221.940514px;}
.x70{left:226.439909px;}
.x46{left:228.239909px;}
.x53{left:231.299907px;}
.x13{left:234.539906px;}
.x1c{left:236.879905px;}
.x47{left:239.759904px;}
.x4a{left:241.559903px;}
.x1d{left:242.639903px;}
.x71{left:245.519902px;}
.x6c{left:250.919900px;}
.x54{left:254.699898px;}
.x84{left:255.960000px;}
.x79{left:260.279359px;}
.x4b{left:265.679894px;}
.x6d{left:269.999892px;}
.x3e{left:271.079892px;}
.x3f{left:275.759890px;}
.x40{left:279.179888px;}
.x26{left:284.939886px;}
.x24{left:286.559885px;}
.x27{left:288.359885px;}
.x41{left:289.439884px;}
.x6e{left:291.419883px;}
.x96{left:294.299882px;}
.x6b{left:299.159880px;}
.xd{left:300.419880px;}
.x55{left:302.219879px;}
.x21{left:303.299879px;}
.x92{left:304.739878px;}
.x7e{left:308.339911px;}
.x6{left:310.319876px;}
.x85{left:318.060000px;}
.x91{left:319.319872px;}
.x56{left:323.099871px;}
.x7a{left:325.259870px;}
.x7{left:331.919867px;}
.x66{left:334.439866px;}
.x4c{left:336.419865px;}
.x3a{left:339.119864px;}
.x42{left:340.559864px;}
.x57{left:342.179863px;}
.x48{left:344.879862px;}
.x67{left:346.679861px;}
.x19{left:348.479942px;}
.x43{left:350.819860px;}
.x25{left:354.599858px;}
.x49{left:357.119857px;}
.x75{left:358.559857px;}
.xe{left:361.259855px;}
.x58{left:363.599855px;}
.x7f{left:365.039939px;}
.x4d{left:368.819852px;}
.x78{left:371.339851px;}
.x6f{left:374.759850px;}
.xf{left:381.430347px;}
.x61{left:392.939843px;}
.x7b{left:396.179842px;}
.x86{left:397.260000px;}
.x28{left:399.959840px;}
.x29{left:403.379839px;}
.x7c{left:410.399836px;}
.x62{left:412.019835px;}
.x80{left:415.799947px;}
.x72{left:418.679833px;}
.x44{left:424.979830px;}
.x14{left:427.859829px;}
.x76{left:435.239826px;}
.x15{left:437.039825px;}
.x51{left:438.119825px;}
.x1a{left:439.740081px;}
.x87{left:443.700000px;}
.x52{left:450.179820px;}
.x59{left:457.559817px;}
.x88{left:460.260000px;}
.x93{left:462.600000px;}
.x3{left:463.679815px;}
.x83{left:466.559813px;}
.x32{left:477.539809px;}
.x33{left:488.159805px;}
.x5a{left:492.839803px;}
.x68{left:494.279802px;}
.x8{left:500.039800px;}
.x69{left:506.159798px;}
.x94{left:508.320000px;}
.x2a{left:512.459795px;}
.x2b{left:515.879794px;}
.x9{left:522.190291px;}
.x2c{left:524.879790px;}
.x5b{left:533.159787px;}
.x7d{left:534.599786px;}
.x2d{left:536.939785px;}
.x34{left:538.379785px;}
.x95{left:543.060000px;}
.x89{left:547.560000px;}
.x63{left:550.799780px;}
.x10{left:557.999777px;}
.x81{left:559.440000px;}
.x35{left:563.759774px;}
.x8a{left:565.560000px;}
.x64{left:570.059772px;}
.xa{left:572.579771px;}
.x11{left:576.539769px;}
.xb{left:591.839763px;}
.x8b{left:600.480000px;}
.x2e{left:601.559759px;}
.x5f{left:606.419757px;}
.x4e{left:611.459755px;}
.x5c{left:616.499753px;}
.x8c{left:618.120000px;}
.x4f{left:630.539748px;}
.x3b{left:633.959746px;}
.x5d{left:635.759746px;}
.x3c{left:641.159744px;}
.x60{left:650.699740px;}
.x73{left:651.779739px;}
.x8d{left:652.860000px;}
.x36{left:661.319735px;}
.x82{left:662.760000px;}
.x65{left:670.319732px;}
.x16{left:686.699725px;}
.x37{left:688.499725px;}
.x12{left:705.599718px;}
.x38{left:712.259715px;}
.x8e{left:725.580000px;}
.x39{left:734.219706px;}
.x22{left:754.559579px;}
.x50{left:756.539697px;}
.x8f{left:760.320000px;}
.x23{left:768.599693px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.919999pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.062524pt;}
.ls5{letter-spacing:0.115584pt;}
.ls1{letter-spacing:0.117180pt;}
.ls3{letter-spacing:0.120478pt;}
.ls8{letter-spacing:0.464985pt;}
.lse{letter-spacing:0.524926pt;}
.ls7{letter-spacing:11.236964pt;}
.ls9{letter-spacing:11.699394pt;}
.lsb{letter-spacing:11.878137pt;}
.ls6{letter-spacing:12.340567pt;}
.lsa{letter-spacing:12.519630pt;}
.ls2{letter-spacing:14.863525pt;}
.lsc{letter-spacing:33.346485pt;}
.lsd{letter-spacing:35.911337pt;}
.ws8{word-spacing:-43.003100pt;}
.ws0{word-spacing:-20.003192pt;}
.ws2{word-spacing:-17.596260pt;}
.ws6{word-spacing:-15.039994pt;}
.wsa{word-spacing:-14.721782pt;}
.ws3{word-spacing:-13.836261pt;}
.ws1{word-spacing:-13.235035pt;}
.ws5{word-spacing:-12.483195pt;}
.ws7{word-spacing:-11.881275pt;}
.ws15{word-spacing:-11.804921pt;}
.ws14{word-spacing:-11.279995pt;}
.ws9{word-spacing:-10.721200pt;}
.ws11{word-spacing:-3.488952pt;}
.wsc{word-spacing:-3.066614pt;}
.ws13{word-spacing:-3.034679pt;}
.wsd{word-spacing:-2.847724pt;}
.ws12{word-spacing:-2.341204pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.358304pt;}
.wsf{word-spacing:0.498216pt;}
.wse{word-spacing:0.687219pt;}
.ws10{word-spacing:0.999532pt;}
._30{margin-left:-1.960286pt;}
._1{margin-left:-0.898668pt;}
._0{width:1.220296pt;}
._7{width:2.531945pt;}
._2{width:3.640387pt;}
._6{width:4.605034pt;}
._3{width:6.188287pt;}
._4{width:7.213229pt;}
._5{width:8.228678pt;}
._10{width:9.684041pt;}
._4e{width:10.580912pt;}
._b{width:11.470360pt;}
._a{width:12.518434pt;}
._4f{width:14.021289pt;}
._9{width:15.083278pt;}
._8{width:16.083919pt;}
._16{width:17.387260pt;}
._c{width:18.647132pt;}
._15{width:20.178863pt;}
._11{width:21.162164pt;}
._17{width:22.602505pt;}
._e{width:24.524278pt;}
._d{width:25.621086pt;}
._18{width:26.990304pt;}
._12{width:28.277275pt;}
._14{width:29.549902pt;}
._13{width:30.472405pt;}
._19{width:38.022077pt;}
._f{width:39.197802pt;}
._35{width:43.022951pt;}
._23{width:44.021976pt;}
._20{width:44.951456pt;}
._2e{width:48.168112pt;}
._2f{width:51.244573pt;}
._33{width:52.203771pt;}
._27{width:53.203377pt;}
._38{width:58.161227pt;}
._1e{width:59.293985pt;}
._21{width:62.116658pt;}
._50{width:66.217491pt;}
._32{width:67.506625pt;}
._22{width:70.068261pt;}
._37{width:74.604992pt;}
._40{width:83.468931pt;}
._2d{width:89.950206pt;}
._1f{width:93.312085pt;}
._2b{width:98.510406pt;}
._3f{width:105.692176pt;}
._2a{width:110.323905pt;}
._29{width:114.939406pt;}
._28{width:116.370099pt;}
._43{width:120.687435pt;}
._1d{width:123.125021pt;}
._24{width:133.196292pt;}
._3b{width:134.856469pt;}
._36{width:137.586846pt;}
._1c{width:141.221179pt;}
._1b{width:144.911949pt;}
._3d{width:147.399848pt;}
._42{width:148.900998pt;}
._25{width:162.034475pt;}
._46{width:165.276654pt;}
._3e{width:167.591621pt;}
._4b{width:177.349297pt;}
._3c{width:185.029962pt;}
._48{width:188.895964pt;}
._3a{width:202.536225pt;}
._4d{width:215.019075pt;}
._31{width:217.606449pt;}
._49{width:223.665596pt;}
._4a{width:230.404952pt;}
._34{width:238.119981pt;}
._39{width:242.326506pt;}
._2c{width:277.910054pt;}
._4c{width:281.156194pt;}
._47{width:285.749989pt;}
._45{width:287.299524pt;}
._44{width:291.297645pt;}
._26{width:312.142402pt;}
._41{width:336.501261pt;}
._1a{width:967.374179pt;}
.fs5{font-size:40.305264pt;}
.fs4{font-size:42.712303pt;}
.fsb{font-size:45.119982pt;}
.fsa{font-size:47.525101pt;}
.fs0{font-size:49.932780pt;}
.fs7{font-size:52.940139pt;}
.fs9{font-size:55.345045pt;}
.fs6{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs8{font-size:70.385039pt;}
.fs2{font-size:80.012768pt;}
.fs1{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:2.559726pt;}
.y100{bottom:2.559798pt;}
.yff{bottom:2.719798pt;}
.y129{bottom:3.199723pt;}
.y2{bottom:94.559962pt;}
.y119{bottom:111.519955pt;}
.y36{bottom:116.479953pt;}
.y6a{bottom:118.239953pt;}
.y165{bottom:118.719953pt;}
.ydf{bottom:123.839950pt;}
.y9d{bottom:124.319950pt;}
.y118{bottom:127.359949pt;}
.y35{bottom:132.319947pt;}
.y164{bottom:133.119947pt;}
.y69{bottom:134.239946pt;}
.yde{bottom:139.679944pt;}
.y9c{bottom:140.479944pt;}
.y117{bottom:143.199943pt;}
.y163{bottom:147.519941pt;}
.y34{bottom:148.159941pt;}
.y68{bottom:149.919940pt;}
.ydd{bottom:155.679938pt;}
.y9b{bottom:156.799937pt;}
.y116{bottom:159.199936pt;}
.y162{bottom:161.919935pt;}
.y33{bottom:163.999934pt;}
.y67{bottom:165.919934pt;}
.y9a{bottom:172.799931pt;}
.ydc{bottom:173.919930pt;}
.y115{bottom:174.879930pt;}
.y161{bottom:176.319929pt;}
.y32{bottom:179.839928pt;}
.y66{bottom:181.759927pt;}
.y99{bottom:188.639925pt;}
.ydb{bottom:189.919924pt;}
.y114{bottom:190.719924pt;}
.y31{bottom:195.679922pt;}
.y65{bottom:197.439921pt;}
.y98{bottom:204.639918pt;}
.y160{bottom:205.119918pt;}
.y113{bottom:206.719917pt;}
.yda{bottom:208.159917pt;}
.y30{bottom:211.679915pt;}
.y64{bottom:213.439915pt;}
.y15f{bottom:219.679912pt;}
.y97{bottom:220.319912pt;}
.y112{bottom:222.399911pt;}
.yd9{bottom:224.479910pt;}
.y2f{bottom:227.519909pt;}
.y63{bottom:229.279908pt;}
.y15e{bottom:233.919906pt;}
.y96{bottom:236.319905pt;}
.y111{bottom:238.399905pt;}
.yd8{bottom:240.319904pt;}
.y2e{bottom:243.199903pt;}
.y62{bottom:245.119902pt;}
.y15d{bottom:248.319901pt;}
.y95{bottom:252.159899pt;}
.y110{bottom:254.239898pt;}
.yd7{bottom:256.319897pt;}
.y2d{bottom:259.199896pt;}
.y61{bottom:260.959896pt;}
.y15c{bottom:262.719895pt;}
.y94{bottom:267.999893pt;}
.y10f{bottom:270.079892pt;}
.y142{bottom:272.639891pt;}
.yd6{bottom:273.919890pt;}
.y2c{bottom:275.039890pt;}
.y60{bottom:276.799889pt;}
.y15b{bottom:277.279889pt;}
.y93{bottom:283.839886pt;}
.y10e{bottom:285.919886pt;}
.y141{bottom:288.479885pt;}
.yd5{bottom:290.239884pt;}
.y2b{bottom:290.879884pt;}
.y15a{bottom:291.679883pt;}
.y5f{bottom:292.639883pt;}
.y92{bottom:299.839880pt;}
.y10d{bottom:301.759879pt;}
.y140{bottom:304.319878pt;}
.y159{bottom:306.079878pt;}
.y2a{bottom:306.719877pt;}
.y5e{bottom:308.479877pt;}
.y91{bottom:317.119873pt;}
.y10c{bottom:317.759873pt;}
.y13f{bottom:320.159872pt;}
.y158{bottom:320.319872pt;}
.y29{bottom:322.719871pt;}
.y5d{bottom:324.479870pt;}
.yd4{bottom:325.599870pt;}
.y10b{bottom:333.439867pt;}
.y90{bottom:334.239866pt;}
.y157{bottom:334.879866pt;}
.y13e{bottom:335.999866pt;}
.y28{bottom:338.399865pt;}
.y5c{bottom:340.319864pt;}
.yd3{bottom:341.439863pt;}
.y10a{bottom:349.279860pt;}
.y8f{bottom:350.239860pt;}
.y13d{bottom:351.999859pt;}
.y27{bottom:354.239858pt;}
.y5b{bottom:355.999858pt;}
.yd2{bottom:360.319856pt;}
.y156{bottom:363.679855pt;}
.y109{bottom:365.279854pt;}
.y8e{bottom:365.919854pt;}
.y13c{bottom:367.839853pt;}
.y26{bottom:370.239852pt;}
.y5a{bottom:371.999851pt;}
.yd1{bottom:378.079849pt;}
.y155{bottom:378.719849pt;}
.y108{bottom:380.959848pt;}
.y8d{bottom:381.919847pt;}
.y13b{bottom:383.519847pt;}
.y25{bottom:385.919846pt;}
.y59{bottom:387.839845pt;}
.yd0{bottom:394.239842pt;}
.y107{bottom:396.959841pt;}
.y8c{bottom:397.759841pt;}
.y154{bottom:398.399841pt;}
.y13a{bottom:399.519840pt;}
.y24{bottom:401.919839pt;}
.y58{bottom:403.679839pt;}
.ycf{bottom:410.079836pt;}
.y106{bottom:412.799835pt;}
.y8b{bottom:413.439835pt;}
.y139{bottom:415.359834pt;}
.y153{bottom:415.519834pt;}
.y23{bottom:417.759833pt;}
.y57{bottom:419.519832pt;}
.yce{bottom:425.919830pt;}
.y105{bottom:428.479829pt;}
.y8a{bottom:429.439828pt;}
.y138{bottom:431.199828pt;}
.y152{bottom:431.519827pt;}
.y22{bottom:434.079826pt;}
.y56{bottom:435.519826pt;}
.ycd{bottom:443.199823pt;}
.y104{bottom:444.479822pt;}
.y89{bottom:445.279822pt;}
.y137{bottom:447.039821pt;}
.y151{bottom:447.359821pt;}
.y55{bottom:451.199820pt;}
.y21{bottom:454.239818pt;}
.y103{bottom:460.319816pt;}
.ycc{bottom:460.639816pt;}
.y88{bottom:461.119816pt;}
.y136{bottom:462.879815pt;}
.y150{bottom:463.199815pt;}
.y54{bottom:467.039813pt;}
.y20{bottom:474.399810pt;}
.y102{bottom:476.159810pt;}
.ycb{bottom:476.319809pt;}
.y87{bottom:478.399809pt;}
.y135{bottom:478.719809pt;}
.y14f{bottom:479.039808pt;}
.y53{bottom:483.039807pt;}
.y101{bottom:491.999803pt;}
.yca{bottom:492.319803pt;}
.y1f{bottom:493.919802pt;}
.y134{bottom:494.559802pt;}
.y14e{bottom:494.879802pt;}
.y86{bottom:495.679802pt;}
.y52{bottom:498.719801pt;}
.y17a{bottom:499.359800pt;}
.yfe{bottom:503.040000pt;}
.yc9{bottom:508.159797pt;}
.y1e{bottom:508.319797pt;}
.y133{bottom:510.559796pt;}
.y14d{bottom:510.719796pt;}
.y85{bottom:511.519795pt;}
.y51{bottom:514.719794pt;}
.y179{bottom:518.879792pt;}
.yfd{bottom:519.199792pt;}
.y1d{bottom:522.879791pt;}
.yc8{bottom:523.839790pt;}
.y84{bottom:524.479790pt;}
.y132{bottom:526.239790pt;}
.y14c{bottom:526.559789pt;}
.y83{bottom:527.359789pt;}
.y50{bottom:530.559788pt;}
.yfc{bottom:532.799787pt;}
.y178{bottom:533.279787pt;}
.y1c{bottom:537.439785pt;}
.yc7{bottom:539.839784pt;}
.y131{bottom:542.079783pt;}
.y82{bottom:542.399783pt;}
.y80{bottom:542.559783pt;}
.y7f{bottom:543.039783pt;}
.y7e{bottom:545.759782pt;}
.y4f{bottom:546.239782pt;}
.yfb{bottom:546.399781pt;}
.y177{bottom:547.679781pt;}
.y81{bottom:551.359779pt;}
.yc5{bottom:554.559778pt;}
.yc6{bottom:555.199778pt;}
.y1b{bottom:555.839778pt;}
.yc4{bottom:558.079777pt;}
.y14b{bottom:558.399777pt;}
.yfa{bottom:559.999776pt;}
.y176{bottom:562.079775pt;}
.y4e{bottom:562.239775pt;}
.y7d{bottom:563.519775pt;}
.y1a{bottom:570.399772pt;}
.yf9{bottom:573.599771pt;}
.y14a{bottom:574.239770pt;}
.yc3{bottom:574.399770pt;}
.y130{bottom:574.879770pt;}
.y175{bottom:576.479769pt;}
.y4d{bottom:578.559769pt;}
.y7c{bottom:579.519768pt;}
.y19{bottom:584.799766pt;}
.yf8{bottom:587.199765pt;}
.y149{bottom:590.079764pt;}
.yc2{bottom:590.239764pt;}
.y174{bottom:590.879764pt;}
.y12f{bottom:591.679763pt;}
.y7b{bottom:595.519762pt;}
.y4c{bottom:598.719761pt;}
.y18{bottom:599.199760pt;}
.yf7{bottom:600.799760pt;}
.y173{bottom:605.439758pt;}
.yc1{bottom:605.919758pt;}
.y148{bottom:606.399757pt;}
.y12e{bottom:608.479757pt;}
.y7a{bottom:612.799755pt;}
.y17{bottom:613.599755pt;}
.yf6{bottom:614.399754pt;}
.y4b{bottom:618.559753pt;}
.y172{bottom:619.839752pt;}
.yc0{bottom:621.919751pt;}
.y12d{bottom:625.439750pt;}
.y147{bottom:626.559749pt;}
.y16{bottom:627.999749pt;}
.y79{bottom:629.919748pt;}
.y171{bottom:634.079746pt;}
.y4a{bottom:634.239746pt;}
.ybf{bottom:637.759745pt;}
.y12c{bottom:642.239743pt;}
.y15{bottom:642.399743pt;}
.yf5{bottom:644.319742pt;}
.y78{bottom:645.919742pt;}
.y146{bottom:646.239742pt;}
.y170{bottom:648.639741pt;}
.y49{bottom:650.079740pt;}
.ybe{bottom:653.599739pt;}
.y14{bottom:656.799737pt;}
.yf1{bottom:657.919737pt;}
.y12b{bottom:659.039736pt;}
.y77{bottom:661.599735pt;}
.y16f{bottom:663.039735pt;}
.y145{bottom:663.519735pt;}
.yf4{bottom:663.999734pt;}
.y48{bottom:666.079734pt;}
.ybd{bottom:669.439732pt;}
.yef{bottom:671.039732pt;}
.y13{bottom:671.199732pt;}
.y12a{bottom:675.679730pt;}
.y76{bottom:677.439729pt;}
.y144{bottom:677.919729pt;}
.yf2{bottom:681.280000pt;}
.y47{bottom:681.759727pt;}
.yf0{bottom:683.839726pt;}
.ybc{bottom:685.279726pt;}
.y12{bottom:685.759726pt;}
.y128{bottom:688.800000pt;}
.y143{bottom:690.559724pt;}
.y16e{bottom:691.839723pt;}
.y75{bottom:693.439723pt;}
.y46{bottom:697.759721pt;}
.yee{bottom:698.079721pt;}
.y11{bottom:700.159720pt;}
.ybb{bottom:701.279719pt;}
.y16d{bottom:706.239718pt;}
.y127{bottom:708.639717pt;}
.y74{bottom:709.119716pt;}
.y45{bottom:713.599715pt;}
.yed{bottom:713.759714pt;}
.y10{bottom:714.719714pt;}
.yba{bottom:716.159714pt;}
.yb9{bottom:719.519712pt;}
.y16c{bottom:720.639712pt;}
.y73{bottom:725.119710pt;}
.y126{bottom:725.439710pt;}
.yec{bottom:728.479709pt;}
.y44{bottom:729.279708pt;}
.yf{bottom:733.759706pt;}
.y16b{bottom:735.039706pt;}
.yb8{bottom:736.159706pt;}
.yb7{bottom:738.879704pt;}
.y72{bottom:740.959704pt;}
.y125{bottom:741.919703pt;}
.yeb{bottom:744.159702pt;}
.y43{bottom:745.279702pt;}
.y16a{bottom:749.439700pt;}
.ye{bottom:751.199700pt;}
.yb6{bottom:755.359698pt;}
.y71{bottom:756.639697pt;}
.yd{bottom:758.079697pt;}
.yb5{bottom:758.239697pt;}
.y124{bottom:758.399697pt;}
.yea{bottom:759.999696pt;}
.y42{bottom:761.119696pt;}
.y169{bottom:763.839694pt;}
.yc{bottom:768.479693pt;}
.y70{bottom:772.639691pt;}
.y123{bottom:774.559690pt;}
.yb3{bottom:775.679690pt;}
.ye9{bottom:775.999690pt;}
.y41{bottom:776.959689pt;}
.y168{bottom:778.399689pt;}
.yb4{bottom:780.799688pt;}
.yb{bottom:785.759686pt;}
.y6f{bottom:788.479685pt;}
.y122{bottom:791.359683pt;}
.ye8{bottom:791.679683pt;}
.yb0{bottom:791.839683pt;}
.yb2{bottom:792.479683pt;}
.ya{bottom:792.639683pt;}
.y40{bottom:792.799683pt;}
.yaf{bottom:795.359682pt;}
.yb1{bottom:800.959680pt;}
.y6e{bottom:804.319678pt;}
.y121{bottom:805.759678pt;}
.y167{bottom:807.039677pt;}
.ye7{bottom:807.679677pt;}
.y3f{bottom:808.639677pt;}
.y9{bottom:809.919676pt;}
.yae{bottom:811.839675pt;}
.yad{bottom:814.719674pt;}
.y6d{bottom:820.159672pt;}
.y7{bottom:820.479672pt;}
.y166{bottom:821.599671pt;}
.ye6{bottom:823.519671pt;}
.y3e{bottom:824.479670pt;}
.y8{bottom:827.999669pt;}
.yac{bottom:831.199668pt;}
.y6c{bottom:835.999666pt;}
.ye5{bottom:839.199664pt;}
.y3d{bottom:840.319664pt;}
.y6{bottom:841.599663pt;}
.ya8{bottom:845.919662pt;}
.yaa{bottom:846.559661pt;}
.yab{bottom:849.119660pt;}
.ya7{bottom:849.279660pt;}
.y120{bottom:850.399660pt;}
.y6b{bottom:852.479659pt;}
.ya9{bottom:854.879658pt;}
.ye4{bottom:855.839658pt;}
.y3c{bottom:856.319657pt;}
.y11f{bottom:864.799654pt;}
.ya6{bottom:867.039653pt;}
.y5{bottom:869.919652pt;}
.y3b{bottom:871.999651pt;}
.ye3{bottom:875.999650pt;}
.y11e{bottom:879.199648pt;}
.ya5{bottom:882.879647pt;}
.y3a{bottom:887.839645pt;}
.y11d{bottom:893.599643pt;}
.ye2{bottom:896.159642pt;}
.y4{bottom:898.079641pt;}
.ya3{bottom:898.879640pt;}
.y39{bottom:903.839638pt;}
.ya4{bottom:903.999638pt;}
.y11c{bottom:907.999637pt;}
.ya1{bottom:914.879634pt;}
.ye1{bottom:915.679634pt;}
.ya0{bottom:917.759633pt;}
.y38{bottom:919.519632pt;}
.y11b{bottom:922.399631pt;}
.ya2{bottom:922.879631pt;}
.y3{bottom:926.399629pt;}
.y9f{bottom:932.319627pt;}
.ye0{bottom:934.559626pt;}
.y9e{bottom:935.199626pt;}
.y37{bottom:935.519626pt;}
.y11a{bottom:936.799625pt;}
.y1{bottom:965.919614pt;}
.h17{height:12.800000pt;}
.h19{height:15.520000pt;}
.h13{height:27.296583pt;}
.h6{height:27.730022pt;}
.h5{height:29.386064pt;}
.h16{height:31.042548pt;}
.h18{height:31.223028pt;}
.hf{height:32.887370pt;}
.ha{height:34.104089pt;}
.h1{height:34.353753pt;}
.h11{height:35.857515pt;}
.h9{height:36.263995pt;}
.hd{height:38.077391pt;}
.hc{height:38.298771pt;}
.h7{height:41.390063pt;}
.he{height:41.630703pt;}
.h8{height:44.506350pt;}
.h4{height:44.701269pt;}
.hb{height:48.706447pt;}
.h10{height:49.237632pt;}
.h14{height:49.877632pt;}
.h12{height:51.157632pt;}
.h15{height:51.797631pt;}
.h3{height:53.328822pt;}
.h2{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w4{width:2.720000pt;}
.w2{width:5.760000pt;}
.wa{width:7.040000pt;}
.w6{width:19.840000pt;}
.w7{width:25.440000pt;}
.w3{width:26.560640pt;}
.w9{width:29.120000pt;}
.w8{width:31.040000pt;}
.wb{width:37.920000pt;}
.w5{width:52.640000pt;}
.w1{width:91.840000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.119975pt;}
.x4{left:142.720023pt;}
.x6a{left:146.559941pt;}
.x17{left:148.320637pt;}
.x1b{left:151.999939pt;}
.x18{left:153.439939pt;}
.x1e{left:154.399938pt;}
.x1f{left:157.919937pt;}
.x5{left:159.199936pt;}
.x2f{left:163.839934pt;}
.x20{left:164.799934pt;}
.x30{left:166.879933pt;}
.x97{left:169.440403pt;}
.x1{left:170.399932pt;}
.x31{left:172.799931pt;}
.x45{left:174.399930pt;}
.x74{left:176.159930pt;}
.x3d{left:178.719929pt;}
.x5e{left:182.719927pt;}
.x77{left:186.240350pt;}
.x90{left:196.159938pt;}
.xc{left:197.280457pt;}
.x70{left:201.279919pt;}
.x46{left:202.879919pt;}
.x53{left:205.599918pt;}
.x13{left:208.479917pt;}
.x1c{left:210.559916pt;}
.x47{left:213.119915pt;}
.x4a{left:214.719914pt;}
.x1d{left:215.679914pt;}
.x71{left:218.239913pt;}
.x6c{left:223.039911pt;}
.x54{left:226.399909pt;}
.x84{left:227.520000pt;}
.x79{left:231.359430pt;}
.x4b{left:236.159906pt;}
.x6d{left:239.999904pt;}
.x3e{left:240.959904pt;}
.x3f{left:245.119902pt;}
.x40{left:248.159901pt;}
.x26{left:253.279899pt;}
.x24{left:254.719898pt;}
.x27{left:256.319897pt;}
.x41{left:257.279897pt;}
.x6e{left:259.039896pt;}
.x96{left:261.599895pt;}
.x6b{left:265.919894pt;}
.xd{left:267.039893pt;}
.x55{left:268.639893pt;}
.x21{left:269.599892pt;}
.x92{left:270.879892pt;}
.x7e{left:274.079921pt;}
.x6{left:275.839890pt;}
.x85{left:282.720000pt;}
.x91{left:283.839886pt;}
.x56{left:287.199885pt;}
.x7a{left:289.119884pt;}
.x7{left:295.039882pt;}
.x66{left:297.279881pt;}
.x4c{left:299.039880pt;}
.x3a{left:301.439879pt;}
.x42{left:302.719879pt;}
.x57{left:304.159878pt;}
.x48{left:306.559877pt;}
.x67{left:308.159877pt;}
.x19{left:309.759949pt;}
.x43{left:311.839875pt;}
.x25{left:315.199874pt;}
.x49{left:317.439873pt;}
.x75{left:318.719873pt;}
.xe{left:321.119872pt;}
.x58{left:323.199871pt;}
.x7f{left:324.479946pt;}
.x4d{left:327.839869pt;}
.x78{left:330.079868pt;}
.x6f{left:333.119867pt;}
.xf{left:339.049198pt;}
.x61{left:349.279860pt;}
.x7b{left:352.159859pt;}
.x86{left:353.120000pt;}
.x28{left:355.519858pt;}
.x29{left:358.559857pt;}
.x7c{left:364.799854pt;}
.x62{left:366.239854pt;}
.x80{left:369.599953pt;}
.x72{left:372.159851pt;}
.x44{left:377.759849pt;}
.x14{left:380.319848pt;}
.x76{left:386.879845pt;}
.x15{left:388.479845pt;}
.x51{left:389.439844pt;}
.x1a{left:390.880072pt;}
.x87{left:394.400000pt;}
.x52{left:400.159840pt;}
.x59{left:406.719837pt;}
.x88{left:409.120000pt;}
.x93{left:411.200000pt;}
.x3{left:412.159835pt;}
.x83{left:414.719834pt;}
.x32{left:424.479830pt;}
.x33{left:433.919826pt;}
.x5a{left:438.079825pt;}
.x68{left:439.359824pt;}
.x8{left:444.479822pt;}
.x69{left:449.919820pt;}
.x94{left:451.840000pt;}
.x2a{left:455.519818pt;}
.x2b{left:458.559817pt;}
.x9{left:464.169148pt;}
.x2c{left:466.559813pt;}
.x5b{left:473.919810pt;}
.x7d{left:475.199810pt;}
.x2d{left:477.279809pt;}
.x34{left:478.559809pt;}
.x95{left:482.720000pt;}
.x89{left:486.720000pt;}
.x63{left:489.599804pt;}
.x10{left:495.999802pt;}
.x81{left:497.280000pt;}
.x35{left:501.119800pt;}
.x8a{left:502.720000pt;}
.x64{left:506.719797pt;}
.xa{left:508.959796pt;}
.x11{left:512.479795pt;}
.xb{left:526.079790pt;}
.x8b{left:533.760000pt;}
.x2e{left:534.719786pt;}
.x5f{left:539.039784pt;}
.x4e{left:543.519783pt;}
.x5c{left:547.999781pt;}
.x8c{left:549.440000pt;}
.x4f{left:560.479776pt;}
.x3b{left:563.519775pt;}
.x5d{left:565.119774pt;}
.x3c{left:569.919772pt;}
.x60{left:578.399769pt;}
.x73{left:579.359768pt;}
.x8d{left:580.320000pt;}
.x36{left:587.839765pt;}
.x82{left:589.120000pt;}
.x65{left:595.839762pt;}
.x16{left:610.399756pt;}
.x37{left:611.999755pt;}
.x12{left:627.199749pt;}
.x38{left:633.119747pt;}
.x8e{left:644.960000pt;}
.x39{left:652.639739pt;}
.x22{left:670.719625pt;}
.x50{left:672.479731pt;}
.x8f{left:675.840000pt;}
.x23{left:683.199727pt;}
}




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