
    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_9f650cecde7d78ca13508415.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_035c7dadd2127ea42d567e13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_57d3c3e23b889b6cce2d35b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_0daf8d4243d1929f1d05fd7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_906afdf7a1751721a50477e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_a4196289014146eec4e4af29.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dd15fae02d36b54c55adb9a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_cc09ef340efb831721d5924f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915039;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_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_035c7dadd2127ea42d567e13.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.928223;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_695ef2fc8b9dd15656889a7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.928223;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_2e22d7ddccede2d7eaab42a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.866699;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;}
.m5{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.558110px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005475px;}
.ls7{letter-spacing:0.006069px;}
.lse{letter-spacing:0.006597px;}
.ls1{letter-spacing:0.158162px;}
.ls8{letter-spacing:0.184602px;}
.ls2{letter-spacing:0.296999px;}
.ls9{letter-spacing:60.069190px;}
.lsd{letter-spacing:70.731878px;}
.lsc{letter-spacing:116.412910px;}
.lsa{letter-spacing:116.949118px;}
.lsb{letter-spacing:117.156820px;}
.ls4{letter-spacing:182.825422px;}
.ls14{letter-spacing:385.351439px;}
.lsf{letter-spacing:391.111434px;}
.ls0{letter-spacing:460.225588px;}
.ls10{letter-spacing:471.031479px;}
.ls13{letter-spacing:787.111434px;}
.ls3{letter-spacing:994.953325px;}
.ls11{letter-spacing:1176.631286px;}
.ls12{letter-spacing:1652.551259px;}
.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;}
}
.ws9{word-spacing:-67.673455px;}
.ws8{word-spacing:-67.551750px;}
.ws0{word-spacing:-62.258871px;}
.ws4{word-spacing:-62.147700px;}
.ws1{word-spacing:-37.355323px;}
.ws5{word-spacing:-37.294689px;}
.ws6{word-spacing:-37.288620px;}
.ws2{word-spacing:-33.701363px;}
.ws7{word-spacing:-33.640920px;}
.ws3{word-spacing:0.000000px;}
._22{margin-left:-10.321331px;}
._37{margin-left:-8.375378px;}
._8{margin-left:-6.864369px;}
._6{margin-left:-5.621415px;}
._1f{margin-left:-3.716724px;}
._4d{margin-left:-2.686648px;}
._1{margin-left:-1.245177px;}
._0{width:1.123379px;}
._35{width:3.127816px;}
._14{width:4.362477px;}
._2c{width:5.619793px;}
._48{width:6.717233px;}
._2d{width:8.054925px;}
._19{width:9.915510px;}
._28{width:10.917349px;}
._4{width:12.451774px;}
._10{width:13.806250px;}
._42{width:14.954086px;}
._9{width:18.676879px;}
._3e{width:19.866833px;}
._13{width:21.782040px;}
._a{width:23.027218px;}
._4a{width:24.154690px;}
._41{width:26.114172px;}
._1b{width:27.363195px;}
._18{width:28.559820px;}
._17{width:30.478873px;}
._b{width:31.713534px;}
._c{width:33.565827px;}
._47{width:39.223824px;}
._46{width:40.358153px;}
._36{width:41.657166px;}
._24{width:42.857637px;}
._32{width:44.199920px;}
._25{width:46.655482px;}
._4c{width:48.305287px;}
._44{width:50.744252px;}
._45{width:52.052730px;}
._33{width:54.720321px;}
._23{width:55.977637px;}
._e{width:59.679999px;}
._f{width:60.892608px;}
._53{width:62.347522px;}
._30{width:63.993924px;}
._2b{width:65.287654px;}
._29{width:67.095240px;}
._16{width:68.502476px;}
._15{width:69.617562px;}
._38{width:78.347798px;}
._39{width:79.555125px;}
._5{width:80.830648px;}
._1e{width:82.668579px;}
._1d{width:83.956240px;}
._20{width:93.233688px;}
._55{width:97.733953px;}
._d{width:101.888037px;}
._31{width:103.215958px;}
._21{width:105.047820px;}
._7a{width:109.392090px;}
._6d{width:113.736360px;}
._7{width:117.477360px;}
._2e{width:120.596883px;}
._2f{width:121.829923px;}
._2a{width:129.842364px;}
._43{width:131.097456px;}
._4b{width:132.558694px;}
._68{width:135.469848px;}
._1a{width:139.182726px;}
._51{width:142.669103px;}
._50{width:144.354171px;}
._6b{width:151.018911px;}
._4f{width:155.026270px;}
._4e{width:156.149649px;}
._3a{width:157.264026px;}
._3f{width:158.482704px;}
._7d{width:162.744287px;}
._1c{width:176.471346px;}
._27{width:204.419604px;}
._3d{width:214.448203px;}
._3c{width:233.025753px;}
._7b{width:247.362208px;}
._34{width:250.473438px;}
._5a{width:263.512317px;}
._12{width:278.820237px;}
._56{width:280.164919px;}
._57{width:289.503750px;}
._3{width:299.075045px;}
._5d{width:300.800937px;}
._26{width:317.284524px;}
._61{width:321.963724px;}
._7f{width:347.935646px;}
._11{width:354.207699px;}
._52{width:362.289652px;}
._7c{width:378.429318px;}
._7e{width:385.183529px;}
._5f{width:395.002953px;}
._60{width:396.540964px;}
._49{width:399.194405px;}
._62{width:433.823515px;}
._64{width:465.727405px;}
._65{width:471.106066px;}
._78{width:484.040148px;}
._2{width:486.144503px;}
._54{width:497.656794px;}
._58{width:502.864677px;}
._40{width:538.796283px;}
._3b{width:540.029322px;}
._5b{width:545.677237px;}
._5e{width:582.959788px;}
._69{width:596.533554px;}
._59{width:618.997161px;}
._66{width:620.248408px;}
._5c{width:657.016719px;}
._63{width:693.574401px;}
._73{width:781.743615px;}
._72{width:930.910233px;}
._67{width:1005.493542px;}
._77{width:1042.782162px;}
._71{width:1080.692259px;}
._75{width:1280.202360px;}
._79{width:1303.197009px;}
._74{width:1429.368978px;}
._6e{width:1585.406034px;}
._70{width:1600.900476px;}
._6c{width:1622.694654px;}
._76{width:1638.195165px;}
._6a{width:1659.977205px;}
._6f{width:1675.514130px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:56.068200px;}
.fs0{font-size:56.168938px;}
.fs5{font-size:62.147700px;}
.fs1{font-size:62.258871px;}
.fs6{font-size:67.551750px;}
.fs7{font-size:67.673455px;}
.fs2{font-size:90.004191px;}
.fs3{font-size:101.508708px;}
.y0{bottom:0.000000px;}
.ye2{bottom:4.319996px;}
.ycf{bottom:4.319997px;}
.yd3{bottom:4.320014px;}
.ydd{bottom:4.320029px;}
.y107{bottom:4.679970px;}
.y136{bottom:4.679971px;}
.yf0{bottom:4.680003px;}
.y113{bottom:4.680004px;}
.yfc{bottom:4.680038px;}
.y9{bottom:6.844813px;}
.y180{bottom:55.427868px;}
.yc8{bottom:55.620002px;}
.y3d{bottom:71.820030px;}
.y7{bottom:71.822393px;}
.y17f{bottom:76.668779px;}
.yc7{bottom:76.679970px;}
.y3c{bottom:107.639992px;}
.y6{bottom:107.641936px;}
.y17b{bottom:112.860008px;}
.y111{bottom:116.460022px;}
.y144{bottom:120.600013px;}
.y18c{bottom:122.941587px;}
.y3b{bottom:125.820030px;}
.y5{bottom:125.820053px;}
.y17a{bottom:130.500000px;}
.y110{bottom:134.100013px;}
.y143{bottom:138.240006px;}
.y3a{bottom:145.080025px;}
.y4{bottom:145.081202px;}
.y179{bottom:148.139992px;}
.y10f{bottom:152.279983px;}
.y142{bottom:155.700027px;}
.y178{bottom:165.600013px;}
.y10e{bottom:169.740006px;}
.y141{bottom:173.340019px;}
.y63{bottom:180.360008px;}
.y177{bottom:183.240006px;}
.y10d{bottom:187.379998px;}
.y140{bottom:191.519989px;}
.y9e{bottom:192.950267px;}
.y6d{bottom:198.179970px;}
.y176{bottom:200.700027px;}
.y62{bottom:204.299973px;}
.y10c{bottom:205.019989px;}
.y36{bottom:207.719178px;}
.y13f{bottom:209.159981px;}
.y9d{bottom:211.308723px;}
.y6c{bottom:216.539977px;}
.y175{bottom:218.340019px;}
.y10b{bottom:222.480011px;}
.y35{bottom:225.360604px;}
.y13e{bottom:226.799973px;}
.y61{bottom:228.240006px;}
.y9c{bottom:229.671448px;}
.y6b{bottom:235.080025px;}
.y174{bottom:235.980011px;}
.y10a{bottom:240.840019px;}
.y34{bottom:242.997205px;}
.y13d{bottom:244.440033px;}
.y9b{bottom:248.025636px;}
.y60{bottom:252.360008px;}
.y6a{bottom:253.259994px;}
.y173{bottom:254.159981px;}
.y109{bottom:259.019989px;}
.y33{bottom:260.638631px;}
.y13c{bottom:261.899986px;}
.y9a{bottom:266.388360px;}
.y69{bottom:271.799973px;}
.y5f{bottom:276.120002px;}
.y108{bottom:277.379998px;}
.y32{bottom:277.919077px;}
.y13b{bottom:280.259994px;}
.yc3{bottom:283.500298px;}
.y99{bottom:284.751085px;}
.y172{bottom:289.440033px;}
.y68{bottom:289.980011px;}
.y106{bottom:290.340019px;}
.y105{bottom:295.019989px;}
.y31{bottom:295.560410px;}
.y13a{bottom:298.440033px;}
.y5e{bottom:300.240006px;}
.y18a{bottom:301.858951px;}
.y98{bottom:303.113810px;}
.y171{bottom:306.899986px;}
.y67{bottom:308.519989px;}
.y30{bottom:313.197104px;}
.y104{bottom:313.200027px;}
.yc2{bottom:315.182631px;}
.y139{bottom:316.799973px;}
.y189{bottom:319.500284px;}
.y97{bottom:321.467914px;}
.y5d{bottom:324.179970px;}
.y170{bottom:324.360008px;}
.y66{bottom:326.700027px;}
.y2f{bottom:330.838530px;}
.y103{bottom:331.559967px;}
.y138{bottom:334.980011px;}
.y188{bottom:336.965998px;}
.y96{bottom:339.830638px;}
.y16f{bottom:342.000000px;}
.y65{bottom:345.240006px;}
.yc1{bottom:348.118883px;}
.y5c{bottom:348.120002px;}
.y2e{bottom:348.304151px;}
.y102{bottom:349.019989px;}
.y137{bottom:353.340019px;}
.y187{bottom:354.602599px;}
.y95{bottom:358.193363px;}
.y16e{bottom:360.179970px;}
.y2d{bottom:365.940845px;}
.y135{bottom:366.120002px;}
.y101{bottom:366.480011px;}
.yc0{bottom:368.458332px;}
.y134{bottom:370.799973px;}
.y5b{bottom:372.059967px;}
.y186{bottom:372.244025px;}
.y94{bottom:376.551819px;}
.y16d{bottom:377.820030px;}
.y64{bottom:378.539977px;}
.y2c{bottom:383.401735px;}
.y100{bottom:384.120002px;}
.ybf{bottom:388.802419px;}
.y133{bottom:388.980011px;}
.y185{bottom:389.880719px;}
.y93{bottom:394.910275px;}
.y16c{bottom:395.460022px;}
.y5a{bottom:396.179970px;}
.y2b{bottom:401.038429px;}
.yff{bottom:401.759994px;}
.y184{bottom:402.658152px;}
.y132{bottom:406.620002px;}
.ybe{bottom:409.141868px;}
.y16b{bottom:413.100013px;}
.y92{bottom:413.268732px;}
.y59{bottom:419.940033px;}
.y131{bottom:424.980011px;}
.ybd{bottom:429.476492px;}
.y16a{bottom:430.740006px;}
.y91{bottom:431.631456px;}
.yfe{bottom:438.299973px;}
.y130{bottom:442.440033px;}
.y58{bottom:444.059967px;}
.y2a{bottom:444.239405px;}
.y169{bottom:448.200027px;}
.ybc{bottom:449.825404px;}
.y90{bottom:449.994181px;}
.yfd{bottom:456.480011px;}
.y12f{bottom:460.080025px;}
.y29{bottom:461.876053px;}
.y168{bottom:466.559967px;}
.y57{bottom:468.000000px;}
.y8f{bottom:468.356906px;}
.ybb{bottom:470.160028px;}
.yfa{bottom:474.840019px;}
.y12e{bottom:477.720017px;}
.y28{bottom:479.341721px;}
.y167{bottom:484.019989px;}
.y8e{bottom:486.711052px;}
.yfb{bottom:487.799973px;}
.yba{bottom:490.499430px;}
.y56{bottom:491.940033px;}
.yf9{bottom:492.480011px;}
.y12d{bottom:495.360008px;}
.y27{bottom:496.983146px;}
.y166{bottom:501.480011px;}
.y8d{bottom:505.249459px;}
.yf8{bottom:510.659981px;}
.yb9{bottom:511.019322px;}
.y12c{bottom:513.539977px;}
.y26{bottom:514.439304px;}
.y55{bottom:515.879998px;}
.y165{bottom:519.120002px;}
.y8c{bottom:523.436501px;}
.yf7{bottom:529.019989px;}
.yb8{bottom:531.182966px;}
.y12b{bottom:531.899986px;}
.y25{bottom:532.075952px;}
.y164{bottom:537.480011px;}
.y54{bottom:540.000000px;}
.y8b{bottom:541.974908px;}
.yf6{bottom:546.480011px;}
.y24{bottom:549.174296px;}
.y12a{bottom:550.080025px;}
.yb7{bottom:551.517591px;}
.y163{bottom:554.940033px;}
.y8a{bottom:560.153371px;}
.y53{bottom:563.759994px;}
.yf5{bottom:564.120002px;}
.y23{bottom:565.563276px;}
.y129{bottom:568.440033px;}
.yb6{bottom:571.861724px;}
.y162{bottom:573.299973px;}
.y89{bottom:578.691779px;}
.yf4{bottom:582.480011px;}
.y22{bottom:583.204702px;}
.y128{bottom:586.620002px;}
.y52{bottom:587.879998px;}
.y161{bottom:590.940033px;}
.yb5{bottom:592.381616px;}
.y88{bottom:596.874552px;}
.y126{bottom:599.580025px;}
.yf3{bottom:600.659981px;}
.y21{bottom:600.841350px;}
.y127{bottom:604.259994px;}
.y160{bottom:608.399986px;}
.y51{bottom:611.820030px;}
.yb4{bottom:612.721019px;}
.y87{bottom:615.417228px;}
.y20{bottom:618.482729px;}
.yf2{bottom:619.019989px;}
.y125{bottom:622.439999px;}
.y15f{bottom:625.860008px;}
.yb3{bottom:630.177177px;}
.yef{bottom:631.980011px;}
.y86{bottom:633.775684px;}
.y50{bottom:635.759994px;}
.y1f{bottom:635.938887px;}
.yf1{bottom:636.660015px;}
.y124{bottom:639.899986px;}
.y15e{bottom:644.220017px;}
.yb2{bottom:647.818602px;}
.y85{bottom:652.134141px;}
.y1e{bottom:653.404554px;}
.yee{bottom:654.839985px;}
.y123{bottom:658.259994px;}
.y4f{bottom:659.699993px;}
.y15d{bottom:661.860008px;}
.yb1{bottom:665.455250px;}
.y84{bottom:670.492555px;}
.y1d{bottom:671.041202px;}
.yed{bottom:672.300007px;}
.y122{bottom:675.899986px;}
.y15c{bottom:680.040012px;}
.yb0{bottom:682.920918px;}
.y4e{bottom:683.819995px;}
.y1c{bottom:688.682628px;}
.y83{bottom:688.855280px;}
.yec{bottom:689.939999px;}
.y121{bottom:693.360008px;}
.y15b{bottom:698.399986px;}
.yaf{bottom:700.377076px;}
.y1b{bottom:706.138786px;}
.y82{bottom:707.218004px;}
.yeb{bottom:707.399986px;}
.y4d{bottom:707.579990px;}
.y120{bottom:711.000000px;}
.y15a{bottom:715.860008px;}
.yae{bottom:718.018455px;}
.y1a{bottom:723.779238px;}
.y81{bottom:725.396467px;}
.yea{bottom:725.759994px;}
.y11f{bottom:729.360008px;}
.y4c{bottom:731.699993px;}
.y183{bottom:733.317178px;}
.y159{bottom:733.500000px;}
.ye9{bottom:734.220017px;}
.yad{bottom:735.657979px;}
.y19{bottom:741.418762px;}
.y80{bottom:743.934875px;}
.ye8{bottom:743.939999px;}
.y182{bottom:746.100317px;}
.y11e{bottom:747.540012px;}
.y158{bottom:751.139992px;}
.yac{bottom:753.297503px;}
.y4b{bottom:755.639992px;}
.y18{bottom:758.883455px;}
.y7f{bottom:762.118485px;}
.ye7{bottom:762.300007px;}
.y156{bottom:764.100013px;}
.y11d{bottom:765.899986px;}
.y157{bottom:768.779983px;}
.ye6{bottom:770.759994px;}
.yab{bottom:770.762196px;}
.y17{bottom:776.340587px;}
.y4a{bottom:779.579990px;}
.ye5{bottom:780.480011px;}
.y7e{bottom:780.658609px;}
.y11b{bottom:784.079990px;}
.y155{bottom:786.959988px;}
.yaa{bottom:788.401720px;}
.y16{bottom:793.980065px;}
.ye4{bottom:794.519989px;}
.y11c{bottom:797.040012px;}
.ye3{bottom:798.839985px;}
.y7d{bottom:799.013633px;}
.y11a{bottom:801.720017px;}
.y49{bottom:803.519989px;}
.y154{bottom:804.420010px;}
.ya9{bottom:805.858806px;}
.ye1{bottom:807.300007px;}
.y15{bottom:811.619588px;}
.ye0{bottom:817.019989px;}
.y7c{bottom:817.375521px;}
.y119{bottom:819.899986px;}
.y153{bottom:822.060001px;}
.ya8{bottom:823.498330px;}
.ydf{bottom:825.660015px;}
.y48{bottom:827.639992px;}
.y14{bottom:829.259089px;}
.yde{bottom:835.379998px;}
.y7b{bottom:835.737367px;}
.y118{bottom:837.540012px;}
.y18b{bottom:838.082631px;}
.y152{bottom:839.699993px;}
.ya7{bottom:840.963023px;}
.ydc{bottom:843.839985px;}
.y12{bottom:848.880193px;}
.y13{bottom:848.882191px;}
.y47{bottom:851.399986px;}
.ydb{bottom:853.740006px;}
.y7a{bottom:854.099234px;}
.y117{bottom:855.899986px;}
.y151{bottom:857.160015px;}
.ya6{bottom:858.602523px;}
.yda{bottom:871.199993px;}
.y79{bottom:872.454258px;}
.y116{bottom:873.540012px;}
.y11{bottom:874.446557px;}
.y150{bottom:874.800007px;}
.y46{bottom:875.519989px;}
.ya5{bottom:876.242047px;}
.y14f{bottom:888.120002px;}
.yd9{bottom:889.560001px;}
.y78{bottom:890.816125px;}
.y115{bottom:890.819996px;}
.y14e{bottom:892.439999px;}
.ya4{bottom:893.881548px;}
.yd8{bottom:898.019989px;}
.y45{bottom:899.459988px;}
.y10{bottom:900.001958px;}
.y14c{bottom:905.400003px;}
.yd7{bottom:907.740006px;}
.y114{bottom:908.460004px;}
.y77{bottom:909.177992px;}
.y14d{bottom:910.080008px;}
.ya3{bottom:911.163850px;}
.y44{bottom:923.400003px;}
.yd6{bottom:926.099997px;}
.yf{bottom:926.285457px;}
.y76{bottom:927.718136px;}
.y14b{bottom:928.259994px;}
.yd5{bottom:934.560001px;}
.yd4{bottom:944.280001px;}
.ya2{bottom:944.818377px;}
.y14a{bottom:945.719999px;}
.y75{bottom:945.894862px;}
.y43{bottom:947.340002px;}
.yd2{bottom:952.919992px;}
.ye{bottom:960.836102px;}
.yd{bottom:960.837200px;}
.yd1{bottom:962.639992px;}
.ya1{bottom:963.180244px;}
.y149{bottom:963.360008px;}
.y74{bottom:964.435006px;}
.y8{bottom:965.340697px;}
.y42{bottom:971.460004px;}
.yd0{bottom:980.819996px;}
.ya0{bottom:981.535269px;}
.y148{bottom:981.539995px;}
.y73{bottom:982.618596px;}
.yce{bottom:989.460004px;}
.y41{bottom:995.219999px;}
.yc{bottom:995.577063px;}
.ycd{bottom:999.180004px;}
.y9f{bottom:1000.083393px;}
.y72{bottom:1001.158740px;}
.y147{bottom:1016.819996px;}
.ycc{bottom:1017.360008px;}
.y71{bottom:1019.335477px;}
.y40{bottom:1019.340002px;}
.y112{bottom:1030.319996px;}
.ycb{bottom:1035.000000px;}
.y70{bottom:1037.875621px;}
.yb{bottom:1038.785172px;}
.y3f{bottom:1043.280001px;}
.y146{bottom:1047.959997px;}
.y145{bottom:1052.640000px;}
.yca{bottom:1053.360000px;}
.y6f{bottom:1056.059221px;}
.y3e{bottom:1067.219999px;}
.yc9{bottom:1070.819996px;}
.y181{bottom:1070.823822px;}
.ya{bottom:1073.521799px;}
.y6e{bottom:1074.421088px;}
.y17e{bottom:1088.637655px;}
.yc6{bottom:1088.819996px;}
.y3{bottom:1091.700908px;}
.y39{bottom:1091.879998px;}
.yc5{bottom:1107.900003px;}
.y17d{bottom:1107.902120px;}
.y2{bottom:1109.340414px;}
.y38{bottom:1109.519998px;}
.y17c{bottom:1126.256675px;}
.yc4{bottom:1126.439999px;}
.y1{bottom:1126.441805px;}
.y37{bottom:1126.619999px;}
.h19{height:4.319996px;}
.h16{height:4.319997px;}
.h17{height:4.320014px;}
.h18{height:4.320029px;}
.h1a{height:16.740006px;}
.h1b{height:17.279983px;}
.h23{height:17.279984px;}
.h22{height:17.280001px;}
.h1d{height:17.459954px;}
.h1f{height:17.459988px;}
.h21{height:17.460004px;}
.h1e{height:17.460006px;}
.h1c{height:17.460021px;}
.h20{height:17.460022px;}
.h5{height:25.742175px;}
.h11{height:38.026724px;}
.h12{height:38.095047px;}
.hb{height:39.587215px;}
.h1{height:39.658342px;}
.h10{height:40.819183px;}
.ha{height:40.892523px;}
.hf{height:42.149978px;}
.h13{height:42.217754px;}
.h9{height:42.225377px;}
.hc{height:43.879675px;}
.h2{height:43.958168px;}
.he{height:45.245225px;}
.h4{height:45.326160px;}
.h14{height:47.695230px;}
.h24{height:47.781160px;}
.h15{height:57.095742px;}
.h25{height:57.198609px;}
.hd{height:61.813899px;}
.h3{height:61.924473px;}
.h6{height:63.547881px;}
.h7{height:71.670699px;}
.h8{height:75.105991px;}
.h0{height:1188.000000px;}
.wc{width:7.199958px;}
.w3{width:7.379997px;}
.w1{width:7.556910px;}
.w2{width:9.360009px;}
.wb{width:18.719982px;}
.w5{width:53.820029px;}
.w4{width:65.159999px;}
.wd{width:84.239989px;}
.w8{width:93.060002px;}
.w9{width:100.259960px;}
.w7{width:100.439964px;}
.w6{width:100.620003px;}
.wa{width:205.019990px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:140.401689px;}
.xc{left:147.244595px;}
.x14{left:148.319996px;}
.xd{left:153.902142px;}
.x12{left:198.180005px;}
.x3{left:199.798909px;}
.x1{left:201.603211px;}
.x11{left:209.879998px;}
.x19{left:213.479994px;}
.x25{left:232.199993px;}
.x1e{left:241.379998px;}
.x2{left:246.419904px;}
.xe{left:248.763844px;}
.x6{left:262.265376px;}
.x7{left:277.563814px;}
.x8{left:300.239302px;}
.xb{left:321.478231px;}
.x9{left:323.098669px;}
.x26{left:337.860008px;}
.x17{left:339.300007px;}
.x22{left:353.160015px;}
.x13{left:366.300007px;}
.x4{left:374.037820px;}
.x1f{left:438.300007px;}
.x23{left:457.019989px;}
.x10{left:483.480011px;}
.x20{left:502.920010px;}
.x27{left:507.779983px;}
.x18{left:525.420010px;}
.x15{left:540.720017px;}
.x24{left:595.980011px;}
.x1d{left:608.039978px;}
.x1c{left:610.019989px;}
.x21{left:611.100014px;}
.x1a{left:613.799973px;}
.xa{left:631.084316px;}
.x29{left:636.297110px;}
.x16{left:643.860008px;}
.xf{left:668.337208px;}
.x1b{left:675.539978px;}
.x28{left:765.903695px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.273876pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.004867pt;}
.ls7{letter-spacing:0.005395pt;}
.lse{letter-spacing:0.005864pt;}
.ls1{letter-spacing:0.140588pt;}
.ls8{letter-spacing:0.164090pt;}
.ls2{letter-spacing:0.263999pt;}
.ls9{letter-spacing:53.394835pt;}
.lsd{letter-spacing:62.872781pt;}
.lsc{letter-spacing:103.478142pt;}
.lsa{letter-spacing:103.954771pt;}
.lsb{letter-spacing:104.139395pt;}
.ls4{letter-spacing:162.511486pt;}
.ls14{letter-spacing:342.534612pt;}
.lsf{letter-spacing:347.654608pt;}
.ls0{letter-spacing:409.089411pt;}
.ls10{letter-spacing:418.694648pt;}
.ls13{letter-spacing:699.654608pt;}
.ls3{letter-spacing:884.402956pt;}
.ls11{letter-spacing:1045.894476pt;}
.ls12{letter-spacing:1468.934452pt;}
.ws9{word-spacing:-60.154182pt;}
.ws8{word-spacing:-60.046000pt;}
.ws0{word-spacing:-55.341219pt;}
.ws4{word-spacing:-55.242400pt;}
.ws1{word-spacing:-33.204731pt;}
.ws5{word-spacing:-33.150835pt;}
.ws6{word-spacing:-33.145440pt;}
.ws2{word-spacing:-29.956767pt;}
.ws7{word-spacing:-29.903040pt;}
.ws3{word-spacing:0.000000pt;}
._22{margin-left:-9.174516pt;}
._37{margin-left:-7.444780pt;}
._8{margin-left:-6.101661pt;}
._6{margin-left:-4.996813pt;}
._1f{margin-left:-3.303754pt;}
._4d{margin-left:-2.388132pt;}
._1{margin-left:-1.106824pt;}
._0{width:0.998559pt;}
._35{width:2.780281pt;}
._14{width:3.877758pt;}
._2c{width:4.995371pt;}
._48{width:5.970874pt;}
._2d{width:7.159933pt;}
._19{width:8.813787pt;}
._28{width:9.704310pt;}
._4{width:11.068244pt;}
._10{width:12.272222pt;}
._42{width:13.292521pt;}
._9{width:16.601670pt;}
._3e{width:17.659407pt;}
._13{width:19.361814pt;}
._a{width:20.468638pt;}
._4a{width:21.470836pt;}
._41{width:23.212598pt;}
._1b{width:24.322840pt;}
._18{width:25.386507pt;}
._17{width:27.092331pt;}
._b{width:28.189808pt;}
._c{width:29.836291pt;}
._47{width:34.865621pt;}
._46{width:35.873914pt;}
._36{width:37.028592pt;}
._24{width:38.095677pt;}
._32{width:39.288817pt;}
._25{width:41.471540pt;}
._4c{width:42.938033pt;}
._44{width:45.106002pt;}
._45{width:46.269094pt;}
._33{width:48.640286pt;}
._23{width:49.757900pt;}
._e{width:53.048888pt;}
._f{width:54.126762pt;}
._53{width:55.420019pt;}
._30{width:56.883488pt;}
._2b{width:58.033470pt;}
._29{width:59.640213pt;}
._16{width:60.891090pt;}
._15{width:61.882278pt;}
._38{width:69.642487pt;}
._39{width:70.715667pt;}
._5{width:71.849465pt;}
._1e{width:73.483182pt;}
._1d{width:74.627769pt;}
._20{width:82.874390pt;}
._55{width:86.874625pt;}
._d{width:90.567144pt;}
._31{width:91.747518pt;}
._21{width:93.375840pt;}
._7a{width:97.237414pt;}
._6d{width:101.098987pt;}
._7{width:104.424320pt;}
._2e{width:107.197230pt;}
._2f{width:108.293265pt;}
._2a{width:115.415434pt;}
._43{width:116.531072pt;}
._4b{width:117.829951pt;}
._68{width:120.417642pt;}
._1a{width:123.717979pt;}
._51{width:126.816981pt;}
._50{width:128.314819pt;}
._6b{width:134.239032pt;}
._4f{width:137.801129pt;}
._4e{width:138.799688pt;}
._3a{width:139.790246pt;}
._3f{width:140.873515pt;}
._7d{width:144.661588pt;}
._1c{width:156.863419pt;}
._27{width:181.706314pt;}
._3d{width:190.620625pt;}
._3c{width:207.134003pt;}
._7b{width:219.877518pt;}
._34{width:222.643056pt;}
._5a{width:234.233171pt;}
._12{width:247.840211pt;}
._56{width:249.035484pt;}
._57{width:257.336667pt;}
._3{width:265.844484pt;}
._5d{width:267.378611pt;}
._26{width:282.030688pt;}
._61{width:286.189977pt;}
._7f{width:309.276130pt;}
._11{width:314.851288pt;}
._52{width:322.035246pt;}
._7c{width:336.381616pt;}
._7e{width:342.385359pt;}
._5f{width:351.113736pt;}
._60{width:352.480857pt;}
._49{width:354.839471pt;}
._62{width:385.620902pt;}
._64{width:413.979916pt;}
._65{width:418.760947pt;}
._78{width:430.257909pt;}
._2{width:432.128447pt;}
._54{width:442.361594pt;}
._58{width:446.990824pt;}
._40{width:478.930029pt;}
._3b{width:480.026064pt;}
._5b{width:485.046433pt;}
._5e{width:518.186478pt;}
._69{width:530.252048pt;}
._59{width:550.219699pt;}
._66{width:551.331918pt;}
._5c{width:584.014862pt;}
._63{width:616.510579pt;}
._73{width:694.883213pt;}
._72{width:827.475762pt;}
._67{width:893.772037pt;}
._77{width:926.917477pt;}
._71{width:960.615341pt;}
._75{width:1137.957653pt;}
._79{width:1158.397341pt;}
._74{width:1270.550203pt;}
._6e{width:1409.249808pt;}
._70{width:1423.022645pt;}
._6c{width:1442.395248pt;}
._76{width:1456.173480pt;}
._6a{width:1475.535294pt;}
._6f{width:1489.345894pt;}
.fs4{font-size:49.838400pt;}
.fs0{font-size:49.927945pt;}
.fs5{font-size:55.242400pt;}
.fs1{font-size:55.341219pt;}
.fs6{font-size:60.046000pt;}
.fs7{font-size:60.154182pt;}
.fs2{font-size:80.003726pt;}
.fs3{font-size:90.229963pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.839996pt;}
.ycf{bottom:3.839997pt;}
.yd3{bottom:3.840012pt;}
.ydd{bottom:3.840026pt;}
.y107{bottom:4.159973pt;}
.y136{bottom:4.159974pt;}
.yf0{bottom:4.160003pt;}
.y113{bottom:4.160004pt;}
.yfc{bottom:4.160034pt;}
.y9{bottom:6.084279pt;}
.y180{bottom:49.269216pt;}
.yc8{bottom:49.440002pt;}
.y3d{bottom:63.840027pt;}
.y7{bottom:63.842127pt;}
.y17f{bottom:68.150026pt;}
.yc7{bottom:68.159973pt;}
.y3c{bottom:95.679993pt;}
.y6{bottom:95.681721pt;}
.y17b{bottom:100.320007pt;}
.y111{bottom:103.520020pt;}
.y144{bottom:107.200012pt;}
.y18c{bottom:109.281411pt;}
.y3b{bottom:111.840027pt;}
.y5{bottom:111.840047pt;}
.y17a{bottom:116.000000pt;}
.y110{bottom:119.200012pt;}
.y143{bottom:122.880005pt;}
.y3a{bottom:128.960022pt;}
.y4{bottom:128.961068pt;}
.y179{bottom:131.679993pt;}
.y10f{bottom:135.359985pt;}
.y142{bottom:138.400024pt;}
.y178{bottom:147.200012pt;}
.y10e{bottom:150.880005pt;}
.y141{bottom:154.080017pt;}
.y63{bottom:160.320007pt;}
.y177{bottom:162.880005pt;}
.y10d{bottom:166.559998pt;}
.y140{bottom:170.239990pt;}
.y9e{bottom:171.511349pt;}
.y6d{bottom:176.159973pt;}
.y176{bottom:178.400024pt;}
.y62{bottom:181.599976pt;}
.y10c{bottom:182.239990pt;}
.y36{bottom:184.639269pt;}
.y13f{bottom:185.919983pt;}
.y9d{bottom:187.829976pt;}
.y6c{bottom:192.479980pt;}
.y175{bottom:194.080017pt;}
.y10b{bottom:197.760010pt;}
.y35{bottom:200.320537pt;}
.y13e{bottom:201.599976pt;}
.y61{bottom:202.880005pt;}
.y9c{bottom:204.152398pt;}
.y6b{bottom:208.960022pt;}
.y174{bottom:209.760010pt;}
.y10a{bottom:214.080017pt;}
.y34{bottom:215.997516pt;}
.y13d{bottom:217.280029pt;}
.y9b{bottom:220.467232pt;}
.y60{bottom:224.320007pt;}
.y6a{bottom:225.119995pt;}
.y173{bottom:225.919983pt;}
.y109{bottom:230.239990pt;}
.y33{bottom:231.678783pt;}
.y13c{bottom:232.799988pt;}
.y9a{bottom:236.789654pt;}
.y69{bottom:241.599976pt;}
.y5f{bottom:245.440002pt;}
.y108{bottom:246.559998pt;}
.y32{bottom:247.039180pt;}
.y13b{bottom:249.119995pt;}
.yc3{bottom:252.000265pt;}
.y99{bottom:253.112076pt;}
.y172{bottom:257.280029pt;}
.y68{bottom:257.760010pt;}
.y106{bottom:258.080017pt;}
.y105{bottom:262.239990pt;}
.y31{bottom:262.720364pt;}
.y13a{bottom:265.280029pt;}
.y5e{bottom:266.880005pt;}
.y18a{bottom:268.319068pt;}
.y98{bottom:269.434498pt;}
.y171{bottom:272.799988pt;}
.y67{bottom:274.239990pt;}
.y30{bottom:278.397426pt;}
.y104{bottom:278.400024pt;}
.yc2{bottom:280.162339pt;}
.y139{bottom:281.599976pt;}
.y189{bottom:284.000252pt;}
.y97{bottom:285.749257pt;}
.y5d{bottom:288.159973pt;}
.y170{bottom:288.320007pt;}
.y66{bottom:290.400024pt;}
.y2f{bottom:294.078693pt;}
.y103{bottom:294.719971pt;}
.y138{bottom:297.760010pt;}
.y188{bottom:299.525331pt;}
.y96{bottom:302.071679pt;}
.y16f{bottom:304.000000pt;}
.y65{bottom:306.880005pt;}
.yc1{bottom:309.439007pt;}
.y5c{bottom:309.440002pt;}
.y2e{bottom:309.603690pt;}
.y102{bottom:310.239990pt;}
.y137{bottom:314.080017pt;}
.y187{bottom:315.202310pt;}
.y95{bottom:318.394101pt;}
.y16e{bottom:320.159973pt;}
.y2d{bottom:325.280751pt;}
.y135{bottom:325.440002pt;}
.y101{bottom:325.760010pt;}
.yc0{bottom:327.518517pt;}
.y134{bottom:329.599976pt;}
.y5b{bottom:330.719971pt;}
.y186{bottom:330.883578pt;}
.y94{bottom:334.712728pt;}
.y16d{bottom:335.840027pt;}
.y64{bottom:336.479980pt;}
.y2c{bottom:340.801542pt;}
.y100{bottom:341.440002pt;}
.ybf{bottom:345.602150pt;}
.y133{bottom:345.760010pt;}
.y185{bottom:346.560639pt;}
.y93{bottom:351.031356pt;}
.y16c{bottom:351.520020pt;}
.y5a{bottom:352.159973pt;}
.y2b{bottom:356.478604pt;}
.yff{bottom:357.119995pt;}
.y184{bottom:357.918357pt;}
.y132{bottom:361.440002pt;}
.ybe{bottom:363.681660pt;}
.y16b{bottom:367.200012pt;}
.y92{bottom:367.349984pt;}
.y59{bottom:373.280029pt;}
.y131{bottom:377.760010pt;}
.ybd{bottom:381.756882pt;}
.y16a{bottom:382.880005pt;}
.y91{bottom:383.672406pt;}
.yfe{bottom:389.599976pt;}
.y130{bottom:393.280029pt;}
.y58{bottom:394.719971pt;}
.y2a{bottom:394.879471pt;}
.y169{bottom:398.400024pt;}
.ybc{bottom:399.844803pt;}
.y90{bottom:399.994828pt;}
.yfd{bottom:405.760010pt;}
.y12f{bottom:408.960022pt;}
.y29{bottom:410.556492pt;}
.y168{bottom:414.719971pt;}
.y57{bottom:416.000000pt;}
.y8f{bottom:416.317250pt;}
.ybb{bottom:417.920025pt;}
.yfa{bottom:422.080017pt;}
.y12e{bottom:424.640015pt;}
.y28{bottom:426.081529pt;}
.y167{bottom:430.239990pt;}
.y8e{bottom:432.632046pt;}
.yfb{bottom:433.599976pt;}
.yba{bottom:435.999494pt;}
.y56{bottom:437.280029pt;}
.yf9{bottom:437.760010pt;}
.y12d{bottom:440.320007pt;}
.y27{bottom:441.762797pt;}
.y166{bottom:445.760010pt;}
.y8d{bottom:449.110630pt;}
.yf8{bottom:453.919983pt;}
.yb9{bottom:454.239398pt;}
.y12c{bottom:456.479980pt;}
.y26{bottom:457.279382pt;}
.y55{bottom:458.559998pt;}
.y165{bottom:461.440002pt;}
.y8c{bottom:465.276890pt;}
.yf7{bottom:470.239990pt;}
.yb8{bottom:472.162637pt;}
.y12b{bottom:472.799988pt;}
.y25{bottom:472.956402pt;}
.y164{bottom:477.760010pt;}
.y54{bottom:480.000000pt;}
.y8b{bottom:481.755474pt;}
.yf6{bottom:485.760010pt;}
.y24{bottom:488.154930pt;}
.y12a{bottom:488.960022pt;}
.yb7{bottom:490.237858pt;}
.y163{bottom:493.280029pt;}
.y8a{bottom:497.914108pt;}
.y53{bottom:501.119995pt;}
.yf5{bottom:501.440002pt;}
.y23{bottom:502.722912pt;}
.y129{bottom:505.280029pt;}
.yb6{bottom:508.321533pt;}
.y162{bottom:509.599976pt;}
.y89{bottom:514.392692pt;}
.yf4{bottom:517.760010pt;}
.y22{bottom:518.404179pt;}
.y128{bottom:521.440002pt;}
.y52{bottom:522.559998pt;}
.y161{bottom:525.280029pt;}
.yb5{bottom:526.561437pt;}
.y88{bottom:530.555158pt;}
.y126{bottom:532.960022pt;}
.yf3{bottom:533.919983pt;}
.y21{bottom:534.081200pt;}
.y127{bottom:537.119995pt;}
.y160{bottom:540.799988pt;}
.y51{bottom:543.840027pt;}
.yb4{bottom:544.640905pt;}
.y87{bottom:547.037536pt;}
.y20{bottom:549.762426pt;}
.yf2{bottom:550.239990pt;}
.y125{bottom:553.279999pt;}
.y15f{bottom:556.320007pt;}
.yb3{bottom:560.157490pt;}
.yef{bottom:561.760010pt;}
.y86{bottom:563.356164pt;}
.y50{bottom:565.119995pt;}
.y1f{bottom:565.279011pt;}
.yf1{bottom:565.920013pt;}
.y124{bottom:568.799988pt;}
.y15e{bottom:572.640015pt;}
.yb2{bottom:575.838758pt;}
.y85{bottom:579.674792pt;}
.y1e{bottom:580.804048pt;}
.yee{bottom:582.079987pt;}
.y123{bottom:585.119995pt;}
.y4f{bottom:586.399994pt;}
.y15d{bottom:588.320007pt;}
.yb1{bottom:591.515778pt;}
.y84{bottom:595.993382pt;}
.y1d{bottom:596.481069pt;}
.yed{bottom:597.600006pt;}
.y122{bottom:600.799988pt;}
.y15c{bottom:604.480011pt;}
.yb0{bottom:607.040816pt;}
.y4e{bottom:607.839996pt;}
.y1c{bottom:612.162336pt;}
.y83{bottom:612.315804pt;}
.yec{bottom:613.279999pt;}
.y121{bottom:616.320007pt;}
.y15b{bottom:620.799988pt;}
.yaf{bottom:622.557401pt;}
.y1b{bottom:627.678921pt;}
.y82{bottom:628.638226pt;}
.yeb{bottom:628.799988pt;}
.y4d{bottom:628.959991pt;}
.y120{bottom:632.000000pt;}
.y15a{bottom:636.320007pt;}
.yae{bottom:638.238627pt;}
.y1a{bottom:643.359322pt;}
.y81{bottom:644.796860pt;}
.yea{bottom:645.119995pt;}
.y11f{bottom:648.320007pt;}
.y4c{bottom:650.399994pt;}
.y183{bottom:651.837492pt;}
.y159{bottom:652.000000pt;}
.ye9{bottom:652.640015pt;}
.yad{bottom:653.918203pt;}
.y19{bottom:659.038899pt;}
.y80{bottom:661.275444pt;}
.ye8{bottom:661.279999pt;}
.y182{bottom:663.200281pt;}
.y11e{bottom:664.480011pt;}
.y158{bottom:667.679993pt;}
.yac{bottom:669.597780pt;}
.y4b{bottom:671.679993pt;}
.y18{bottom:674.563071pt;}
.y7f{bottom:677.438654pt;}
.ye7{bottom:677.600006pt;}
.y156{bottom:679.200012pt;}
.y11d{bottom:680.799988pt;}
.y157{bottom:683.359985pt;}
.ye6{bottom:685.119995pt;}
.yab{bottom:685.121952pt;}
.y17{bottom:690.080522pt;}
.y4a{bottom:692.959991pt;}
.ye5{bottom:693.760010pt;}
.y7e{bottom:693.918763pt;}
.y11b{bottom:696.959991pt;}
.y155{bottom:699.519989pt;}
.yaa{bottom:700.801529pt;}
.y16{bottom:705.760057pt;}
.ye4{bottom:706.239990pt;}
.y11c{bottom:708.480011pt;}
.ye3{bottom:710.079987pt;}
.y7d{bottom:710.234341pt;}
.y11a{bottom:712.640015pt;}
.y49{bottom:714.239990pt;}
.y154{bottom:715.040009pt;}
.ya9{bottom:716.318938pt;}
.ye1{bottom:717.600006pt;}
.y15{bottom:721.439634pt;}
.ye0{bottom:726.239990pt;}
.y7c{bottom:726.556019pt;}
.y119{bottom:728.799988pt;}
.y153{bottom:730.720001pt;}
.ya8{bottom:731.998515pt;}
.ydf{bottom:733.920013pt;}
.y48{bottom:735.679993pt;}
.y14{bottom:737.119190pt;}
.yde{bottom:742.559998pt;}
.y7b{bottom:742.877659pt;}
.y118{bottom:744.480011pt;}
.y18b{bottom:744.962339pt;}
.y152{bottom:746.399994pt;}
.ya7{bottom:747.522687pt;}
.ydc{bottom:750.079987pt;}
.y12{bottom:754.560171pt;}
.y13{bottom:754.561948pt;}
.y47{bottom:756.799988pt;}
.ydb{bottom:758.880005pt;}
.y7a{bottom:759.199319pt;}
.y117{bottom:760.799988pt;}
.y151{bottom:761.920013pt;}
.ya6{bottom:763.202243pt;}
.yda{bottom:774.399994pt;}
.y79{bottom:775.514896pt;}
.y116{bottom:776.480011pt;}
.y11{bottom:777.285829pt;}
.y150{bottom:777.600006pt;}
.y46{bottom:778.239990pt;}
.ya5{bottom:778.881820pt;}
.y14f{bottom:789.440002pt;}
.yd9{bottom:790.720001pt;}
.y78{bottom:791.836555pt;}
.y115{bottom:791.839996pt;}
.y14e{bottom:793.279999pt;}
.ya4{bottom:794.561376pt;}
.yd8{bottom:798.239990pt;}
.y45{bottom:799.519989pt;}
.y10{bottom:800.001740pt;}
.y14c{bottom:804.800003pt;}
.yd7{bottom:806.880005pt;}
.y114{bottom:807.520004pt;}
.y77{bottom:808.158215pt;}
.y14d{bottom:808.960007pt;}
.ya3{bottom:809.923422pt;}
.y44{bottom:820.800003pt;}
.yd6{bottom:823.199997pt;}
.yf{bottom:823.364850pt;}
.y76{bottom:824.638343pt;}
.y14b{bottom:825.119995pt;}
.yd5{bottom:830.720001pt;}
.yd4{bottom:839.360001pt;}
.ya2{bottom:839.838558pt;}
.y14a{bottom:840.639999pt;}
.y75{bottom:840.795433pt;}
.y43{bottom:842.080002pt;}
.yd2{bottom:847.039993pt;}
.ye{bottom:854.076535pt;}
.yd{bottom:854.077511pt;}
.yd1{bottom:855.679993pt;}
.ya1{bottom:856.160217pt;}
.y149{bottom:856.320007pt;}
.y74{bottom:857.275561pt;}
.y8{bottom:858.080619pt;}
.y42{bottom:863.520004pt;}
.yd0{bottom:871.839996pt;}
.ya0{bottom:872.475794pt;}
.y148{bottom:872.479996pt;}
.y73{bottom:873.438752pt;}
.yce{bottom:879.520004pt;}
.y41{bottom:884.639999pt;}
.yc{bottom:884.957390pt;}
.ycd{bottom:888.160004pt;}
.y9f{bottom:888.963016pt;}
.y72{bottom:889.918880pt;}
.y147{bottom:903.839996pt;}
.ycc{bottom:904.320007pt;}
.y71{bottom:906.075979pt;}
.y40{bottom:906.080002pt;}
.y112{bottom:915.839996pt;}
.ycb{bottom:920.000000pt;}
.y70{bottom:922.556107pt;}
.yb{bottom:923.364597pt;}
.y3f{bottom:927.360001pt;}
.y146{bottom:931.519997pt;}
.y145{bottom:935.680000pt;}
.yca{bottom:936.320000pt;}
.y6f{bottom:938.719307pt;}
.y3e{bottom:948.639999pt;}
.yc9{bottom:951.839996pt;}
.y181{bottom:951.843398pt;}
.ya{bottom:954.241599pt;}
.y6e{bottom:955.040967pt;}
.y17e{bottom:967.677916pt;}
.yc6{bottom:967.839996pt;}
.y3{bottom:970.400807pt;}
.y39{bottom:970.559998pt;}
.yc5{bottom:984.800003pt;}
.y17d{bottom:984.801885pt;}
.y2{bottom:986.080368pt;}
.y38{bottom:986.239998pt;}
.y17c{bottom:1001.117045pt;}
.yc4{bottom:1001.279999pt;}
.y1{bottom:1001.281605pt;}
.y37{bottom:1001.439999pt;}
.h19{height:3.839996pt;}
.h16{height:3.839997pt;}
.h17{height:3.840012pt;}
.h18{height:3.840026pt;}
.h1a{height:14.880005pt;}
.h1b{height:15.359985pt;}
.h23{height:15.359986pt;}
.h22{height:15.360001pt;}
.h1d{height:15.519959pt;}
.h1f{height:15.519989pt;}
.h21{height:15.520004pt;}
.h1e{height:15.520005pt;}
.h1c{height:15.520019pt;}
.h20{height:15.520020pt;}
.h5{height:22.881933pt;}
.h11{height:33.801532pt;}
.h12{height:33.862264pt;}
.hb{height:35.188636pt;}
.h1{height:35.251860pt;}
.h10{height:36.283718pt;}
.ha{height:36.348909pt;}
.hf{height:37.466647pt;}
.h13{height:37.526892pt;}
.h9{height:37.533668pt;}
.hc{height:39.004155pt;}
.h2{height:39.073927pt;}
.he{height:40.217978pt;}
.h4{height:40.289920pt;}
.h14{height:42.395760pt;}
.h24{height:42.472142pt;}
.h15{height:50.751771pt;}
.h25{height:50.843208pt;}
.hd{height:54.945688pt;}
.h3{height:55.043976pt;}
.h6{height:56.487006pt;}
.h7{height:63.707288pt;}
.h8{height:66.760881pt;}
.h0{height:1056.000000pt;}
.wc{width:6.399963pt;}
.w3{width:6.559997pt;}
.w1{width:6.717253pt;}
.w2{width:8.320008pt;}
.wb{width:16.639984pt;}
.w5{width:47.840026pt;}
.w4{width:57.919999pt;}
.wd{width:74.879990pt;}
.w8{width:82.720002pt;}
.w9{width:89.119964pt;}
.w7{width:89.279968pt;}
.w6{width:89.440003pt;}
.wa{width:182.239991pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:124.801501pt;}
.xc{left:130.884084pt;}
.x14{left:131.839996pt;}
.xd{left:136.801904pt;}
.x12{left:176.160004pt;}
.x3{left:177.599031pt;}
.x1{left:179.202854pt;}
.x11{left:186.559998pt;}
.x19{left:189.759995pt;}
.x25{left:206.399994pt;}
.x1e{left:214.559998pt;}
.x2{left:219.039915pt;}
.xe{left:221.123417pt;}
.x6{left:233.124779pt;}
.x7{left:246.723391pt;}
.x8{left:266.879379pt;}
.xb{left:285.758427pt;}
.x9{left:287.198817pt;}
.x26{left:300.320007pt;}
.x17{left:301.600006pt;}
.x22{left:313.920013pt;}
.x13{left:325.600006pt;}
.x4{left:332.478062pt;}
.x1f{left:389.600006pt;}
.x23{left:406.239990pt;}
.x10{left:429.760010pt;}
.x20{left:447.040009pt;}
.x27{left:451.359985pt;}
.x18{left:467.040009pt;}
.x15{left:480.640015pt;}
.x24{left:529.760010pt;}
.x1d{left:540.479980pt;}
.x1c{left:542.239990pt;}
.x21{left:543.200012pt;}
.x1a{left:545.599976pt;}
.xa{left:560.963836pt;}
.x29{left:565.597431pt;}
.x16{left:572.320007pt;}
.xf{left:594.077519pt;}
.x1b{left:600.479980pt;}
.x28{left:680.803284pt;}
}




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