
    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_44f6a590eaae4d0778bc7a27.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6dc57ab171b32a4d2cdef0ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_5b09ca1506ec66dcf1a742f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_ac4fa34d76f983dea53ad670.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_62ad32f573a1d11ecc9929a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_9e0a5a22f6cdc23830fb5069.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_13d549b7e7e2dda86d747562.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_a1b67afd28955e454e37463f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_7a5ec3c7f5d809c67136ad18.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_cfa796644fceb7f22c0047f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_dab44091928025ba1f088c65.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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_825a38b7954237618687947c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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_2a799aade1f48599475279b7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.236662,0.000000,-0.080945,0.236533,0,0);-ms-transform:matrix(0.236662,0.000000,-0.080945,0.236533,0,0);-webkit-transform:matrix(0.236662,0.000000,-0.080945,0.236533,0,0);}
.m5{transform:matrix(0.236665,0.000000,-0.080940,0.236535,0,0);-ms-transform:matrix(0.236665,0.000000,-0.080940,0.236535,0,0);-webkit-transform:matrix(0.236665,0.000000,-0.080940,0.236535,0,0);}
.m4{transform:matrix(0.247770,-0.034379,0.034359,0.247628,0,0);-ms-transform:matrix(0.247770,-0.034379,0.034359,0.247628,0,0);-webkit-transform:matrix(0.247770,-0.034379,0.034359,0.247628,0,0);}
.m3{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-113.759954px;}
.v5{vertical-align:-13.679995px;}
.v4{vertical-align:-12.239995px;}
.v6{vertical-align:-9.359996px;}
.v1{vertical-align:-7.919997px;}
.v2{vertical-align:-5.759998px;}
.v8{vertical-align:-4.565954px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.515144px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.065003px;}
.ls18{letter-spacing:0.065262px;}
.ls12{letter-spacing:0.105607px;}
.lse{letter-spacing:0.121488px;}
.ls15{letter-spacing:0.163662px;}
.ls17{letter-spacing:0.168319px;}
.ls13{letter-spacing:0.175348px;}
.ls28{letter-spacing:0.189816px;}
.ls29{letter-spacing:0.192643px;}
.ls1d{letter-spacing:0.204007px;}
.ls20{letter-spacing:0.222040px;}
.ls1f{letter-spacing:0.256056px;}
.ls2c{letter-spacing:0.256176px;}
.ls24{letter-spacing:0.260833px;}
.ls37{letter-spacing:0.273715px;}
.ls25{letter-spacing:0.287939px;}
.lsf{letter-spacing:0.291043px;}
.ls35{letter-spacing:0.302299px;}
.ls23{letter-spacing:0.329697px;}
.ls14{letter-spacing:0.354936px;}
.ls19{letter-spacing:0.383557px;}
.ls1e{letter-spacing:0.413629px;}
.ls22{letter-spacing:0.430786px;}
.ls10{letter-spacing:0.441335px;}
.ls2f{letter-spacing:0.470455px;}
.ls1b{letter-spacing:0.524990px;}
.ls2a{letter-spacing:0.549611px;}
.ls11{letter-spacing:0.579803px;}
.ls16{letter-spacing:0.596284px;}
.ls27{letter-spacing:0.609061px;}
.ls26{letter-spacing:0.680078px;}
.ls21{letter-spacing:0.707184px;}
.ls1a{letter-spacing:0.876462px;}
.ls2b{letter-spacing:0.887548px;}
.ls1c{letter-spacing:0.968796px;}
.ls31{letter-spacing:5.298710px;}
.ls8{letter-spacing:5.436636px;}
.ls7{letter-spacing:6.018314px;}
.ls32{letter-spacing:6.022668px;}
.ls36{letter-spacing:7.461088px;}
.lsd{letter-spacing:7.627632px;}
.ls3{letter-spacing:7.944499px;}
.ls5{letter-spacing:8.674117px;}
.ls33{letter-spacing:9.176046px;}
.lsc{letter-spacing:10.109544px;}
.ls30{letter-spacing:44.881280px;}
.lsb{letter-spacing:53.515740px;}
.ls4{letter-spacing:61.195189px;}
.ls2e{letter-spacing:72.725258px;}
.ls34{letter-spacing:76.312444px;}
.ls1{letter-spacing:188.514885px;}
.ls2{letter-spacing:196.431837px;}
.lsa{letter-spacing:1291.084407px;}
.ls6{letter-spacing:1629.975404px;}
.ls9{letter-spacing:2712.052682px;}
.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;}
}
.wse{word-spacing:-72.792993px;}
.wsa{word-spacing:-66.653253px;}
.wsd{word-spacing:-62.495975px;}
.ws1{word-spacing:-53.442699px;}
.ws3{word-spacing:-49.247980px;}
.ws22{word-spacing:-46.910977px;}
.ws8{word-spacing:-46.637261px;}
.ws2{word-spacing:-43.830702px;}
.ws6{word-spacing:-43.055983px;}
.ws5{word-spacing:-40.031984px;}
.ws1c{word-spacing:-34.432785px;}
.ws18{word-spacing:-34.130486px;}
.ws1e{word-spacing:-27.414709px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:3.395174px;}
.ws1f{word-spacing:4.179379px;}
.ws12{word-spacing:5.111263px;}
.wsf{word-spacing:5.112360px;}
.ws7{word-spacing:5.435409px;}
.ws23{word-spacing:5.748983px;}
.ws10{word-spacing:5.826712px;}
.ws1b{word-spacing:6.056350px;}
.ws11{word-spacing:6.133907px;}
.ws1a{word-spacing:6.178374px;}
.wsc{word-spacing:6.282479px;}
.ws9{word-spacing:6.296976px;}
.ws19{word-spacing:6.465387px;}
.ws21{word-spacing:6.890184px;}
.ws1d{word-spacing:7.607294px;}
.ws4{word-spacing:8.028783px;}
.ws17{word-spacing:493.662043px;}
.ws16{word-spacing:536.876425px;}
.ws14{word-spacing:537.558985px;}
.ws15{word-spacing:581.454487px;}
.ws13{word-spacing:625.349990px;}
.wsb{word-spacing:1084.168575px;}
._15{margin-left:-2.790438px;}
._0{margin-left:-1.625412px;}
._1{width:1.007281px;}
._14{width:3.220174px;}
._4{width:5.659130px;}
._2{width:6.732107px;}
._3{width:8.082810px;}
._7{width:9.098107px;}
._8{width:30.115473px;}
._5{width:45.091973px;}
._9{width:46.700189px;}
._6{width:51.883294px;}
._13{width:560.877537px;}
._11{width:604.318343px;}
._f{width:646.983674px;}
._d{width:678.571063px;}
._b{width:691.170967px;}
._e{width:738.928916px;}
._a{width:785.054067px;}
._c{width:824.780199px;}
._10{width:920.476005px;}
._12{width:943.396898px;}
.fc10{color:rgb(3,73,143);}
.fcf{color:transparent;}
.fce{color:rgb(204,0,0);}
.fcd{color:rgb(0,204,0);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(153,0,51);}
.fc3{color:rgb(153,0,0);}
.fc4{color:rgb(0,0,101);}
.fc6{color:rgb(128,0,128);}
.fc9{color:rgb(119,119,119);}
.fc7{color:rgb(153,0,153);}
.fcc{color:rgb(0,51,101);}
.fc5{color:rgb(192,192,192);}
.fc8{color:rgb(0,255,0);}
.fcb{color:rgb(128,0,0);}
.fca{color:rgb(51,204,51);}
.fsa{font-size:71.999971px;}
.fs9{font-size:76.098528px;}
.fs1{font-size:95.759962px;}
.fsc{font-size:107.999957px;}
.fsb{font-size:114.148783px;}
.fs0{font-size:120.239952px;}
.fs7{font-size:143.999942px;}
.fs8{font-size:167.725791px;}
.fs2{font-size:167.759933px;}
.fs4{font-size:192.239923px;}
.fsd{font-size:203.759918px;}
.fs6{font-size:215.999914px;}
.fs3{font-size:228.239909px;}
.fs5{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y5{bottom:65.220331px;}
.y1{bottom:73.860327px;}
.y24{bottom:80.880325px;}
.y25{bottom:82.500324px;}
.y26{bottom:83.940323px;}
.yac{bottom:88.260322px;}
.y22{bottom:89.160321px;}
.yad{bottom:89.340321px;}
.y23{bottom:91.320320px;}
.y4{bottom:94.200319px;}
.y64{bottom:94.740319px;}
.y58{bottom:95.640319px;}
.y6c{bottom:96.540318px;}
.yc9{bottom:97.260318px;}
.ycb{bottom:97.620318px;}
.y59{bottom:98.160318px;}
.y5a{bottom:98.880317px;}
.yca{bottom:99.240317px;}
.y77{bottom:105.000315px;}
.y93{bottom:116.700310px;}
.yb8{bottom:121.200309px;}
.y1d{bottom:123.540308px;}
.y1e{bottom:125.700307px;}
.y92{bottom:138.300302px;}
.y13{bottom:141.720300px;}
.y16{bottom:142.800300px;}
.y17{bottom:144.780299px;}
.y99{bottom:160.980293px;}
.y4e{bottom:164.940291px;}
.y87{bottom:171.240289px;}
.y1b{bottom:174.660287px;}
.y1c{bottom:176.820286px;}
.y2{bottom:188.700056px;}
.ya3{bottom:193.560280px;}
.yc3{bottom:199.320277px;}
.yc5{bottom:199.680277px;}
.y74{bottom:200.400277px;}
.yc4{bottom:201.300276px;}
.yb{bottom:201.840276px;}
.y5b{bottom:204.360275px;}
.y5c{bottom:205.800275px;}
.y34{bottom:206.520274px;}
.y35{bottom:207.960274px;}
.y12{bottom:210.660273px;}
.y14{bottom:211.740272px;}
.y15{bottom:213.720272px;}
.y55{bottom:225.240267px;}
.y98{bottom:225.600267px;}
.y97{bottom:226.680266px;}
.yaa{bottom:232.440264px;}
.yab{bottom:234.780263px;}
.y32{bottom:249.720257px;}
.y33{bottom:251.160257px;}
.y7a{bottom:257.280295px;}
.y4f{bottom:261.240253px;}
.yd4{bottom:261.600252px;}
.yd6{bottom:261.960252px;}
.yd5{bottom:263.580252px;}
.y73{bottom:265.200251px;}
.y86{bottom:265.920291px;}
.y45{bottom:271.140249px;}
.y48{bottom:272.040248px;}
.y46{bottom:272.220248px;}
.y47{bottom:274.200247px;}
.ya2{bottom:274.560247px;}
.ya{bottom:276.540246px;}
.y81{bottom:279.960245px;}
.y95{bottom:281.220245px;}
.y96{bottom:282.660244px;}
.y30{bottom:292.740240px;}
.y27{bottom:293.820239px;}
.y31{bottom:294.180239px;}
.y5d{bottom:296.700238px;}
.y5e{bottom:297.780238px;}
.y5f{bottom:299.760237px;}
.y54{bottom:299.940237px;}
.yc0{bottom:301.200237px;}
.yc2{bottom:301.560236px;}
.yc1{bottom:303.180236px;}
.y65{bottom:305.340235px;}
.y36{bottom:305.880235px;}
.y66{bottom:306.420234px;}
.y79{bottom:307.140134px;}
.y67{bottom:308.400234px;}
.y85{bottom:315.780131px;}
.y3{bottom:321.179600px;}
.y80{bottom:323.160228px;}
.y72{bottom:329.820225px;}
.y2e{bottom:335.940223px;}
.y2f{bottom:337.380222px;}
.y94{bottom:338.820221px;}
.y9d{bottom:340.080221px;}
.ya1{bottom:355.560215px;}
.y78{bottom:357.000214px;}
.y84{bottom:365.640211px;}
.y43{bottom:365.820211px;}
.y7f{bottom:366.180211px;}
.y44{bottom:367.800210px;}
.yd2{bottom:371.940208px;}
.yd3{bottom:373.560208px;}
.ye{bottom:376.620206px;}
.y2c{bottom:378.960205px;}
.y2d{bottom:380.400205px;}
.y40{bottom:390.120201px;}
.y41{bottom:391.200201px;}
.y42{bottom:393.180200px;}
.ya6{bottom:394.080199px;}
.y71{bottom:394.440199px;}
.ya7{bottom:396.420198px;}
.y51{bottom:398.760197px;}
.yc6{bottom:403.080196px;}
.y38{bottom:403.260196px;}
.yc8{bottom:403.440196px;}
.yc7{bottom:405.060195px;}
.y7e{bottom:409.380193px;}
.y8{bottom:410.280193px;}
.y9c{bottom:426.660186px;}
.ya0{bottom:436.560182px;}
.ycf{bottom:437.280182px;}
.yd1{bottom:437.640182px;}
.yd0{bottom:439.260181px;}
.y4d{bottom:439.980181px;}
.yd{bottom:443.040180px;}
.y6a{bottom:451.860176px;}
.y7d{bottom:452.400176px;}
.y56{bottom:453.480176px;}
.y6b{bottom:454.200175px;}
.y90{bottom:455.280175px;}
.yb6{bottom:455.460175px;}
.y57{bottom:455.820175px;}
.y91{bottom:456.720174px;}
.y70{bottom:459.240173px;}
.y37{bottom:461.040173px;}
.y50{bottom:473.640168px;}
.y62{bottom:482.640164px;}
.y63{bottom:484.980163px;}
.yb5{bottom:490.020161px;}
.y9b{bottom:493.080160px;}
.ybd{bottom:505.140155px;}
.ybf{bottom:505.500155px;}
.ybe{bottom:507.120154px;}
.y8e{bottom:510.180153px;}
.y8f{bottom:511.620152px;}
.y4c{bottom:514.860151px;}
.y68{bottom:516.660150px;}
.y7c{bottom:517.200150px;}
.y9f{bottom:517.560150px;}
.y69{bottom:519.000149px;}
.y6f{bottom:523.860147px;}
.y9{bottom:543.840139px;}
.ycc{bottom:546.900138px;}
.yce{bottom:547.260138px;}
.y60{bottom:547.440138px;}
.ycd{bottom:548.880137px;}
.y61{bottom:549.780137px;}
.y53{bottom:560.760133px;}
.yb3{bottom:564.000131px;}
.ya8{bottom:564.180131px;}
.yb4{bottom:565.080131px;}
.y39{bottom:566.160131px;}
.y8c{bottom:566.340130px;}
.ya9{bottom:566.520130px;}
.y8d{bottom:567.780130px;}
.y2a{bottom:569.220129px;}
.y2b{bottom:570.660129px;}
.y9a{bottom:574.620127px;}
.y3d{bottom:577.320126px;}
.y3e{bottom:578.400126px;}
.y3f{bottom:580.380125px;}
.y7b{bottom:581.820124px;}
.y6e{bottom:588.660122px;}
.yb1{bottom:592.980120px;}
.yb2{bottom:594.060119px;}
.y9e{bottom:598.560118px;}
.yba{bottom:606.840114px;}
.ybc{bottom:607.200114px;}
.ybb{bottom:608.820113px;}
.y28{bottom:612.240112px;}
.y29{bottom:613.680112px;}
.y4b{bottom:618.180110px;}
.y49{bottom:630.420105px;}
.y4a{bottom:632.040104px;}
.y52{bottom:635.640103px;}
.yb0{bottom:651.660096px;}
.y6d{bottom:653.280096px;}
.y82{bottom:658.140094px;}
.y83{bottom:660.120093px;}
.yd7{bottom:663.000092px;}
.y3a{bottom:670.920089px;}
.y3b{bottom:672.000088px;}
.y3c{bottom:673.980087px;}
.y8a{bottom:683.340084px;}
.y8b{bottom:684.780083px;}
.y18{bottom:705.660075px;}
.y19{bottom:706.740074px;}
.y75{bottom:708.360074px;}
.y1a{bottom:708.720074px;}
.y7{bottom:709.620073px;}
.y76{bottom:710.340073px;}
.yc{bottom:711.960072px;}
.yb9{bottom:735.540063px;}
.y88{bottom:739.320061px;}
.y89{bottom:740.760061px;}
.ya4{bottom:747.060058px;}
.yf{bottom:747.600058px;}
.y10{bottom:748.320058px;}
.ya5{bottom:748.680058px;}
.y11{bottom:750.660057px;}
.y6{bottom:760.020053px;}
.yae{bottom:766.320050px;}
.yaf{bottom:767.940050px;}
.yb7{bottom:772.440048px;}
.y1f{bottom:772.980048px;}
.y20{bottom:774.060047px;}
.y21{bottom:776.040047px;}
.h16{height:57.726539px;}
.h15{height:61.012589px;}
.hc{height:76.776297px;}
.h1c{height:87.537973px;}
.h1b{height:91.296731px;}
.h2{height:99.874648px;}
.h17{height:99.984335px;}
.h1d{height:112.640580px;}
.hd{height:115.171829px;}
.hf{height:115.453079px;}
.h3{height:120.085968px;}
.h1a{height:122.133818px;}
.h1{height:125.406512px;}
.h19{height:130.287604px;}
.h18{height:133.479087px;}
.h11{height:134.502837px;}
.h13{height:134.833494px;}
.h12{height:135.962027px;}
.h14{height:136.031291px;}
.h8{height:138.923382px;}
.h7{height:139.955921px;}
.h1f{height:147.248379px;}
.hb{height:150.187440px;}
.h10{height:153.754392px;}
.ha{height:157.253843px;}
.h4{height:164.938997px;}
.he{height:174.968368px;}
.h9{height:192.580235px;}
.h5{height:200.500232px;}
.h1e{height:225.281160px;}
.h6{height:250.062087px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x59{left:84.045866px;}
.x57{left:89.625864px;}
.xb2{left:91.605863px;}
.x84{left:94.485862px;}
.x83{left:95.925862px;}
.xb6{left:103.125859px;}
.x33{left:108.345857px;}
.x94{left:125.805850px;}
.x1d{left:129.585848px;}
.x1c{left:131.745847px;}
.x9a{left:134.805846px;}
.x75{left:137.865845px;}
.x7f{left:140.565844px;}
.x97{left:143.445843px;}
.x76{left:144.705512px;}
.x80{left:147.405510px;}
.x9b{left:149.565840px;}
.x77{left:151.726353px;}
.x81{left:154.426352px;}
.x55{left:158.746437px;}
.x8{left:160.726436px;}
.x92{left:168.982432px;}
.x98{left:174.406430px;}
.xa6{left:179.986428px;}
.xa5{left:181.066428px;}
.x3f{left:184.306426px;}
.x12{left:188.446425px;}
.x11{left:190.426424px;}
.x10{left:191.506423px;}
.x58{left:197.626421px;}
.xb3{left:199.246420px;}
.x89{left:202.486419px;}
.x52{left:208.246417px;}
.x51{left:209.866416px;}
.x99{left:211.126416px;}
.xac{left:217.066413px;}
.xf{left:218.146413px;}
.x69{left:219.766412px;}
.xe{left:221.206412px;}
.x6a{left:222.646411px;}
.x2d{left:224.806410px;}
.x5{left:226.965472px;}
.xab{left:244.606402px;}
.x93{left:249.108185px;}
.x6{left:251.626399px;}
.x65{left:258.106397px;}
.x66{left:262.786395px;}
.x56{left:266.746393px;}
.x9{left:268.726393px;}
.xa2{left:270.526392px;}
.xa1{left:272.146391px;}
.x13{left:278.446389px;}
.x82{left:293.566383px;}
.x19{left:302.746379px;}
.x18{left:304.726378px;}
.x17{left:305.806378px;}
.x1f{left:308.506377px;}
.x1e{left:309.586376px;}
.x27{left:310.666376px;}
.xb{left:313.006375px;}
.x49{left:322.006371px;}
.x48{left:323.986370px;}
.x47{left:325.066370px;}
.xad{left:326.686369px;}
.x3d{left:328.306369px;}
.xa7{left:330.106368px;}
.x7{left:344.686067px;}
.x5f{left:346.486361px;}
.x85{left:356.386357px;}
.xa9{left:358.546357px;}
.x5c{left:361.426355px;}
.x5d{left:364.486354px;}
.x78{left:367.006703px;}
.xaa{left:368.086353px;}
.x28{left:369.706352px;}
.x14{left:371.686351px;}
.x6c{left:382.486482px;}
.x29{left:384.466346px;}
.x15{left:387.706345px;}
.x88{left:392.386343px;}
.x8f{left:396.526341px;}
.x7a{left:402.466627px;}
.x40{left:403.906338px;}
.x6b{left:413.086335px;}
.x3e{left:414.345805px;}
.x8a{left:416.686333px;}
.x41{left:419.926332px;}
.x44{left:424.426330px;}
.x43{left:426.406329px;}
.x42{left:427.486329px;}
.x6e{left:430.006160px;}
.x86{left:432.346327px;}
.x5b{left:435.766326px;}
.x5a{left:438.106325px;}
.x6f{left:440.446105px;}
.x7b{left:442.246481px;}
.x87{left:452.146319px;}
.x79{left:465.286306px;}
.xa8{left:475.006310px;}
.x6d{left:477.165943px;}
.x70{left:482.205827px;}
.x2e{left:484.546306px;}
.x7d{left:489.226304px;}
.x7c{left:491.206304px;}
.x72{left:492.826303px;}
.x71{left:494.806302px;}
.x53{left:497.686301px;}
.x4{left:502.006299px;}
.x4e{left:514.786294px;}
.x4d{left:516.766293px;}
.x4c{left:517.846293px;}
.x54{left:523.426291px;}
.x8e{left:526.126290px;}
.x2f{left:528.466289px;}
.x68{left:536.926285px;}
.x67{left:538.906284px;}
.x30{left:540.526284px;}
.xae{left:544.666282px;}
.x45{left:552.406279px;}
.xaf{left:558.886276px;}
.xb0{left:563.566275px;}
.x63{left:565.726274px;}
.x62{left:567.706273px;}
.x61{left:568.786272px;}
.x9d{left:579.766268px;}
.x9c{left:580.846268px;}
.x8b{left:608.566257px;}
.x8c{left:620.446252px;}
.xb1{left:624.226250px;}
.x35{left:634.666246px;}
.x34{left:636.106246px;}
.x90{left:644.566242px;}
.x60{left:662.926235px;}
.x46{left:664.186234px;}
.x31{left:678.406229px;}
.x36{left:692.986223px;}
.x64{left:713.146215px;}
.x16{left:720.706212px;}
.x9e{left:722.326211px;}
.xa{left:724.486210px;}
.xa3{left:764.266194px;}
.x7e{left:777.946189px;}
.x73{left:781.546187px;}
.x5e{left:788.026185px;}
.x3a{left:789.466184px;}
.x3c{left:795.046182px;}
.x3b{left:796.486181px;}
.x37{left:798.826180px;}
.x74{left:801.526179px;}
.x50{left:804.766178px;}
.x2a{left:814.666174px;}
.x26{left:818.266173px;}
.x25{left:820.426172px;}
.xa4{left:822.946171px;}
.x1a{left:824.746170px;}
.x20{left:828.526169px;}
.x8d{left:837.526165px;}
.x23{left:846.346161px;}
.x22{left:848.506161px;}
.x1b{left:854.086158px;}
.x21{left:857.866157px;}
.x32{left:864.346154px;}
.x91{left:867.766153px;}
.x38{left:872.446151px;}
.x4f{left:874.066150px;}
.x39{left:887.386145px;}
.x9f{left:906.646137px;}
.x2b{left:910.606136px;}
.xb4{left:912.226135px;}
.x2c{left:925.366130px;}
.xc{left:958.126117px;}
.xd{left:959.206111px;}
.x24{left:964.426114px;}
.x95{left:974.146110px;}
.x96{left:993.046103px;}
.xb5{left:996.286101px;}
.xa0{left:1012.666095px;}
.x4b{left:1029.406088px;}
.x4a{left:1031.386087px;}
.x1{left:1143.886042px;}
.x2{left:1179.886028px;}
.x3{left:1215.886014px;}
@media print{
.v3{vertical-align:-101.119960pt;}
.v5{vertical-align:-12.159995pt;}
.v4{vertical-align:-10.879996pt;}
.v6{vertical-align:-8.319997pt;}
.v1{vertical-align:-7.039997pt;}
.v2{vertical-align:-5.119998pt;}
.v8{vertical-align:-4.058625pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.346795pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.057780pt;}
.ls18{letter-spacing:0.058011pt;}
.ls12{letter-spacing:0.093873pt;}
.lse{letter-spacing:0.107989pt;}
.ls15{letter-spacing:0.145477pt;}
.ls17{letter-spacing:0.149617pt;}
.ls13{letter-spacing:0.155865pt;}
.ls28{letter-spacing:0.168725pt;}
.ls29{letter-spacing:0.171238pt;}
.ls1d{letter-spacing:0.181339pt;}
.ls20{letter-spacing:0.197369pt;}
.ls1f{letter-spacing:0.227605pt;}
.ls2c{letter-spacing:0.227712pt;}
.ls24{letter-spacing:0.231851pt;}
.ls37{letter-spacing:0.243303pt;}
.ls25{letter-spacing:0.255946pt;}
.lsf{letter-spacing:0.258705pt;}
.ls35{letter-spacing:0.268710pt;}
.ls23{letter-spacing:0.293064pt;}
.ls14{letter-spacing:0.315499pt;}
.ls19{letter-spacing:0.340940pt;}
.ls1e{letter-spacing:0.367670pt;}
.ls22{letter-spacing:0.382921pt;}
.ls10{letter-spacing:0.392298pt;}
.ls2f{letter-spacing:0.418182pt;}
.ls1b{letter-spacing:0.466658pt;}
.ls2a{letter-spacing:0.488543pt;}
.ls11{letter-spacing:0.515380pt;}
.ls16{letter-spacing:0.530030pt;}
.ls27{letter-spacing:0.541388pt;}
.ls26{letter-spacing:0.604514pt;}
.ls21{letter-spacing:0.628608pt;}
.ls1a{letter-spacing:0.779077pt;}
.ls2b{letter-spacing:0.788932pt;}
.ls1c{letter-spacing:0.861152pt;}
.ls31{letter-spacing:4.709964pt;}
.ls8{letter-spacing:4.832565pt;}
.ls7{letter-spacing:5.349612pt;}
.ls32{letter-spacing:5.353482pt;}
.ls36{letter-spacing:6.632078pt;}
.lsd{letter-spacing:6.780117pt;}
.ls3{letter-spacing:7.061777pt;}
.ls5{letter-spacing:7.710326pt;}
.ls33{letter-spacing:8.156485pt;}
.lsc{letter-spacing:8.986261pt;}
.ls30{letter-spacing:39.894471pt;}
.lsb{letter-spacing:47.569546pt;}
.ls4{letter-spacing:54.395724pt;}
.ls2e{letter-spacing:64.644674pt;}
.ls34{letter-spacing:67.833284pt;}
.ls1{letter-spacing:167.568786pt;}
.ls2{letter-spacing:174.606077pt;}
.lsa{letter-spacing:1147.630584pt;}
.ls6{letter-spacing:1448.867025pt;}
.ls9{letter-spacing:2410.713495pt;}
.wse{word-spacing:-64.704883pt;}
.wsa{word-spacing:-59.247336pt;}
.wsd{word-spacing:-55.551978pt;}
.ws1{word-spacing:-47.504621pt;}
.ws3{word-spacing:-43.775982pt;}
.ws22{word-spacing:-41.698646pt;}
.ws8{word-spacing:-41.455343pt;}
.ws2{word-spacing:-38.960624pt;}
.ws6{word-spacing:-38.271985pt;}
.ws5{word-spacing:-35.583986pt;}
.ws1c{word-spacing:-30.606920pt;}
.ws18{word-spacing:-30.338210pt;}
.ws1e{word-spacing:-24.368630pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:3.017932pt;}
.ws1f{word-spacing:3.715004pt;}
.ws12{word-spacing:4.543345pt;}
.wsf{word-spacing:4.544320pt;}
.ws7{word-spacing:4.831475pt;}
.ws23{word-spacing:5.110207pt;}
.ws10{word-spacing:5.179300pt;}
.ws1b{word-spacing:5.383422pt;}
.ws11{word-spacing:5.452362pt;}
.ws1a{word-spacing:5.491888pt;}
.wsc{word-spacing:5.584425pt;}
.ws9{word-spacing:5.597312pt;}
.ws19{word-spacing:5.747010pt;}
.ws21{word-spacing:6.124608pt;}
.ws1d{word-spacing:6.762039pt;}
.ws4{word-spacing:7.136696pt;}
.ws17{word-spacing:438.810704pt;}
.ws16{word-spacing:477.223489pt;}
.ws14{word-spacing:477.830209pt;}
.ws15{word-spacing:516.848433pt;}
.ws13{word-spacing:555.866658pt;}
.wsb{word-spacing:963.705400pt;}
._15{margin-left:-2.480389pt;}
._0{margin-left:-1.444810pt;}
._1{width:0.895361pt;}
._14{width:2.862377pt;}
._4{width:5.030338pt;}
._2{width:5.984095pt;}
._3{width:7.184720pt;}
._7{width:8.087206pt;}
._8{width:26.769309pt;}
._5{width:40.081753pt;}
._9{width:41.511279pt;}
._6{width:46.118484pt;}
._13{width:498.557810pt;}
._11{width:537.171860pt;}
._f{width:575.096599pt;}
._d{width:603.174278pt;}
._b{width:614.374193pt;}
._e{width:656.825703pt;}
._a{width:697.825838pt;}
._c{width:733.137954pt;}
._10{width:818.200893pt;}
._12{width:838.575021pt;}
.fsa{font-size:63.999974pt;}
.fs9{font-size:67.643136pt;}
.fs1{font-size:85.119966pt;}
.fsc{font-size:95.999962pt;}
.fsb{font-size:101.465585pt;}
.fs0{font-size:106.879957pt;}
.fs7{font-size:127.999949pt;}
.fs8{font-size:149.089592pt;}
.fs2{font-size:149.119940pt;}
.fs4{font-size:170.879932pt;}
.fsd{font-size:181.119928pt;}
.fs6{font-size:191.999923pt;}
.fs3{font-size:202.879919pt;}
.fs5{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:57.973627pt;}
.y1{bottom:65.653624pt;}
.y24{bottom:71.893622pt;}
.y25{bottom:73.333621pt;}
.y26{bottom:74.613621pt;}
.yac{bottom:78.453619pt;}
.y22{bottom:79.253619pt;}
.yad{bottom:79.413619pt;}
.y23{bottom:81.173618pt;}
.y4{bottom:83.733617pt;}
.y64{bottom:84.213617pt;}
.y58{bottom:85.013617pt;}
.y6c{bottom:85.813616pt;}
.yc9{bottom:86.453616pt;}
.ycb{bottom:86.773616pt;}
.y59{bottom:87.253616pt;}
.y5a{bottom:87.893616pt;}
.yca{bottom:88.213615pt;}
.y77{bottom:93.333613pt;}
.y93{bottom:103.733609pt;}
.yb8{bottom:107.733608pt;}
.y1d{bottom:109.813607pt;}
.y1e{bottom:111.733606pt;}
.y92{bottom:122.933601pt;}
.y13{bottom:125.973600pt;}
.y16{bottom:126.933600pt;}
.y17{bottom:128.693599pt;}
.y99{bottom:143.093593pt;}
.y4e{bottom:146.613592pt;}
.y87{bottom:152.213590pt;}
.y1b{bottom:155.253589pt;}
.y1c{bottom:157.173588pt;}
.y2{bottom:167.733383pt;}
.ya3{bottom:172.053582pt;}
.yc3{bottom:177.173580pt;}
.yc5{bottom:177.493580pt;}
.y74{bottom:178.133579pt;}
.yc4{bottom:178.933579pt;}
.yb{bottom:179.413579pt;}
.y5b{bottom:181.653578pt;}
.y5c{bottom:182.933577pt;}
.y34{bottom:183.573577pt;}
.y35{bottom:184.853577pt;}
.y12{bottom:187.253576pt;}
.y14{bottom:188.213575pt;}
.y15{bottom:189.973575pt;}
.y55{bottom:200.213571pt;}
.y98{bottom:200.533570pt;}
.y97{bottom:201.493570pt;}
.yaa{bottom:206.613568pt;}
.yab{bottom:208.693567pt;}
.y32{bottom:221.973562pt;}
.y33{bottom:223.253561pt;}
.y7a{bottom:228.693595pt;}
.y4f{bottom:232.213558pt;}
.yd4{bottom:232.533558pt;}
.yd6{bottom:232.853558pt;}
.yd5{bottom:234.293557pt;}
.y73{bottom:235.733556pt;}
.y86{bottom:236.373592pt;}
.y45{bottom:241.013554pt;}
.y48{bottom:241.813554pt;}
.y46{bottom:241.973554pt;}
.y47{bottom:243.733553pt;}
.ya2{bottom:244.053553pt;}
.ya{bottom:245.813552pt;}
.y81{bottom:248.853551pt;}
.y95{bottom:249.973551pt;}
.y96{bottom:251.253550pt;}
.y30{bottom:260.213547pt;}
.y27{bottom:261.173546pt;}
.y31{bottom:261.493546pt;}
.y5d{bottom:263.733545pt;}
.y5e{bottom:264.693545pt;}
.y5f{bottom:266.453544pt;}
.y54{bottom:266.613544pt;}
.yc0{bottom:267.733544pt;}
.yc2{bottom:268.053543pt;}
.yc1{bottom:269.493543pt;}
.y65{bottom:271.413542pt;}
.y36{bottom:271.893542pt;}
.y66{bottom:272.373542pt;}
.y79{bottom:273.013453pt;}
.y67{bottom:274.133541pt;}
.y85{bottom:280.693450pt;}
.y3{bottom:285.492978pt;}
.y80{bottom:287.253536pt;}
.y72{bottom:293.173533pt;}
.y2e{bottom:298.613531pt;}
.y2f{bottom:299.893531pt;}
.y94{bottom:301.173530pt;}
.y9d{bottom:302.293530pt;}
.ya1{bottom:316.053524pt;}
.y78{bottom:317.333524pt;}
.y84{bottom:325.013521pt;}
.y43{bottom:325.173521pt;}
.y7f{bottom:325.493520pt;}
.y44{bottom:326.933520pt;}
.yd2{bottom:330.613518pt;}
.yd3{bottom:332.053518pt;}
.ye{bottom:334.773517pt;}
.y2c{bottom:336.853516pt;}
.y2d{bottom:338.133515pt;}
.y40{bottom:346.773512pt;}
.y41{bottom:347.733512pt;}
.y42{bottom:349.493511pt;}
.ya6{bottom:350.293511pt;}
.y71{bottom:350.613510pt;}
.ya7{bottom:352.373510pt;}
.y51{bottom:354.453509pt;}
.yc6{bottom:358.293507pt;}
.y38{bottom:358.453507pt;}
.yc8{bottom:358.613507pt;}
.yc7{bottom:360.053507pt;}
.y7e{bottom:363.893505pt;}
.y8{bottom:364.693505pt;}
.y9c{bottom:379.253499pt;}
.ya0{bottom:388.053495pt;}
.ycf{bottom:388.693495pt;}
.yd1{bottom:389.013495pt;}
.yd0{bottom:390.453494pt;}
.y4d{bottom:391.093494pt;}
.yd{bottom:393.813493pt;}
.y6a{bottom:401.653490pt;}
.y7d{bottom:402.133490pt;}
.y56{bottom:403.093489pt;}
.y6b{bottom:403.733489pt;}
.y90{bottom:404.693489pt;}
.yb6{bottom:404.853489pt;}
.y57{bottom:405.173489pt;}
.y91{bottom:405.973488pt;}
.y70{bottom:408.213487pt;}
.y37{bottom:409.813487pt;}
.y50{bottom:421.013482pt;}
.y62{bottom:429.013479pt;}
.y63{bottom:431.093478pt;}
.yb5{bottom:435.573476pt;}
.y9b{bottom:438.293475pt;}
.ybd{bottom:449.013471pt;}
.ybf{bottom:449.333471pt;}
.ybe{bottom:450.773470pt;}
.y8e{bottom:453.493469pt;}
.y8f{bottom:454.773469pt;}
.y4c{bottom:457.653468pt;}
.y68{bottom:459.253467pt;}
.y7c{bottom:459.733467pt;}
.y9f{bottom:460.053467pt;}
.y69{bottom:461.333466pt;}
.y6f{bottom:465.653464pt;}
.y9{bottom:483.413457pt;}
.ycc{bottom:486.133456pt;}
.yce{bottom:486.453456pt;}
.y60{bottom:486.613456pt;}
.ycd{bottom:487.893456pt;}
.y61{bottom:488.693455pt;}
.y53{bottom:498.453451pt;}
.yb3{bottom:501.333450pt;}
.ya8{bottom:501.493450pt;}
.yb4{bottom:502.293450pt;}
.y39{bottom:503.253449pt;}
.y8c{bottom:503.413449pt;}
.ya9{bottom:503.573449pt;}
.y8d{bottom:504.693449pt;}
.y2a{bottom:505.973448pt;}
.y2b{bottom:507.253448pt;}
.y9a{bottom:510.773446pt;}
.y3d{bottom:513.173445pt;}
.y3e{bottom:514.133445pt;}
.y3f{bottom:515.893444pt;}
.y7b{bottom:517.173444pt;}
.y6e{bottom:523.253441pt;}
.yb1{bottom:527.093440pt;}
.yb2{bottom:528.053439pt;}
.y9e{bottom:532.053438pt;}
.yba{bottom:539.413435pt;}
.ybc{bottom:539.733435pt;}
.ybb{bottom:541.173434pt;}
.y28{bottom:544.213433pt;}
.y29{bottom:545.493432pt;}
.y4b{bottom:549.493431pt;}
.y49{bottom:560.373427pt;}
.y4a{bottom:561.813426pt;}
.y52{bottom:565.013425pt;}
.yb0{bottom:579.253419pt;}
.y6d{bottom:580.693418pt;}
.y82{bottom:585.013417pt;}
.y83{bottom:586.773416pt;}
.yd7{bottom:589.333415pt;}
.y3a{bottom:596.373412pt;}
.y3b{bottom:597.333412pt;}
.y3c{bottom:599.093411pt;}
.y8a{bottom:607.413408pt;}
.y8b{bottom:608.693407pt;}
.y18{bottom:627.253400pt;}
.y19{bottom:628.213399pt;}
.y75{bottom:629.653399pt;}
.y1a{bottom:629.973399pt;}
.y7{bottom:630.773398pt;}
.y76{bottom:631.413398pt;}
.yc{bottom:632.853398pt;}
.yb9{bottom:653.813389pt;}
.y88{bottom:657.173388pt;}
.y89{bottom:658.453387pt;}
.ya4{bottom:664.053385pt;}
.yf{bottom:664.533385pt;}
.y10{bottom:665.173385pt;}
.ya5{bottom:665.493384pt;}
.y11{bottom:667.253384pt;}
.y6{bottom:675.573380pt;}
.yae{bottom:681.173378pt;}
.yaf{bottom:682.613378pt;}
.yb7{bottom:686.613376pt;}
.y1f{bottom:687.093376pt;}
.y20{bottom:688.053375pt;}
.y21{bottom:689.813375pt;}
.h16{height:51.312479pt;}
.h15{height:54.233412pt;}
.hc{height:68.245598pt;}
.h1c{height:77.811531pt;}
.h1b{height:81.152650pt;}
.h2{height:88.777464pt;}
.h17{height:88.874964pt;}
.h1d{height:100.124960pt;}
.hd{height:102.374959pt;}
.hf{height:102.624959pt;}
.h3{height:106.743082pt;}
.h1a{height:108.563394pt;}
.h1{height:111.472455pt;}
.h19{height:115.811204pt;}
.h18{height:118.648078pt;}
.h11{height:119.558077pt;}
.h13{height:119.851994pt;}
.h12{height:120.855136pt;}
.h14{height:120.916703pt;}
.h8{height:123.487451pt;}
.h7{height:124.405263pt;}
.h1f{height:130.887448pt;}
.hb{height:133.499947pt;}
.h10{height:136.670570pt;}
.ha{height:139.781194pt;}
.h4{height:146.612441pt;}
.he{height:155.527438pt;}
.h9{height:171.182432pt;}
.h5{height:178.222429pt;}
.h1e{height:200.249920pt;}
.h6{height:222.277411pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x59{left:74.707437pt;}
.x57{left:79.667435pt;}
.xb2{left:81.427434pt;}
.x84{left:83.987433pt;}
.x83{left:85.267433pt;}
.xb6{left:91.667430pt;}
.x33{left:96.307428pt;}
.x94{left:111.827422pt;}
.x1d{left:115.187421pt;}
.x1c{left:117.107420pt;}
.x9a{left:119.827419pt;}
.x75{left:122.547418pt;}
.x7f{left:124.947417pt;}
.x97{left:127.507416pt;}
.x76{left:128.627121pt;}
.x80{left:131.027120pt;}
.x9b{left:132.947413pt;}
.x77{left:134.867869pt;}
.x81{left:137.267868pt;}
.x55{left:141.107944pt;}
.x8{left:142.867943pt;}
.x92{left:150.206607pt;}
.x98{left:155.027938pt;}
.xa6{left:159.987936pt;}
.xa5{left:160.947936pt;}
.x3f{left:163.827934pt;}
.x12{left:167.507933pt;}
.x11{left:169.267932pt;}
.x10{left:170.227932pt;}
.x58{left:175.667930pt;}
.xb3{left:177.107929pt;}
.x89{left:179.987928pt;}
.x52{left:185.107926pt;}
.x51{left:186.547925pt;}
.x99{left:187.667925pt;}
.xac{left:192.947923pt;}
.xf{left:193.907922pt;}
.x69{left:195.347922pt;}
.xe{left:196.627921pt;}
.x6a{left:197.907921pt;}
.x2d{left:199.827920pt;}
.x5{left:201.747087pt;}
.xab{left:217.427913pt;}
.x93{left:221.429497pt;}
.x6{left:223.667911pt;}
.x65{left:229.427908pt;}
.x66{left:233.587907pt;}
.x56{left:237.107905pt;}
.x9{left:238.867904pt;}
.xa2{left:240.467904pt;}
.xa1{left:241.907903pt;}
.x13{left:247.507901pt;}
.x82{left:260.947896pt;}
.x19{left:269.107892pt;}
.x18{left:270.867892pt;}
.x17{left:271.827891pt;}
.x1f{left:274.227890pt;}
.x1e{left:275.187890pt;}
.x27{left:276.147890pt;}
.xb{left:278.227889pt;}
.x49{left:286.227886pt;}
.x48{left:287.987885pt;}
.x47{left:288.947884pt;}
.xad{left:290.387884pt;}
.x3d{left:291.827883pt;}
.xa7{left:293.427883pt;}
.x7{left:306.387615pt;}
.x5f{left:307.987877pt;}
.x85{left:316.787873pt;}
.xa9{left:318.707873pt;}
.x5c{left:321.267871pt;}
.x5d{left:323.987870pt;}
.x78{left:326.228181pt;}
.xaa{left:327.187869pt;}
.x28{left:328.627869pt;}
.x14{left:330.387868pt;}
.x6c{left:339.987984pt;}
.x29{left:341.747863pt;}
.x15{left:344.627862pt;}
.x88{left:348.787860pt;}
.x8f{left:352.467859pt;}
.x7a{left:357.748113pt;}
.x40{left:359.027856pt;}
.x6b{left:367.187853pt;}
.x3e{left:368.307382pt;}
.x8a{left:370.387852pt;}
.x41{left:373.267851pt;}
.x44{left:377.267849pt;}
.x43{left:379.027848pt;}
.x42{left:379.987848pt;}
.x6e{left:382.227698pt;}
.x86{left:384.307846pt;}
.x5b{left:387.347845pt;}
.x5a{left:389.427844pt;}
.x6f{left:391.507649pt;}
.x7b{left:393.107983pt;}
.x87{left:401.907839pt;}
.x79{left:413.587828pt;}
.xa8{left:422.227831pt;}
.x6d{left:424.147505pt;}
.x70{left:428.627401pt;}
.x2e{left:430.707828pt;}
.x7d{left:434.867826pt;}
.x7c{left:436.627825pt;}
.x72{left:438.067825pt;}
.x71{left:439.827824pt;}
.x53{left:442.387823pt;}
.x4{left:446.227822pt;}
.x4e{left:457.587817pt;}
.x4d{left:459.347816pt;}
.x4c{left:460.307816pt;}
.x54{left:465.267814pt;}
.x8e{left:467.667813pt;}
.x2f{left:469.747812pt;}
.x68{left:477.267809pt;}
.x67{left:479.027808pt;}
.x30{left:480.467808pt;}
.xae{left:484.147806pt;}
.x45{left:491.027804pt;}
.xaf{left:496.787801pt;}
.xb0{left:500.947800pt;}
.x63{left:502.867799pt;}
.x62{left:504.627798pt;}
.x61{left:505.587798pt;}
.x9d{left:515.347794pt;}
.x9c{left:516.307793pt;}
.x8b{left:540.947784pt;}
.x8c{left:551.507779pt;}
.xb1{left:554.867778pt;}
.x35{left:564.147774pt;}
.x34{left:565.427774pt;}
.x90{left:572.947771pt;}
.x60{left:589.267764pt;}
.x46{left:590.387764pt;}
.x31{left:603.027759pt;}
.x36{left:615.987754pt;}
.x64{left:633.907746pt;}
.x16{left:640.627744pt;}
.x9e{left:642.067743pt;}
.xa{left:643.987742pt;}
.xa3{left:679.347728pt;}
.x7e{left:691.507723pt;}
.x73{left:694.707722pt;}
.x5e{left:700.467720pt;}
.x3a{left:701.747719pt;}
.x3c{left:706.707717pt;}
.x3b{left:707.987717pt;}
.x37{left:710.067716pt;}
.x74{left:712.467715pt;}
.x50{left:715.347714pt;}
.x2a{left:724.147710pt;}
.x26{left:727.347709pt;}
.x25{left:729.267708pt;}
.xa4{left:731.507707pt;}
.x1a{left:733.107707pt;}
.x20{left:736.467705pt;}
.x8d{left:744.467702pt;}
.x23{left:752.307699pt;}
.x22{left:754.227698pt;}
.x1b{left:759.187696pt;}
.x21{left:762.547695pt;}
.x32{left:768.307693pt;}
.x91{left:771.347691pt;}
.x38{left:775.507690pt;}
.x4f{left:776.947689pt;}
.x39{left:788.787684pt;}
.x9f{left:805.907678pt;}
.x2b{left:809.427676pt;}
.xb4{left:810.867676pt;}
.x2c{left:822.547671pt;}
.xc{left:851.667659pt;}
.xd{left:852.627655pt;}
.x24{left:857.267657pt;}
.x95{left:865.907654pt;}
.x96{left:882.707647pt;}
.xb5{left:885.587646pt;}
.xa0{left:900.147640pt;}
.x4b{left:915.027634pt;}
.x4a{left:916.787633pt;}
.x1{left:1016.787593pt;}
.x2{left:1048.787580pt;}
.x3{left:1080.787568pt;}
}




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