
    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_414f042979835cb4da83baef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_bc50951d3deddbc438b4aad3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_224406ab7f3d0c613f02053e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_f6c0ed8ddca45cbf6b000270.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9333e7637f3d7a22b06f6bdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_8f3485d0dac81a6a6b38e172.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_4c34e4d185f86d14c55dffc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;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_39fccb7daff42a6b81b344c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-1.302000px;}
.lsf{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.924000px;}
.ls12{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.158169px;}
.ls19{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.228457px;}
.ls17{letter-spacing:0.237253px;}
.ls22{letter-spacing:0.248400px;}
.ls6{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.511800px;}
.ls21{letter-spacing:1.620000px;}
.lsc{letter-spacing:2.106720px;}
.ls23{letter-spacing:5.220000px;}
.ls1f{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls13{letter-spacing:49.626720px;}
.ls16{letter-spacing:56.106720px;}
.lsa{letter-spacing:114.570720px;}
.lsd{letter-spacing:118.890720px;}
.ls9{letter-spacing:139.050720px;}
.ls1c{letter-spacing:141.930720px;}
.ls2{letter-spacing:161.370720px;}
.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;}
}
.wsa{word-spacing:-20.008330px;}
.wsb{word-spacing:-19.612908px;}
.wsd{word-spacing:-19.266558px;}
.wse{word-spacing:-19.038101px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws11{word-spacing:-0.308160px;}
.ws10{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-4.532880px;}
._16{margin-left:-3.330960px;}
._11{margin-left:-2.166960px;}
._0{margin-left:-1.080000px;}
._f{width:1.019040px;}
._1{width:2.220000px;}
._10{width:3.499680px;}
._13{width:5.494800px;}
._14{width:6.573600px;}
._15{width:8.166720px;}
._12{width:9.428880px;}
._6{width:10.800000px;}
._19{width:11.936400px;}
._18{width:13.091760px;}
._1b{width:16.092240px;}
._1d{width:22.881840px;}
._1c{width:24.202800px;}
._1e{width:25.880400px;}
._20{width:28.936080px;}
._1f{width:30.322080px;}
._21{width:32.717520px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._17{width:444.253200px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs8{font-size:38.025171px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.331708px;}
.fs4{font-size:41.760000px;}
.fsc{font-size:50.962108px;}
.fsb{font-size:55.393596px;}
.fs2{font-size:59.760000px;}
.fse{font-size:60.494882px;}
.fsd{font-size:65.755307px;}
.fs1{font-size:66.240000px;}
.fs10{font-size:70.060211px;}
.fsa{font-size:72.757563px;}
.fsf{font-size:76.152403px;}
.fs9{font-size:79.084307px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y157{bottom:-13.122558px;}
.y1dd{bottom:-12.009933px;}
.y11e{bottom:-8.264361px;}
.y175{bottom:-4.023075px;}
.y242{bottom:-3.387989px;}
.y0{bottom:0.000000px;}
.y163{bottom:3.046648px;}
.y1a3{bottom:3.602852px;}
.y1b7{bottom:3.615174px;}
.y1bd{bottom:3.615178px;}
.y1bf{bottom:3.615181px;}
.y1bb{bottom:3.615183px;}
.y1b9{bottom:3.615184px;}
.y1b0{bottom:3.616544px;}
.y18a{bottom:3.616547px;}
.y1b4{bottom:3.616548px;}
.y185{bottom:3.616549px;}
.y198{bottom:3.616551px;}
.y193{bottom:3.616553px;}
.y1a8{bottom:3.616554px;}
.y1c4{bottom:3.649431px;}
.y22d{bottom:4.188384px;}
.y223{bottom:4.188385px;}
.y230{bottom:4.188387px;}
.y210{bottom:4.188389px;}
.y208{bottom:4.188401px;}
.y201{bottom:4.220115px;}
.ye{bottom:6.300000px;}
.y11a{bottom:8.162756px;}
.yb4{bottom:8.163014px;}
.yb2{bottom:8.163022px;}
.ybf{bottom:8.180236px;}
.yad{bottom:8.266344px;}
.yaf{bottom:8.266346px;}
.yab{bottom:8.266347px;}
.yc7{bottom:8.266351px;}
.y107{bottom:8.292176px;}
.y118{bottom:8.886063px;}
.y113{bottom:8.886321px;}
.yb8{bottom:8.886325px;}
.ybd{bottom:8.903546px;}
.y105{bottom:8.912157px;}
.ye0{bottom:8.989654px;}
.y165{bottom:10.940235px;}
.y161{bottom:10.963316px;}
.y168{bottom:11.078719px;}
.y172{bottom:11.106416px;}
.y16d{bottom:11.113340px;}
.y6{bottom:12.420000px;}
.y19a{bottom:13.137364px;}
.y1a0{bottom:13.137368px;}
.y19e{bottom:13.137373px;}
.y19c{bottom:13.137374px;}
.y18e{bottom:13.151063px;}
.y195{bottom:13.151067px;}
.y1cf{bottom:13.151072px;}
.y190{bottom:13.151073px;}
.y1a5{bottom:13.164762px;}
.y1ac{bottom:13.164766px;}
.y1ae{bottom:13.164769px;}
.y1aa{bottom:13.164771px;}
.y182{bottom:13.178461px;}
.y18c{bottom:13.178467px;}
.y187{bottom:13.178468px;}
.y1c1{bottom:13.183941px;}
.y1c8{bottom:13.183945px;}
.y1ca{bottom:13.183948px;}
.y1c6{bottom:13.183950px;}
.y205{bottom:15.230482px;}
.y20c{bottom:15.230484px;}
.y20a{bottom:15.230485px;}
.y21d{bottom:15.230488px;}
.y23c{bottom:15.230500px;}
.y1f9{bottom:15.262213px;}
.y1fd{bottom:15.262215px;}
.y203{bottom:15.262217px;}
.y1fb{bottom:15.262224px;}
.y139{bottom:15.619154px;}
.y13c{bottom:15.619160px;}
.y137{bottom:15.619171px;}
.y152{bottom:15.658202px;}
.y155{bottom:15.658208px;}
.y150{bottom:15.658219px;}
.y132{bottom:15.816865px;}
.y135{bottom:15.816869px;}
.y14a{bottom:15.816871px;}
.y130{bottom:15.816874px;}
.y146{bottom:15.816881px;}
.y8{bottom:18.180000px;}
.y166{bottom:18.972307px;}
.y162{bottom:18.995387px;}
.y173{bottom:19.000003px;}
.y16e{bottom:19.006928px;}
.y197{bottom:22.521202px;}
.y192{bottom:22.521203px;}
.y1cd{bottom:22.521204px;}
.y1a7{bottom:22.534903px;}
.y189{bottom:22.548595px;}
.y1a2{bottom:22.548600px;}
.y184{bottom:22.548601px;}
.y1c3{bottom:22.554082px;}
.y222{bottom:26.082201px;}
.y20f{bottom:26.082205px;}
.y207{bottom:26.082217px;}
.y200{bottom:26.113930px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y9d{bottom:103.140000px;}
.ya9{bottom:104.580000px;}
.y1f7{bottom:105.480000px;}
.y99{bottom:107.820000px;}
.y81{bottom:110.340000px;}
.y246{bottom:114.300000px;}
.y249{bottom:115.380000px;}
.y69{bottom:117.540000px;}
.y8c{bottom:121.140000px;}
.y9c{bottom:123.120000px;}
.ya8{bottom:124.560000px;}
.y1f6{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.y98{bottom:127.620000px;}
.y174{bottom:128.098500px;}
.y80{bottom:130.320000px;}
.y3a{bottom:133.380000px;}
.y245{bottom:134.100000px;}
.y248{bottom:135.180000px;}
.y68{bottom:137.340000px;}
.y171{bottom:139.862715px;}
.y8b{bottom:140.940000px;}
.y9b{bottom:142.920000px;}
.ya7{bottom:144.360000px;}
.y1f5{bottom:145.260000px;}
.y97{bottom:147.600000px;}
.y7f{bottom:150.120000px;}
.y39{bottom:153.210000px;}
.y244{bottom:153.930000px;}
.y247{bottom:155.010000px;}
.y67{bottom:157.350000px;}
.y8a{bottom:160.950000px;}
.y9a{bottom:162.750000px;}
.ya6{bottom:164.190000px;}
.y1f4{bottom:165.090000px;}
.y96{bottom:167.430000px;}
.y7e{bottom:169.950000px;}
.y38{bottom:173.010000px;}
.y243{bottom:173.910000px;}
.y170{bottom:176.311701px;}
.y66{bottom:177.150000px;}
.y89{bottom:180.750000px;}
.ya5{bottom:183.990000px;}
.y1f3{bottom:184.890000px;}
.y95{bottom:187.230000px;}
.y7d{bottom:189.750000px;}
.y37{bottom:192.810000px;}
.y65{bottom:196.950000px;}
.y88{bottom:200.550000px;}
.y12e{bottom:202.170000px;}
.ya4{bottom:203.790000px;}
.y1f2{bottom:204.690000px;}
.y94{bottom:207.030000px;}
.y7c{bottom:209.550000px;}
.y36{bottom:212.610000px;}
.y16f{bottom:212.899171px;}
.y64{bottom:216.750000px;}
.y87{bottom:220.350000px;}
.y12d{bottom:221.970000px;}
.ya3{bottom:223.590000px;}
.y1f1{bottom:224.490000px;}
.y93{bottom:226.830000px;}
.y7b{bottom:229.530000px;}
.y35{bottom:232.590000px;}
.y63{bottom:236.550000px;}
.y86{bottom:240.150000px;}
.y12c{bottom:241.770000px;}
.ya2{bottom:243.570000px;}
.y1f0{bottom:244.470000px;}
.y92{bottom:246.810000px;}
.y16c{bottom:249.318152px;}
.y7a{bottom:249.330000px;}
.y34{bottom:252.390000px;}
.y62{bottom:256.530000px;}
.y85{bottom:260.130000px;}
.y12b{bottom:261.570000px;}
.y180{bottom:261.750000px;}
.ya1{bottom:263.370000px;}
.y1ef{bottom:264.270000px;}
.y79{bottom:269.130000px;}
.y33{bottom:272.190000px;}
.y91{bottom:275.610000px;}
.y61{bottom:276.330000px;}
.y84{bottom:279.930000px;}
.y12a{bottom:281.550000px;}
.ya0{bottom:283.170000px;}
.y1ee{bottom:284.070000px;}
.y16b{bottom:285.774062px;}
.y78{bottom:288.930000px;}
.y32{bottom:291.990000px;}
.y90{bottom:295.410000px;}
.y60{bottom:296.130000px;}
.y83{bottom:299.730000px;}
.y129{bottom:301.350000px;}
.y17f{bottom:301.530000px;}
.y9f{bottom:302.970000px;}
.y1ed{bottom:303.870000px;}
.y77{bottom:308.730000px;}
.y31{bottom:311.790000px;}
.y8f{bottom:315.210000px;}
.y5f{bottom:315.930000px;}
.y82{bottom:319.530000px;}
.y128{bottom:321.150000px;}
.y17e{bottom:321.330000px;}
.y16a{bottom:322.356916px;}
.y9e{bottom:322.770000px;}
.y1ec{bottom:323.670000px;}
.y76{bottom:328.710000px;}
.y30{bottom:331.770000px;}
.y8e{bottom:335.010000px;}
.y5e{bottom:335.730000px;}
.y11d{bottom:337.950000px;}
.y127{bottom:340.950000px;}
.y17d{bottom:341.130000px;}
.y11c{bottom:341.465155px;}
.y11b{bottom:341.465159px;}
.y119{bottom:341.465163px;}
.y117{bottom:341.465166px;}
.y1eb{bottom:343.650000px;}
.y75{bottom:348.510000px;}
.y2f{bottom:351.570000px;}
.y8d{bottom:354.990000px;}
.y5d{bottom:355.710000px;}
.y169{bottom:358.778205px;}
.y126{bottom:360.750000px;}
.y17c{bottom:360.930000px;}
.y116{bottom:362.750727px;}
.y115{bottom:362.750730px;}
.y114{bottom:362.750735px;}
.y112{bottom:362.750738px;}
.y1ea{bottom:363.450000px;}
.y74{bottom:368.310000px;}
.y2e{bottom:371.370000px;}
.y5c{bottom:375.510000px;}
.y125{bottom:380.730000px;}
.y1e9{bottom:383.250000px;}
.y111{bottom:383.933227px;}
.y110{bottom:383.933230px;}
.y10f{bottom:383.933235px;}
.y10e{bottom:383.933238px;}
.y73{bottom:388.110000px;}
.y2d{bottom:391.170000px;}
.y167{bottom:395.222575px;}
.y5b{bottom:395.310000px;}
.y124{bottom:400.575000px;}
.y17b{bottom:400.755000px;}
.y1e8{bottom:403.095000px;}
.y10d{bottom:405.219057px;}
.y10c{bottom:405.219060px;}
.y10b{bottom:405.219065px;}
.y10a{bottom:405.219068px;}
.y72{bottom:407.955000px;}
.y2c{bottom:411.015000px;}
.y5a{bottom:415.155000px;}
.y123{bottom:420.375000px;}
.y17a{bottom:420.555000px;}
.y1e7{bottom:422.895000px;}
.y109{bottom:426.503164px;}
.y108{bottom:426.503168px;}
.y106{bottom:426.503172px;}
.y104{bottom:426.503175px;}
.y71{bottom:427.935000px;}
.y2b{bottom:430.995000px;}
.y164{bottom:431.816969px;}
.y59{bottom:434.955000px;}
.y122{bottom:440.175000px;}
.y179{bottom:440.355000px;}
.y1e6{bottom:442.875000px;}
.y70{bottom:447.735000px;}
.y103{bottom:447.814826px;}
.y102{bottom:447.814829px;}
.y101{bottom:447.814834px;}
.y100{bottom:447.814837px;}
.y2a{bottom:450.795000px;}
.y58{bottom:454.935000px;}
.y121{bottom:459.975000px;}
.y178{bottom:460.155000px;}
.y1e5{bottom:462.675000px;}
.y160{bottom:468.238258px;}
.yff{bottom:469.100656px;}
.yfe{bottom:469.100659px;}
.yfd{bottom:469.100664px;}
.yfc{bottom:469.100667px;}
.y29{bottom:470.595000px;}
.y57{bottom:474.735000px;}
.y6f{bottom:476.535000px;}
.y120{bottom:479.955000px;}
.y1e4{bottom:482.475000px;}
.yfb{bottom:490.386485px;}
.yfa{bottom:490.386489px;}
.yf9{bottom:490.386493px;}
.yf8{bottom:490.386496px;}
.y28{bottom:490.395000px;}
.y56{bottom:494.535000px;}
.y6e{bottom:496.335000px;}
.y11f{bottom:499.755000px;}
.y177{bottom:499.935000px;}
.y1e3{bottom:502.275000px;}
.y27{bottom:510.195000px;}
.y15f{bottom:510.915000px;}
.yf7{bottom:511.568986px;}
.yf6{bottom:511.568989px;}
.yf5{bottom:511.568994px;}
.yf4{bottom:511.568997px;}
.y55{bottom:514.335000px;}
.y6d{bottom:516.135000px;}
.y176{bottom:519.735000px;}
.y1e2{bottom:522.075000px;}
.y26{bottom:530.175000px;}
.y15e{bottom:530.895000px;}
.y156{bottom:531.870000px;}
.yf3{bottom:532.854815px;}
.yf2{bottom:532.854819px;}
.yf1{bottom:532.854823px;}
.yf0{bottom:532.854826px;}
.y1dc{bottom:533.850000px;}
.y54{bottom:534.135000px;}
.y1db{bottom:539.100795px;}
.y1da{bottom:539.100804px;}
.y1d9{bottom:539.100810px;}
.y1d8{bottom:539.100821px;}
.y1d7{bottom:539.100833px;}
.y154{bottom:541.484140px;}
.y153{bottom:541.484150px;}
.y151{bottom:541.484155px;}
.y14f{bottom:541.484160px;}
.y1e1{bottom:542.055000px;}
.y6c{bottom:545.115000px;}
.y25{bottom:549.975000px;}
.y15d{bottom:550.695000px;}
.y53{bottom:554.115000px;}
.yef{bottom:554.140645px;}
.yee{bottom:554.140648px;}
.yed{bottom:554.140653px;}
.yec{bottom:554.140656px;}
.y1e0{bottom:561.855000px;}
.y1d6{bottom:562.148030px;}
.y1d5{bottom:562.148039px;}
.y1d4{bottom:562.148045px;}
.y1d3{bottom:562.148056px;}
.y1d2{bottom:562.148068px;}
.y6b{bottom:564.915000px;}
.y24{bottom:569.775000px;}
.y15c{bottom:570.495000px;}
.y52{bottom:573.915000px;}
.yeb{bottom:575.426475px;}
.yea{bottom:575.426478px;}
.ye9{bottom:575.426482px;}
.ye8{bottom:575.426485px;}
.y1df{bottom:581.655000px;}
.y14e{bottom:582.053895px;}
.y14d{bottom:582.053905px;}
.y14c{bottom:582.053910px;}
.y14b{bottom:582.053915px;}
.y6a{bottom:584.715000px;}
.y1d1{bottom:585.162387px;}
.y1d0{bottom:585.162396px;}
.y1ce{bottom:585.162402px;}
.y1cc{bottom:585.162413px;}
.y1cb{bottom:585.162425px;}
.y23{bottom:589.575000px;}
.y15b{bottom:590.295000px;}
.y51{bottom:593.715000px;}
.ye7{bottom:596.712304px;}
.ye6{bottom:596.712308px;}
.ye5{bottom:596.712312px;}
.ye4{bottom:596.712315px;}
.y1de{bottom:601.455000px;}
.y22{bottom:609.375000px;}
.y15a{bottom:610.095000px;}
.y50{bottom:613.515000px;}
.y241{bottom:615.630000px;}
.ye3{bottom:617.912026px;}
.ye2{bottom:617.912029px;}
.ye1{bottom:617.912034px;}
.ydf{bottom:617.912037px;}
.y149{bottom:622.782313px;}
.y148{bottom:622.782323px;}
.y147{bottom:622.782329px;}
.y145{bottom:622.782334px;}
.y1c9{bottom:627.081395px;}
.y1c7{bottom:627.081404px;}
.y1c5{bottom:627.081410px;}
.y1c2{bottom:627.081421px;}
.y1c0{bottom:627.081433px;}
.y21{bottom:629.355000px;}
.y159{bottom:630.075000px;}
.y240{bottom:632.231183px;}
.y23f{bottom:632.231191px;}
.y23e{bottom:632.231194px;}
.y23d{bottom:632.231198px;}
.y23b{bottom:632.231202px;}
.y23a{bottom:632.231222px;}
.y4f{bottom:633.315000px;}
.yde{bottom:639.197856px;}
.ydd{bottom:639.197859px;}
.ydc{bottom:639.197864px;}
.ydb{bottom:639.197867px;}
.y20{bottom:649.185000px;}
.y158{bottom:649.905000px;}
.y4e{bottom:653.325000px;}
.yda{bottom:660.483685px;}
.yd9{bottom:660.483689px;}
.yd8{bottom:660.483693px;}
.yd7{bottom:660.483696px;}
.y144{bottom:663.550274px;}
.y143{bottom:663.550284px;}
.y142{bottom:663.550289px;}
.y141{bottom:663.550294px;}
.y1f{bottom:668.985000px;}
.y1be{bottom:669.033280px;}
.y1bc{bottom:669.033290px;}
.y1ba{bottom:669.033296px;}
.y1b8{bottom:669.033307px;}
.y1b6{bottom:669.033319px;}
.y4d{bottom:673.125000px;}
.y239{bottom:680.816416px;}
.y238{bottom:680.816424px;}
.y237{bottom:680.816427px;}
.y236{bottom:680.816431px;}
.y235{bottom:680.816435px;}
.y234{bottom:680.816455px;}
.yd6{bottom:681.769515px;}
.yd5{bottom:681.769518px;}
.yd4{bottom:681.769523px;}
.yd3{bottom:681.769526px;}
.y1e{bottom:688.785000px;}
.y1b5{bottom:692.046268px;}
.y1b3{bottom:692.046277px;}
.y1b2{bottom:692.046283px;}
.y1b1{bottom:692.046294px;}
.y1af{bottom:692.046306px;}
.y4c{bottom:692.925000px;}
.yd2{bottom:703.055345px;}
.yd1{bottom:703.055348px;}
.yd0{bottom:703.055352px;}
.ycf{bottom:703.055355px;}
.y140{bottom:704.273749px;}
.y13f{bottom:704.273759px;}
.y13e{bottom:704.273764px;}
.y13d{bottom:704.273769px;}
.y233{bottom:707.469757px;}
.y232{bottom:707.469765px;}
.y231{bottom:707.469768px;}
.y22f{bottom:707.469772px;}
.y22e{bottom:707.469776px;}
.y22c{bottom:707.469796px;}
.y1d{bottom:708.585000px;}
.y4b{bottom:712.725000px;}
.y1ad{bottom:715.088023px;}
.y1ab{bottom:715.088032px;}
.y1a9{bottom:715.088038px;}
.y1a6{bottom:715.088049px;}
.y1a4{bottom:715.088061px;}
.yce{bottom:724.341174px;}
.ycd{bottom:724.341178px;}
.ycc{bottom:724.341182px;}
.ycb{bottom:724.341185px;}
.y1c{bottom:728.565000px;}
.y4a{bottom:732.525000px;}
.y22b{bottom:734.123098px;}
.y22a{bottom:734.123106px;}
.y229{bottom:734.123109px;}
.y228{bottom:734.123113px;}
.y227{bottom:734.123117px;}
.y226{bottom:734.123137px;}
.y13b{bottom:745.002167px;}
.y13a{bottom:745.002178px;}
.y138{bottom:745.002183px;}
.y136{bottom:745.002188px;}
.yca{bottom:745.523675px;}
.yc9{bottom:745.523678px;}
.yc8{bottom:745.523682px;}
.yc6{bottom:745.523685px;}
.y1b{bottom:748.365000px;}
.y49{bottom:752.505000px;}
.y1a1{bottom:757.020730px;}
.y19f{bottom:757.020739px;}
.y19d{bottom:757.020745px;}
.y19b{bottom:757.020756px;}
.y199{bottom:757.020768px;}
.yc5{bottom:766.809504px;}
.yc4{bottom:766.809508px;}
.yc3{bottom:766.809512px;}
.yc2{bottom:766.809515px;}
.y1a{bottom:768.165000px;}
.y48{bottom:772.305000px;}
.y225{bottom:782.705158px;}
.y224{bottom:782.705166px;}
.y221{bottom:782.705169px;}
.y220{bottom:782.705173px;}
.y21f{bottom:782.705177px;}
.y21e{bottom:782.705197px;}
.y134{bottom:785.582303px;}
.y133{bottom:785.582313px;}
.y131{bottom:785.582318px;}
.y12f{bottom:785.582323px;}
.y19{bottom:787.965000px;}
.yc1{bottom:788.095334px;}
.yc0{bottom:788.095337px;}
.ybe{bottom:788.095342px;}
.ybc{bottom:788.095345px;}
.y47{bottom:792.105000px;}
.y196{bottom:798.967136px;}
.y194{bottom:798.967145px;}
.y191{bottom:798.967151px;}
.y18f{bottom:798.967162px;}
.y18d{bottom:798.967174px;}
.y18{bottom:807.765000px;}
.ybb{bottom:809.398385px;}
.yba{bottom:809.398388px;}
.yb9{bottom:809.398393px;}
.yb7{bottom:809.398396px;}
.y46{bottom:811.905000px;}
.y17{bottom:827.745000px;}
.yb6{bottom:830.684215px;}
.yb5{bottom:830.684218px;}
.yb3{bottom:830.684222px;}
.yb1{bottom:830.684225px;}
.y21c{bottom:831.252315px;}
.y21b{bottom:831.252323px;}
.y21a{bottom:831.252326px;}
.y219{bottom:831.252330px;}
.y218{bottom:831.252334px;}
.y217{bottom:831.252354px;}
.y45{bottom:831.705000px;}
.y18b{bottom:840.886144px;}
.y188{bottom:840.886153px;}
.y186{bottom:840.886159px;}
.y183{bottom:840.886170px;}
.y181{bottom:840.886182px;}
.y16{bottom:847.545000px;}
.y44{bottom:851.685000px;}
.yb0{bottom:851.866715px;}
.yae{bottom:851.866718px;}
.yac{bottom:851.866723px;}
.yaa{bottom:851.866726px;}
.y15{bottom:867.345000px;}
.y43{bottom:871.485000px;}
.y216{bottom:879.847067px;}
.y215{bottom:879.847075px;}
.y214{bottom:879.847078px;}
.y213{bottom:879.847082px;}
.y212{bottom:879.847086px;}
.y211{bottom:879.847106px;}
.y14{bottom:887.145000px;}
.y42{bottom:891.285000px;}
.y41{bottom:911.130000px;}
.y13{bottom:912.210000px;}
.y12{bottom:927.510000px;}
.y20e{bottom:928.394224px;}
.y20d{bottom:928.394232px;}
.y20b{bottom:928.394235px;}
.y209{bottom:928.394238px;}
.y206{bottom:928.394243px;}
.y204{bottom:928.394262px;}
.y40{bottom:930.930000px;}
.y11{bottom:948.750000px;}
.y3f{bottom:950.910000px;}
.y3e{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y202{bottom:976.941381px;}
.y1ff{bottom:976.941388px;}
.y1fe{bottom:976.941392px;}
.y1fc{bottom:976.941395px;}
.y1fa{bottom:976.941400px;}
.y1f8{bottom:976.941419px;}
.y3d{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h16{height:17.772637px;}
.h17{height:17.772639px;}
.h15{height:17.772644px;}
.h19{height:17.793303px;}
.h1a{height:17.793305px;}
.h18{height:17.793310px;}
.h13{height:17.875966px;}
.h14{height:17.875968px;}
.h11{height:17.875973px;}
.h1c{height:17.896632px;}
.h1d{height:17.896634px;}
.h1b{height:17.896639px;}
.h41{height:18.904653px;}
.h44{height:18.904657px;}
.h45{height:18.904660px;}
.h43{height:18.904661px;}
.h42{height:18.904663px;}
.h3c{height:18.937530px;}
.h3f{height:18.937534px;}
.h40{height:18.937537px;}
.h3e{height:18.937539px;}
.h3d{height:18.937540px;}
.ha{height:21.780000px;}
.h53{height:21.893818px;}
.h56{height:21.893819px;}
.h55{height:21.893820px;}
.h57{height:21.893823px;}
.h54{height:21.893835px;}
.he{height:27.147656px;}
.h12{height:28.859542px;}
.h2e{height:31.851318px;}
.h2c{height:31.879014px;}
.h7{height:33.480000px;}
.h28{height:34.006257px;}
.h29{height:34.006262px;}
.h27{height:34.006272px;}
.h25{height:34.045799px;}
.h26{height:34.045804px;}
.h24{height:34.045814px;}
.h22{height:34.203968px;}
.h23{height:34.203973px;}
.h20{height:34.203983px;}
.h37{height:37.809303px;}
.h3a{height:37.809307px;}
.h3b{height:37.809310px;}
.h39{height:37.809312px;}
.h38{height:37.809313px;}
.h1f{height:37.820935px;}
.h31{height:37.842181px;}
.h35{height:37.842185px;}
.h36{height:37.842188px;}
.h34{height:37.842190px;}
.h33{height:37.842191px;}
.h2d{height:38.678145px;}
.hd{height:41.726953px;}
.hf{height:42.164648px;}
.h5a{height:42.835781px;}
.h10{height:43.506914px;}
.h4e{height:43.787634px;}
.h51{height:43.787635px;}
.h50{height:43.787636px;}
.h52{height:43.787639px;}
.h4f{height:43.787651px;}
.h48{height:43.825710px;}
.h4c{height:43.825711px;}
.h4b{height:43.825712px;}
.h4d{height:43.825715px;}
.h4a{height:43.825727px;}
.h32{height:45.913129px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h5c{height:48.496641px;}
.h30{height:50.688386px;}
.h49{height:53.172820px;}
.h9{height:53.224453px;}
.h5b{height:55.178789px;}
.h21{height:55.220000px;}
.h47{height:60.169958px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h59{height:69.683911px;}
.h2b{height:72.366775px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h2a{height:293.250000px;}
.h46{height:347.996261px;}
.h2f{height:375.750000px;}
.h58{height:408.748022px;}
.h1e{height:534.582589px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w10{width:22.216859px;}
.w1b{width:26.346529px;}
.w16{width:26.346530px;}
.w21{width:30.714041px;}
.w7{width:46.808620px;}
.w24{width:49.066157px;}
.w25{width:53.415723px;}
.w9{width:53.743997px;}
.w13{width:65.984067px;}
.w23{width:69.249670px;}
.w8{width:74.239589px;}
.wc{width:77.827249px;}
.wd{width:77.866856px;}
.w1e{width:79.895847px;}
.w19{width:79.895848px;}
.w14{width:87.784357px;}
.w26{width:113.928106px;}
.w1f{width:121.556295px;}
.w1a{width:121.556296px;}
.w11{width:130.165326px;}
.w3{width:131.976000px;}
.w12{width:135.962537px;}
.w1d{width:144.604018px;}
.w18{width:144.604019px;}
.w6{width:156.037357px;}
.we{width:158.466576px;}
.w1c{width:159.629772px;}
.w17{width:159.629773px;}
.w22{width:297.713165px;}
.wb{width:322.118334px;}
.wa{width:341.998622px;}
.w15{width:458.766522px;}
.w20{width:544.042081px;}
.w27{width:630.289626px;}
.wf{width:654.286876px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.188203px;}
.x13{left:3.001880px;}
.x10{left:4.468315px;}
.x3c{left:5.913885px;}
.x2{left:8.100000px;}
.x14{left:11.921258px;}
.x2a{left:13.087119px;}
.x16{left:15.440703px;}
.x1e{left:18.417136px;}
.x33{left:22.559215px;}
.x15{left:25.490099px;}
.x28{left:29.159626px;}
.x17{left:31.695708px;}
.x20{left:33.665731px;}
.x26{left:46.960883px;}
.x1{left:53.460000px;}
.xe{left:58.712625px;}
.xb{left:75.599987px;}
.x3f{left:80.999987px;}
.x6{left:86.075987px;}
.x38{left:91.989505px;}
.x18{left:93.489572px;}
.x41{left:96.515987px;}
.x40{left:108.035987px;}
.x4{left:118.290000px;}
.xa{left:121.535987px;}
.x1b{left:124.206744px;}
.x22{left:129.000000px;}
.x1a{left:132.762631px;}
.x3e{left:136.500000px;}
.x36{left:138.789235px;}
.x2e{left:162.029987px;}
.x37{left:171.792521px;}
.x35{left:183.750000px;}
.x2f{left:185.725969px;}
.x2c{left:200.250000px;}
.x24{left:202.888232px;}
.x30{left:214.213153px;}
.x25{left:228.021051px;}
.x9{left:280.874987px;}
.x19{left:288.900000px;}
.xd{left:291.384294px;}
.x7{left:298.514987px;}
.x2d{left:317.594987px;}
.x23{left:324.254987px;}
.x27{left:361.102338px;}
.xc{left:371.594987px;}
.x31{left:375.983579px;}
.x8{left:446.504987px;}
.xf{left:449.491912px;}
.x1c{left:459.039671px;}
.x39{left:471.794930px;}
.x11{left:498.470856px;}
.x29{left:499.980835px;}
.x32{left:522.563586px;}
.x1d{left:541.025627px;}
.x3a{left:543.333844px;}
.x2b{left:568.887805px;}
.x12{left:574.889394px;}
.x3b{left:594.889554px;}
.x34{left:604.443655px;}
.x1f{left:622.863058px;}
.x3d{left:650.785292px;}
.x3{left:707.910000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-1.157333pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.140594pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.203073pt;}
.ls17{letter-spacing:0.210891pt;}
.ls22{letter-spacing:0.220800pt;}
.ls6{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.454933pt;}
.ls21{letter-spacing:1.440000pt;}
.lsc{letter-spacing:1.872640pt;}
.ls23{letter-spacing:4.640000pt;}
.ls1f{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls13{letter-spacing:44.112640pt;}
.ls16{letter-spacing:49.872640pt;}
.lsa{letter-spacing:101.840640pt;}
.lsd{letter-spacing:105.680640pt;}
.ls9{letter-spacing:123.600640pt;}
.ls1c{letter-spacing:126.160640pt;}
.ls2{letter-spacing:143.440640pt;}
.wsa{word-spacing:-17.785182pt;}
.wsb{word-spacing:-17.433696pt;}
.wsd{word-spacing:-17.125829pt;}
.wse{word-spacing:-16.922756pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws11{word-spacing:-0.273920pt;}
.ws10{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-4.029227pt;}
._16{margin-left:-2.960853pt;}
._11{margin-left:-1.926187pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.905813pt;}
._1{width:1.973333pt;}
._10{width:3.110827pt;}
._13{width:4.884267pt;}
._14{width:5.843200pt;}
._15{width:7.259307pt;}
._12{width:8.381227pt;}
._6{width:9.600000pt;}
._19{width:10.610133pt;}
._18{width:11.637120pt;}
._1b{width:14.304213pt;}
._1d{width:20.339413pt;}
._1c{width:21.513600pt;}
._1e{width:23.004800pt;}
._20{width:25.720960pt;}
._1f{width:26.952960pt;}
._21{width:29.082240pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._17{width:394.891733pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs8{font-size:33.800152pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:36.739296pt;}
.fs4{font-size:37.120000pt;}
.fsc{font-size:45.299652pt;}
.fsb{font-size:49.238752pt;}
.fs2{font-size:53.120000pt;}
.fse{font-size:53.773228pt;}
.fsd{font-size:58.449161pt;}
.fs1{font-size:58.880000pt;}
.fs10{font-size:62.275743pt;}
.fsa{font-size:64.673389pt;}
.fsf{font-size:67.691025pt;}
.fs9{font-size:70.297162pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y157{bottom:-11.664496pt;}
.y1dd{bottom:-10.675496pt;}
.y11e{bottom:-7.346099pt;}
.y175{bottom:-3.576067pt;}
.y242{bottom:-3.011545pt;}
.y0{bottom:0.000000pt;}
.y163{bottom:2.708131pt;}
.y1a3{bottom:3.202535pt;}
.y1b7{bottom:3.213488pt;}
.y1bd{bottom:3.213491pt;}
.y1bf{bottom:3.213494pt;}
.y1bb{bottom:3.213496pt;}
.y1b9{bottom:3.213497pt;}
.y1b0{bottom:3.214706pt;}
.y18a{bottom:3.214708pt;}
.y1b4{bottom:3.214709pt;}
.y185{bottom:3.214711pt;}
.y198{bottom:3.214712pt;}
.y193{bottom:3.214713pt;}
.y1a8{bottom:3.214714pt;}
.y1c4{bottom:3.243939pt;}
.y22d{bottom:3.723008pt;}
.y223{bottom:3.723009pt;}
.y230{bottom:3.723010pt;}
.y210{bottom:3.723013pt;}
.y208{bottom:3.723023pt;}
.y201{bottom:3.751214pt;}
.ye{bottom:5.600000pt;}
.y11a{bottom:7.255783pt;}
.yb4{bottom:7.256013pt;}
.yb2{bottom:7.256019pt;}
.ybf{bottom:7.271321pt;}
.yad{bottom:7.347861pt;}
.yaf{bottom:7.347863pt;}
.yab{bottom:7.347864pt;}
.yc7{bottom:7.347867pt;}
.y107{bottom:7.370823pt;}
.y118{bottom:7.898722pt;}
.y113{bottom:7.898952pt;}
.yb8{bottom:7.898955pt;}
.ybd{bottom:7.914263pt;}
.y105{bottom:7.921917pt;}
.ye0{bottom:7.990803pt;}
.y165{bottom:9.724653pt;}
.y161{bottom:9.745170pt;}
.y168{bottom:9.847750pt;}
.y172{bottom:9.872370pt;}
.y16d{bottom:9.878525pt;}
.y6{bottom:11.040000pt;}
.y19a{bottom:11.677657pt;}
.y1a0{bottom:11.677661pt;}
.y19e{bottom:11.677665pt;}
.y19c{bottom:11.677666pt;}
.y18e{bottom:11.689834pt;}
.y195{bottom:11.689838pt;}
.y1cf{bottom:11.689842pt;}
.y190{bottom:11.689843pt;}
.y1a5{bottom:11.702011pt;}
.y1ac{bottom:11.702014pt;}
.y1ae{bottom:11.702017pt;}
.y1aa{bottom:11.702019pt;}
.y182{bottom:11.714188pt;}
.y18c{bottom:11.714193pt;}
.y187{bottom:11.714194pt;}
.y1c1{bottom:11.719059pt;}
.y1c8{bottom:11.719062pt;}
.y1ca{bottom:11.719065pt;}
.y1c6{bottom:11.719066pt;}
.y205{bottom:13.538207pt;}
.y20c{bottom:13.538208pt;}
.y20a{bottom:13.538209pt;}
.y21d{bottom:13.538211pt;}
.y23c{bottom:13.538222pt;}
.y1f9{bottom:13.566411pt;}
.y1fd{bottom:13.566413pt;}
.y203{bottom:13.566415pt;}
.y1fb{bottom:13.566421pt;}
.y139{bottom:13.883693pt;}
.y13c{bottom:13.883698pt;}
.y137{bottom:13.883707pt;}
.y152{bottom:13.918402pt;}
.y155{bottom:13.918407pt;}
.y150{bottom:13.918416pt;}
.y132{bottom:14.059435pt;}
.y135{bottom:14.059439pt;}
.y14a{bottom:14.059441pt;}
.y130{bottom:14.059443pt;}
.y146{bottom:14.059450pt;}
.y8{bottom:16.160000pt;}
.y166{bottom:16.864272pt;}
.y162{bottom:16.884789pt;}
.y173{bottom:16.888892pt;}
.y16e{bottom:16.895047pt;}
.y197{bottom:20.018846pt;}
.y192{bottom:20.018847pt;}
.y1cd{bottom:20.018848pt;}
.y1a7{bottom:20.031025pt;}
.y189{bottom:20.043195pt;}
.y1a2{bottom:20.043200pt;}
.y184{bottom:20.043201pt;}
.y1c3{bottom:20.048073pt;}
.y222{bottom:23.184179pt;}
.y20f{bottom:23.184182pt;}
.y207{bottom:23.184193pt;}
.y200{bottom:23.212383pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y9d{bottom:91.680000pt;}
.ya9{bottom:92.960000pt;}
.y1f7{bottom:93.760000pt;}
.y99{bottom:95.840000pt;}
.y81{bottom:98.080000pt;}
.y246{bottom:101.600000pt;}
.y249{bottom:102.560000pt;}
.y69{bottom:104.480000pt;}
.y8c{bottom:107.680000pt;}
.y9c{bottom:109.440000pt;}
.ya8{bottom:110.720000pt;}
.y1f6{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.y98{bottom:113.440000pt;}
.y174{bottom:113.865333pt;}
.y80{bottom:115.840000pt;}
.y3a{bottom:118.560000pt;}
.y245{bottom:119.200000pt;}
.y248{bottom:120.160000pt;}
.y68{bottom:122.080000pt;}
.y171{bottom:124.322413pt;}
.y8b{bottom:125.280000pt;}
.y9b{bottom:127.040000pt;}
.ya7{bottom:128.320000pt;}
.y1f5{bottom:129.120000pt;}
.y97{bottom:131.200000pt;}
.y7f{bottom:133.440000pt;}
.y39{bottom:136.186667pt;}
.y244{bottom:136.826667pt;}
.y247{bottom:137.786667pt;}
.y67{bottom:139.866667pt;}
.y8a{bottom:143.066667pt;}
.y9a{bottom:144.666667pt;}
.ya6{bottom:145.946667pt;}
.y1f4{bottom:146.746667pt;}
.y96{bottom:148.826667pt;}
.y7e{bottom:151.066667pt;}
.y38{bottom:153.786667pt;}
.y243{bottom:154.586667pt;}
.y170{bottom:156.721512pt;}
.y66{bottom:157.466667pt;}
.y89{bottom:160.666667pt;}
.ya5{bottom:163.546667pt;}
.y1f3{bottom:164.346667pt;}
.y95{bottom:166.426667pt;}
.y7d{bottom:168.666667pt;}
.y37{bottom:171.386667pt;}
.y65{bottom:175.066667pt;}
.y88{bottom:178.266667pt;}
.y12e{bottom:179.706667pt;}
.ya4{bottom:181.146667pt;}
.y1f2{bottom:181.946667pt;}
.y94{bottom:184.026667pt;}
.y7c{bottom:186.266667pt;}
.y36{bottom:188.986667pt;}
.y16f{bottom:189.243707pt;}
.y64{bottom:192.666667pt;}
.y87{bottom:195.866667pt;}
.y12d{bottom:197.306667pt;}
.ya3{bottom:198.746667pt;}
.y1f1{bottom:199.546667pt;}
.y93{bottom:201.626667pt;}
.y7b{bottom:204.026667pt;}
.y35{bottom:206.746667pt;}
.y63{bottom:210.266667pt;}
.y86{bottom:213.466667pt;}
.y12c{bottom:214.906667pt;}
.ya2{bottom:216.506667pt;}
.y1f0{bottom:217.306667pt;}
.y92{bottom:219.386667pt;}
.y16c{bottom:221.616135pt;}
.y7a{bottom:221.626667pt;}
.y34{bottom:224.346667pt;}
.y62{bottom:228.026667pt;}
.y85{bottom:231.226667pt;}
.y12b{bottom:232.506667pt;}
.y180{bottom:232.666667pt;}
.ya1{bottom:234.106667pt;}
.y1ef{bottom:234.906667pt;}
.y79{bottom:239.226667pt;}
.y33{bottom:241.946667pt;}
.y91{bottom:244.986667pt;}
.y61{bottom:245.626667pt;}
.y84{bottom:248.826667pt;}
.y12a{bottom:250.266667pt;}
.ya0{bottom:251.706667pt;}
.y1ee{bottom:252.506667pt;}
.y16b{bottom:254.021389pt;}
.y78{bottom:256.826667pt;}
.y32{bottom:259.546667pt;}
.y90{bottom:262.586667pt;}
.y60{bottom:263.226667pt;}
.y83{bottom:266.426667pt;}
.y129{bottom:267.866667pt;}
.y17f{bottom:268.026667pt;}
.y9f{bottom:269.306667pt;}
.y1ed{bottom:270.106667pt;}
.y77{bottom:274.426667pt;}
.y31{bottom:277.146667pt;}
.y8f{bottom:280.186667pt;}
.y5f{bottom:280.826667pt;}
.y82{bottom:284.026667pt;}
.y128{bottom:285.466667pt;}
.y17e{bottom:285.626667pt;}
.y16a{bottom:286.539481pt;}
.y9e{bottom:286.906667pt;}
.y1ec{bottom:287.706667pt;}
.y76{bottom:292.186667pt;}
.y30{bottom:294.906667pt;}
.y8e{bottom:297.786667pt;}
.y5e{bottom:298.426667pt;}
.y11d{bottom:300.400000pt;}
.y127{bottom:303.066667pt;}
.y17d{bottom:303.226667pt;}
.y11c{bottom:303.524583pt;}
.y11b{bottom:303.524586pt;}
.y119{bottom:303.524590pt;}
.y117{bottom:303.524592pt;}
.y1eb{bottom:305.466667pt;}
.y75{bottom:309.786667pt;}
.y2f{bottom:312.506667pt;}
.y8d{bottom:315.546667pt;}
.y5d{bottom:316.186667pt;}
.y169{bottom:318.913960pt;}
.y126{bottom:320.666667pt;}
.y17c{bottom:320.826667pt;}
.y116{bottom:322.445090pt;}
.y115{bottom:322.445093pt;}
.y114{bottom:322.445097pt;}
.y112{bottom:322.445100pt;}
.y1ea{bottom:323.066667pt;}
.y74{bottom:327.386667pt;}
.y2e{bottom:330.106667pt;}
.y5c{bottom:333.786667pt;}
.y125{bottom:338.426667pt;}
.y1e9{bottom:340.666667pt;}
.y111{bottom:341.273980pt;}
.y110{bottom:341.273983pt;}
.y10f{bottom:341.273987pt;}
.y10e{bottom:341.273989pt;}
.y73{bottom:344.986667pt;}
.y2d{bottom:347.706667pt;}
.y167{bottom:351.308956pt;}
.y5b{bottom:351.386667pt;}
.y124{bottom:356.066667pt;}
.y17b{bottom:356.226667pt;}
.y1e8{bottom:358.306667pt;}
.y10d{bottom:360.194717pt;}
.y10c{bottom:360.194720pt;}
.y10b{bottom:360.194724pt;}
.y10a{bottom:360.194727pt;}
.y72{bottom:362.626667pt;}
.y2c{bottom:365.346667pt;}
.y5a{bottom:369.026667pt;}
.y123{bottom:373.666667pt;}
.y17a{bottom:373.826667pt;}
.y1e7{bottom:375.906667pt;}
.y109{bottom:379.113924pt;}
.y108{bottom:379.113927pt;}
.y106{bottom:379.113931pt;}
.y104{bottom:379.113933pt;}
.y71{bottom:380.386667pt;}
.y2b{bottom:383.106667pt;}
.y164{bottom:383.837306pt;}
.y59{bottom:386.626667pt;}
.y122{bottom:391.266667pt;}
.y179{bottom:391.426667pt;}
.y1e6{bottom:393.666667pt;}
.y70{bottom:397.986667pt;}
.y103{bottom:398.057623pt;}
.y102{bottom:398.057626pt;}
.y101{bottom:398.057630pt;}
.y100{bottom:398.057633pt;}
.y2a{bottom:400.706667pt;}
.y58{bottom:404.386667pt;}
.y121{bottom:408.866667pt;}
.y178{bottom:409.026667pt;}
.y1e5{bottom:411.266667pt;}
.y160{bottom:416.211785pt;}
.yff{bottom:416.978361pt;}
.yfe{bottom:416.978364pt;}
.yfd{bottom:416.978368pt;}
.yfc{bottom:416.978370pt;}
.y29{bottom:418.306667pt;}
.y57{bottom:421.986667pt;}
.y6f{bottom:423.586667pt;}
.y120{bottom:426.626667pt;}
.y1e4{bottom:428.866667pt;}
.yfb{bottom:435.899098pt;}
.yfa{bottom:435.899101pt;}
.yf9{bottom:435.899105pt;}
.yf8{bottom:435.899108pt;}
.y28{bottom:435.906667pt;}
.y56{bottom:439.586667pt;}
.y6e{bottom:441.186667pt;}
.y11f{bottom:444.226667pt;}
.y177{bottom:444.386667pt;}
.y1e3{bottom:446.466667pt;}
.y27{bottom:453.506667pt;}
.y15f{bottom:454.146667pt;}
.yf7{bottom:454.727987pt;}
.yf6{bottom:454.727990pt;}
.yf5{bottom:454.727994pt;}
.yf4{bottom:454.727997pt;}
.y55{bottom:457.186667pt;}
.y6d{bottom:458.786667pt;}
.y176{bottom:461.986667pt;}
.y1e2{bottom:464.066667pt;}
.y26{bottom:471.266667pt;}
.y15e{bottom:471.906667pt;}
.y156{bottom:472.773333pt;}
.yf3{bottom:473.648725pt;}
.yf2{bottom:473.648728pt;}
.yf1{bottom:473.648732pt;}
.yf0{bottom:473.648734pt;}
.y1dc{bottom:474.533333pt;}
.y54{bottom:474.786667pt;}
.y1db{bottom:479.200706pt;}
.y1da{bottom:479.200715pt;}
.y1d9{bottom:479.200720pt;}
.y1d8{bottom:479.200730pt;}
.y1d7{bottom:479.200741pt;}
.y154{bottom:481.319235pt;}
.y153{bottom:481.319244pt;}
.y151{bottom:481.319249pt;}
.y14f{bottom:481.319253pt;}
.y1e1{bottom:481.826667pt;}
.y6c{bottom:484.546667pt;}
.y25{bottom:488.866667pt;}
.y15d{bottom:489.506667pt;}
.y53{bottom:492.546667pt;}
.yef{bottom:492.569462pt;}
.yee{bottom:492.569465pt;}
.yed{bottom:492.569469pt;}
.yec{bottom:492.569472pt;}
.y1e0{bottom:499.426667pt;}
.y1d6{bottom:499.687137pt;}
.y1d5{bottom:499.687146pt;}
.y1d4{bottom:499.687151pt;}
.y1d3{bottom:499.687161pt;}
.y1d2{bottom:499.687172pt;}
.y6b{bottom:502.146667pt;}
.y24{bottom:506.466667pt;}
.y15c{bottom:507.106667pt;}
.y52{bottom:510.146667pt;}
.yeb{bottom:511.490200pt;}
.yea{bottom:511.490203pt;}
.ye9{bottom:511.490207pt;}
.ye8{bottom:511.490209pt;}
.y1df{bottom:517.026667pt;}
.y14e{bottom:517.381240pt;}
.y14d{bottom:517.381249pt;}
.y14c{bottom:517.381254pt;}
.y14b{bottom:517.381258pt;}
.y6a{bottom:519.746667pt;}
.y1d1{bottom:520.144344pt;}
.y1d0{bottom:520.144352pt;}
.y1ce{bottom:520.144358pt;}
.y1cc{bottom:520.144367pt;}
.y1cb{bottom:520.144378pt;}
.y23{bottom:524.066667pt;}
.y15b{bottom:524.706667pt;}
.y51{bottom:527.746667pt;}
.ye7{bottom:530.410937pt;}
.ye6{bottom:530.410940pt;}
.ye5{bottom:530.410944pt;}
.ye4{bottom:530.410947pt;}
.y1de{bottom:534.626667pt;}
.y22{bottom:541.666667pt;}
.y15a{bottom:542.306667pt;}
.y50{bottom:545.346667pt;}
.y241{bottom:547.226667pt;}
.ye3{bottom:549.255134pt;}
.ye2{bottom:549.255137pt;}
.ye1{bottom:549.255141pt;}
.ydf{bottom:549.255144pt;}
.y149{bottom:553.584279pt;}
.y148{bottom:553.584288pt;}
.y147{bottom:553.584292pt;}
.y145{bottom:553.584297pt;}
.y1c9{bottom:557.405684pt;}
.y1c7{bottom:557.405692pt;}
.y1c5{bottom:557.405698pt;}
.y1c2{bottom:557.405708pt;}
.y1c0{bottom:557.405718pt;}
.y21{bottom:559.426667pt;}
.y159{bottom:560.066667pt;}
.y240{bottom:561.983274pt;}
.y23f{bottom:561.983281pt;}
.y23e{bottom:561.983284pt;}
.y23d{bottom:561.983287pt;}
.y23b{bottom:561.983291pt;}
.y23a{bottom:561.983308pt;}
.y4f{bottom:562.946667pt;}
.yde{bottom:568.175872pt;}
.ydd{bottom:568.175875pt;}
.ydc{bottom:568.175879pt;}
.ydb{bottom:568.175881pt;}
.y20{bottom:577.053333pt;}
.y158{bottom:577.693333pt;}
.y4e{bottom:580.733333pt;}
.yda{bottom:587.096609pt;}
.yd9{bottom:587.096612pt;}
.yd8{bottom:587.096616pt;}
.yd7{bottom:587.096619pt;}
.y144{bottom:589.822466pt;}
.y143{bottom:589.822475pt;}
.y142{bottom:589.822479pt;}
.y141{bottom:589.822484pt;}
.y1f{bottom:594.653333pt;}
.y1be{bottom:594.696249pt;}
.y1bc{bottom:594.696257pt;}
.y1ba{bottom:594.696263pt;}
.y1b8{bottom:594.696273pt;}
.y1b6{bottom:594.696283pt;}
.y4d{bottom:598.333333pt;}
.y239{bottom:605.170148pt;}
.y238{bottom:605.170154pt;}
.y237{bottom:605.170158pt;}
.y236{bottom:605.170161pt;}
.y235{bottom:605.170165pt;}
.y234{bottom:605.170182pt;}
.yd6{bottom:606.017347pt;}
.yd5{bottom:606.017350pt;}
.yd4{bottom:606.017354pt;}
.yd3{bottom:606.017356pt;}
.y1e{bottom:612.253333pt;}
.y1b5{bottom:615.152238pt;}
.y1b3{bottom:615.152246pt;}
.y1b2{bottom:615.152252pt;}
.y1b1{bottom:615.152261pt;}
.y1af{bottom:615.152272pt;}
.y4c{bottom:615.933333pt;}
.yd2{bottom:624.938084pt;}
.yd1{bottom:624.938087pt;}
.yd0{bottom:624.938091pt;}
.ycf{bottom:624.938094pt;}
.y140{bottom:626.021110pt;}
.y13f{bottom:626.021119pt;}
.y13e{bottom:626.021124pt;}
.y13d{bottom:626.021128pt;}
.y233{bottom:628.862006pt;}
.y232{bottom:628.862013pt;}
.y231{bottom:628.862016pt;}
.y22f{bottom:628.862019pt;}
.y22e{bottom:628.862023pt;}
.y22c{bottom:628.862041pt;}
.y1d{bottom:629.853333pt;}
.y4b{bottom:633.533333pt;}
.y1ad{bottom:635.633798pt;}
.y1ab{bottom:635.633806pt;}
.y1a9{bottom:635.633812pt;}
.y1a6{bottom:635.633822pt;}
.y1a4{bottom:635.633832pt;}
.yce{bottom:643.858822pt;}
.ycd{bottom:643.858824pt;}
.ycc{bottom:643.858829pt;}
.ycb{bottom:643.858831pt;}
.y1c{bottom:647.613333pt;}
.y4a{bottom:651.133333pt;}
.y22b{bottom:652.553865pt;}
.y22a{bottom:652.553872pt;}
.y229{bottom:652.553875pt;}
.y228{bottom:652.553878pt;}
.y227{bottom:652.553882pt;}
.y226{bottom:652.553899pt;}
.y13b{bottom:662.224149pt;}
.y13a{bottom:662.224158pt;}
.y138{bottom:662.224162pt;}
.y136{bottom:662.224167pt;}
.yca{bottom:662.687711pt;}
.yc9{bottom:662.687714pt;}
.yc8{bottom:662.687718pt;}
.yc6{bottom:662.687720pt;}
.y1b{bottom:665.213333pt;}
.y49{bottom:668.893333pt;}
.y1a1{bottom:672.907315pt;}
.y19f{bottom:672.907324pt;}
.y19d{bottom:672.907329pt;}
.y19b{bottom:672.907339pt;}
.y199{bottom:672.907350pt;}
.yc5{bottom:681.608448pt;}
.yc4{bottom:681.608451pt;}
.yc3{bottom:681.608455pt;}
.yc2{bottom:681.608458pt;}
.y1a{bottom:682.813333pt;}
.y48{bottom:686.493333pt;}
.y225{bottom:695.737918pt;}
.y224{bottom:695.737925pt;}
.y221{bottom:695.737928pt;}
.y220{bottom:695.737931pt;}
.y21f{bottom:695.737935pt;}
.y21e{bottom:695.737953pt;}
.y134{bottom:698.295380pt;}
.y133{bottom:698.295389pt;}
.y131{bottom:698.295394pt;}
.y12f{bottom:698.295398pt;}
.y19{bottom:700.413333pt;}
.yc1{bottom:700.529186pt;}
.yc0{bottom:700.529189pt;}
.ybe{bottom:700.529193pt;}
.ybc{bottom:700.529195pt;}
.y47{bottom:704.093333pt;}
.y196{bottom:710.193010pt;}
.y194{bottom:710.193018pt;}
.y191{bottom:710.193023pt;}
.y18f{bottom:710.193033pt;}
.y18d{bottom:710.193044pt;}
.y18{bottom:718.013333pt;}
.ybb{bottom:719.465231pt;}
.yba{bottom:719.465234pt;}
.yb9{bottom:719.465238pt;}
.yb7{bottom:719.465241pt;}
.y46{bottom:721.693333pt;}
.y17{bottom:735.773333pt;}
.yb6{bottom:738.385969pt;}
.yb5{bottom:738.385971pt;}
.yb3{bottom:738.385976pt;}
.yb1{bottom:738.385978pt;}
.y21c{bottom:738.890947pt;}
.y21b{bottom:738.890953pt;}
.y21a{bottom:738.890957pt;}
.y219{bottom:738.890960pt;}
.y218{bottom:738.890964pt;}
.y217{bottom:738.890981pt;}
.y45{bottom:739.293333pt;}
.y18b{bottom:747.454350pt;}
.y188{bottom:747.454358pt;}
.y186{bottom:747.454364pt;}
.y183{bottom:747.454373pt;}
.y181{bottom:747.454384pt;}
.y16{bottom:753.373333pt;}
.y44{bottom:757.053333pt;}
.yb0{bottom:757.214858pt;}
.yae{bottom:757.214861pt;}
.yac{bottom:757.214865pt;}
.yaa{bottom:757.214867pt;}
.y15{bottom:770.973333pt;}
.y43{bottom:774.653333pt;}
.y216{bottom:782.086282pt;}
.y215{bottom:782.086289pt;}
.y214{bottom:782.086292pt;}
.y213{bottom:782.086295pt;}
.y212{bottom:782.086299pt;}
.y211{bottom:782.086316pt;}
.y14{bottom:788.573333pt;}
.y42{bottom:792.253333pt;}
.y41{bottom:809.893333pt;}
.y13{bottom:810.853333pt;}
.y12{bottom:824.453333pt;}
.y20e{bottom:825.239310pt;}
.y20d{bottom:825.239317pt;}
.y20b{bottom:825.239320pt;}
.y209{bottom:825.239323pt;}
.y206{bottom:825.239327pt;}
.y204{bottom:825.239344pt;}
.y40{bottom:827.493333pt;}
.y11{bottom:843.333333pt;}
.y3f{bottom:845.253333pt;}
.y3e{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y202{bottom:868.392339pt;}
.y1ff{bottom:868.392345pt;}
.y1fe{bottom:868.392348pt;}
.y1fc{bottom:868.392351pt;}
.y1fa{bottom:868.392355pt;}
.y1f8{bottom:868.392373pt;}
.y3d{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h16{height:15.797900pt;}
.h17{height:15.797901pt;}
.h15{height:15.797906pt;}
.h19{height:15.816269pt;}
.h1a{height:15.816271pt;}
.h18{height:15.816275pt;}
.h13{height:15.889748pt;}
.h14{height:15.889749pt;}
.h11{height:15.889754pt;}
.h1c{height:15.908118pt;}
.h1d{height:15.908119pt;}
.h1b{height:15.908123pt;}
.h41{height:16.804136pt;}
.h44{height:16.804139pt;}
.h45{height:16.804142pt;}
.h43{height:16.804144pt;}
.h42{height:16.804145pt;}
.h3c{height:16.833360pt;}
.h3f{height:16.833364pt;}
.h40{height:16.833367pt;}
.h3e{height:16.833368pt;}
.h3d{height:16.833369pt;}
.ha{height:19.360000pt;}
.h53{height:19.461171pt;}
.h56{height:19.461172pt;}
.h55{height:19.461174pt;}
.h57{height:19.461176pt;}
.h54{height:19.461187pt;}
.he{height:24.131250pt;}
.h12{height:25.652926pt;}
.h2e{height:28.312282pt;}
.h2c{height:28.336902pt;}
.h7{height:29.760000pt;}
.h28{height:30.227784pt;}
.h29{height:30.227788pt;}
.h27{height:30.227797pt;}
.h25{height:30.262933pt;}
.h26{height:30.262937pt;}
.h24{height:30.262946pt;}
.h22{height:30.403527pt;}
.h23{height:30.403531pt;}
.h20{height:30.403540pt;}
.h37{height:33.608270pt;}
.h3a{height:33.608273pt;}
.h3b{height:33.608276pt;}
.h39{height:33.608277pt;}
.h38{height:33.608278pt;}
.h1f{height:33.618609pt;}
.h31{height:33.637494pt;}
.h35{height:33.637498pt;}
.h36{height:33.637500pt;}
.h34{height:33.637502pt;}
.h33{height:33.637503pt;}
.h2d{height:34.380574pt;}
.hd{height:37.090625pt;}
.hf{height:37.479688pt;}
.h5a{height:38.076250pt;}
.h10{height:38.672812pt;}
.h4e{height:38.922341pt;}
.h51{height:38.922342pt;}
.h50{height:38.922343pt;}
.h52{height:38.922346pt;}
.h4f{height:38.922356pt;}
.h48{height:38.956187pt;}
.h4c{height:38.956188pt;}
.h4b{height:38.956189pt;}
.h4d{height:38.956191pt;}
.h4a{height:38.956202pt;}
.h32{height:40.811670pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h5c{height:43.108125pt;}
.h30{height:45.056343pt;}
.h49{height:47.264729pt;}
.h9{height:47.310625pt;}
.h5b{height:49.047812pt;}
.h21{height:49.084444pt;}
.h47{height:53.484407pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h59{height:61.941254pt;}
.h2b{height:64.326022pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h2a{height:260.666667pt;}
.h46{height:309.330010pt;}
.h2f{height:334.000000pt;}
.h58{height:363.331575pt;}
.h1e{height:475.184524pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w10{width:19.748319pt;}
.w1b{width:23.419137pt;}
.w16{width:23.419138pt;}
.w21{width:27.301370pt;}
.w7{width:41.607662pt;}
.w24{width:43.614362pt;}
.w25{width:47.480643pt;}
.w9{width:47.772442pt;}
.w13{width:58.652504pt;}
.w23{width:61.555262pt;}
.w8{width:65.990745pt;}
.wc{width:69.179777pt;}
.wd{width:69.214983pt;}
.w1e{width:71.018531pt;}
.w19{width:71.018532pt;}
.w14{width:78.030540pt;}
.w26{width:101.269428pt;}
.w1f{width:108.050040pt;}
.w1a{width:108.050041pt;}
.w11{width:115.702512pt;}
.w3{width:117.312000pt;}
.w12{width:120.855588pt;}
.w1d{width:128.536905pt;}
.w18{width:128.536906pt;}
.w6{width:138.699873pt;}
.we{width:140.859179pt;}
.w1c{width:141.893131pt;}
.w17{width:141.893132pt;}
.w22{width:264.633925pt;}
.wb{width:286.327408pt;}
.wa{width:303.998775pt;}
.w15{width:407.792464pt;}
.w20{width:483.592961pt;}
.w27{width:560.257445pt;}
.wf{width:581.588335pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.056180pt;}
.x13{left:2.668338pt;}
.x10{left:3.971836pt;}
.x3c{left:5.256786pt;}
.x2{left:7.200000pt;}
.x14{left:10.596674pt;}
.x2a{left:11.632994pt;}
.x16{left:13.725069pt;}
.x1e{left:16.370787pt;}
.x33{left:20.052636pt;}
.x15{left:22.657865pt;}
.x28{left:25.919667pt;}
.x17{left:28.173963pt;}
.x20{left:29.925095pt;}
.x26{left:41.743007pt;}
.x1{left:47.520000pt;}
.xe{left:52.189000pt;}
.xb{left:67.199988pt;}
.x3f{left:71.999988pt;}
.x6{left:76.511988pt;}
.x38{left:81.768449pt;}
.x18{left:83.101842pt;}
.x41{left:85.791988pt;}
.x40{left:96.031988pt;}
.x4{left:105.146667pt;}
.xa{left:108.031988pt;}
.x1b{left:110.405994pt;}
.x22{left:114.666667pt;}
.x1a{left:118.011227pt;}
.x3e{left:121.333333pt;}
.x36{left:123.368209pt;}
.x2e{left:144.026655pt;}
.x37{left:152.704463pt;}
.x35{left:163.333333pt;}
.x2f{left:165.089751pt;}
.x2c{left:178.000000pt;}
.x24{left:180.345095pt;}
.x30{left:190.411691pt;}
.x25{left:202.685379pt;}
.x9{left:249.666655pt;}
.x19{left:256.800000pt;}
.xd{left:259.008261pt;}
.x7{left:265.346655pt;}
.x2d{left:282.306655pt;}
.x23{left:288.226655pt;}
.x27{left:320.979856pt;}
.xc{left:330.306655pt;}
.x31{left:334.207626pt;}
.x8{left:396.893322pt;}
.xf{left:399.548366pt;}
.x1c{left:408.035263pt;}
.x39{left:419.373271pt;}
.x11{left:443.085205pt;}
.x29{left:444.427409pt;}
.x32{left:464.500965pt;}
.x1d{left:480.911669pt;}
.x3a{left:482.963417pt;}
.x2b{left:505.678049pt;}
.x12{left:511.012795pt;}
.x3b{left:528.790715pt;}
.x34{left:537.283249pt;}
.x1f{left:553.656052pt;}
.x3d{left:578.475816pt;}
.x3{left:629.253333pt;}
.x5{left:737.280000pt;}
}




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