
    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_7c3881ad986702cc8381ec0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109000;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_c5c54ffcc8cb35e2a2906fb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109000;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_ec420a2f4511eaca51004888.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113000;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_22b8bae1722cc315d9334644.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_ed66538d4650db7c42df78a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109000;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_237d902dadf5ec72f107efd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.193000;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_bbab1c8bf7b4933b1311595c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193000;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_dac3237fcd4721d0c4147e2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.229000;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_367ef447c476d0939b44379a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.193000;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_0e16e9b70db0e34205578a83.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.193000;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_ae43a526dde70b95e2934d30.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976000;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_6dd967fdf414b47888938511.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;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_cbff108cd7b937a123c5f483.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971000;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:ffe;src:url('chunks/assets/font_0890544c8d1790d4578883ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714046;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:fff;src:url('chunks/assets/font_fd1dad6c43c13a51152bf5a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.991000;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.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v4{vertical-align:-17.334000px;}
.v1{vertical-align:-2.970011px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.970011px;}
.v3{vertical-align:21.715114px;}
.v5{vertical-align:53.798175px;}
.ls3{letter-spacing:-6.519000px;}
.ls1{letter-spacing:-3.370200px;}
.ls2{letter-spacing:-3.148800px;}
.ls7{letter-spacing:-3.036000px;}
.ls2d{letter-spacing:-1.796867px;}
.ls6{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.020921px;}
.ls39{letter-spacing:-0.016140px;}
.ls22{letter-spacing:-0.014346px;}
.ls1e{letter-spacing:-0.012553px;}
.ls1a{letter-spacing:-0.011955px;}
.ls37{letter-spacing:-0.010760px;}
.ls15{letter-spacing:-0.009564px;}
.ls31{letter-spacing:-0.009086px;}
.ls18{letter-spacing:-0.008369px;}
.ls16{letter-spacing:-0.007173px;}
.ls20{letter-spacing:-0.005978px;}
.lse{letter-spacing:-0.005380px;}
.lsf{letter-spacing:-0.004782px;}
.ls2f{letter-spacing:-0.004184px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.004782px;}
.lsb{letter-spacing:0.005380px;}
.ls2b{letter-spacing:0.005677px;}
.ls13{letter-spacing:0.005978px;}
.ls1c{letter-spacing:0.007173px;}
.ls11{letter-spacing:0.009564px;}
.lsc{letter-spacing:0.010760px;}
.ls17{letter-spacing:0.011955px;}
.ls24{letter-spacing:0.014346px;}
.ls36{letter-spacing:0.016140px;}
.ls19{letter-spacing:0.017933px;}
.ls14{letter-spacing:0.021519px;}
.ls27{letter-spacing:0.023910px;}
.ls30{letter-spacing:0.024389px;}
.ls1d{letter-spacing:0.028692px;}
.ls2a{letter-spacing:0.497334px;}
.ls33{letter-spacing:0.621666px;}
.ls2c{letter-spacing:0.818138px;}
.ls8{letter-spacing:0.972000px;}
.ls29{letter-spacing:1.327018px;}
.lsa{letter-spacing:1.577400px;}
.ls9{letter-spacing:2.626800px;}
.ls0{letter-spacing:2.752200px;}
.ls10{letter-spacing:4.153236px;}
.ls25{letter-spacing:16.563818px;}
.ls35{letter-spacing:16.581751px;}
.ls1f{letter-spacing:19.062438px;}
.ls28{letter-spacing:19.066073px;}
.ls23{letter-spacing:19.403159px;}
.ls32{letter-spacing:20.024826px;}
.ls21{letter-spacing:20.108511px;}
.ls26{letter-spacing:20.223332px;}
.ls34{letter-spacing:24.250960px;}
.ls38{letter-spacing:90.343653px;}
.ls1b{letter-spacing:96.068796px;}
.ls12{letter-spacing:96.119004px;}
.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;}
}
.ws3{word-spacing:-11.758800px;}
.ws1{word-spacing:-8.610000px;}
.ws0{word-spacing:-8.388600px;}
.ws7{word-spacing:-6.708000px;}
.ws4{word-spacing:-5.592000px;}
.ws5{word-spacing:-5.340000px;}
.ws6{word-spacing:-2.700000px;}
.wsa{word-spacing:-0.112200px;}
.wsc{word-spacing:-0.078007px;}
.wsd{word-spacing:-0.075318px;}
.ws13{word-spacing:-0.071731px;}
.ws10{word-spacing:-0.065753px;}
.ws18{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.059178px;}
.ws19{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.052603px;}
.ws1b{word-spacing:-0.048419px;}
.wsb{word-spacing:-0.047821px;}
.ws15{word-spacing:-0.043039px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.013200px;}
.ws9{word-spacing:1.062600px;}
.ws11{word-spacing:19.021736px;}
.wsf{word-spacing:19.038473px;}
.ws16{word-spacing:22.638366px;}
.wse{word-spacing:71.649594px;}
.ws1a{word-spacing:90.282261px;}
.ws17{word-spacing:859.852682px;}
.ws14{word-spacing:859.881314px;}
._38{margin-left:-90.160010px;}
._36{margin-left:-24.659229px;}
._28{margin-left:-20.012204px;}
._27{margin-left:-18.130604px;}
._2b{margin-left:-16.862771px;}
._6{margin-left:-10.233600px;}
._1c{margin-left:-8.010103px;}
._9{margin-left:-6.666600px;}
._8{margin-left:-5.092200px;}
._1{margin-left:-3.886800px;}
._0{margin-left:-2.361600px;}
._a{margin-left:-1.279200px;}
._2{width:1.549800px;}
._5{width:3.148800px;}
._3{width:4.280400px;}
._7{width:6.519000px;}
._4{width:7.995000px;}
._16{width:10.947974px;}
._2a{width:13.724515px;}
._11{width:14.738309px;}
._10{width:16.354645px;}
._12{width:17.900965px;}
._b{width:19.093052px;}
._13{width:20.555008px;}
._14{width:21.684929px;}
._15{width:22.796081px;}
._f{width:24.029852px;}
._19{width:25.225303px;}
._1b{width:27.102256px;}
._20{width:28.261904px;}
._1f{width:29.433504px;}
._21{width:30.796387px;}
._24{width:32.183184px;}
._17{width:33.493760px;}
._18{width:34.507557px;}
._1e{width:35.561398px;}
._26{width:36.841380px;}
._1a{width:37.957505px;}
._1d{width:39.679041px;}
._25{width:40.719138px;}
._2c{width:41.896716px;}
._34{width:43.271557px;}
._35{width:45.206675px;}
._22{width:46.617062px;}
._37{width:51.114113px;}
._d{width:53.674664px;}
._33{width:56.341847px;}
._2d{width:58.050930px;}
._23{width:72.418033px;}
._29{width:96.089275px;}
._2e{width:139.789514px;}
._31{width:198.130646px;}
._e{width:214.950045px;}
._2f{width:360.693968px;}
._c{width:431.381008px;}
._32{width:745.101215px;}
._30{width:836.950226px;}
.fc3{color:rgb(52,46,45);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:40.647600px;}
.fs9{font-size:41.842800px;}
.fsa{font-size:45.429600px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs7{font-size:59.775599px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:71.730600px;}
.fs8{font-size:78.007198px;}
.fs5{font-size:95.641800px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:246.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:39.514816px;}
.y48{bottom:55.950227px;}
.y47{bottom:72.386220px;}
.y46{bottom:88.821631px;}
.y4a{bottom:88.834499px;}
.y10e{bottom:103.725472px;}
.yf8{bottom:103.725611px;}
.y130{bottom:103.726688px;}
.yde{bottom:103.727168px;}
.y31{bottom:106.614438px;}
.yb3{bottom:106.706875px;}
.y145{bottom:106.707427px;}
.yc6{bottom:106.707630px;}
.y220{bottom:106.707809px;}
.y20b{bottom:106.708352px;}
.y90{bottom:108.058502px;}
.y22e{bottom:112.687988px;}
.y26e{bottom:114.186973px;}
.y8{bottom:114.793489px;}
.y1e0{bottom:115.672349px;}
.y1a7{bottom:115.724520px;}
.y1ce{bottom:116.466850px;}
.y121{bottom:117.926994px;}
.yf7{bottom:117.927133px;}
.y12f{bottom:117.928211px;}
.ydd{bottom:117.928691px;}
.y30{bottom:120.073546px;}
.y16c{bottom:120.166533px;}
.y152{bottom:122.260506px;}
.yb2{bottom:124.648521px;}
.y144{bottom:124.649073px;}
.yc5{bottom:124.649275px;}
.y70{bottom:124.649455px;}
.y20a{bottom:124.649998px;}
.y22d{bottom:129.131469px;}
.y254{bottom:130.615036px;}
.y26d{bottom:130.617004px;}
.y12e{bottom:132.116583px;}
.ydc{bottom:132.117063px;}
.y2f{bottom:133.519503px;}
.y1df{bottom:133.613995px;}
.y1a6{bottom:133.672143px;}
.y1cd{bottom:134.395046px;}
.yf6{bottom:136.462498px;}
.y151{bottom:137.125078px;}
.y16b{bottom:138.094729px;}
.y45{bottom:142.566232px;}
.y209{bottom:142.574627px;}
.yb1{bottom:142.576717px;}
.y143{bottom:142.577269px;}
.yc4{bottom:142.577472px;}
.y6f{bottom:142.577652px;}
.y7{bottom:144.793489px;}
.y22c{bottom:145.561500px;}
.y12d{bottom:146.318105px;}
.ydb{bottom:146.318586px;}
.y253{bottom:147.058517px;}
.y26c{bottom:147.059518px;}
.yf5{bottom:151.326601px;}
.y1a5{bottom:151.594023px;}
.y27c{bottom:151.660993px;}
.y1cc{bottom:152.336692px;}
.y8f{bottom:154.538607px;}
.y16a{bottom:156.022926px;}
.y44{bottom:159.009228px;}
.y2e{bottom:160.411506px;}
.y208{bottom:160.502823px;}
.yb0{bottom:160.504914px;}
.y142{bottom:160.505466px;}
.yc3{bottom:160.505668px;}
.y6e{bottom:160.505848px;}
.y12c{bottom:160.506477px;}
.yda{bottom:160.506958px;}
.y22b{bottom:162.004013px;}
.y252{bottom:163.501998px;}
.y26b{bottom:163.502999px;}
.yf4{bottom:165.514973px;}
.y27b{bottom:168.091011px;}
.y1a4{bottom:169.526702px;}
.y1cb{bottom:170.264888px;}
.y1de{bottom:171.724503px;}
.y8e{bottom:172.466804px;}
.y169{bottom:173.964572px;}
.yd9{bottom:174.708480px;}
.y43{bottom:175.444639px;}
.y207{bottom:178.444469px;}
.y10d{bottom:178.446231px;}
.yaf{bottom:178.446560px;}
.y6d{bottom:178.446762px;}
.y141{bottom:178.447112px;}
.yc2{bottom:178.447314px;}
.y21f{bottom:178.447494px;}
.y12b{bottom:179.041500px;}
.y251{bottom:179.932030px;}
.yf3{bottom:184.049995px;}
.y27a{bottom:184.534506px;}
.y2d{bottom:187.317591px;}
.y1a3{bottom:187.474326px;}
.y1ca{bottom:188.193085px;}
.y8d{bottom:190.394863px;}
.y179{bottom:191.891887px;}
.y168{bottom:191.892768px;}
.y1f4{bottom:191.893150px;}
.y42{bottom:191.893500px;}
.yd8{bottom:193.243493px;}
.y206{bottom:196.372665px;}
.y21e{bottom:196.374077px;}
.y10c{bottom:196.374427px;}
.yae{bottom:196.374756px;}
.y6c{bottom:196.374958px;}
.y140{bottom:196.375308px;}
.yc1{bottom:196.375511px;}
.yf2{bottom:198.913971px;}
.y2c{bottom:200.763536px;}
.y279{bottom:200.964551px;}
.y22a{bottom:205.339507px;}
.y1a2{bottom:205.407005px;}
.y1c9{bottom:206.134730px;}
.y8c{bottom:208.335754px;}
.y1dd{bottom:209.819934px;}
.y178{bottom:209.820083px;}
.y167{bottom:209.820964px;}
.y1f3{bottom:209.821347px;}
.y250{bottom:212.817497px;}
.y26a{bottom:212.818497px;}
.yf1{bottom:213.115494px;}
.y2b{bottom:214.209493px;}
.y205{bottom:214.300862px;}
.yc0{bottom:214.301720px;}
.y21d{bottom:214.302274px;}
.y10b{bottom:214.302624px;}
.yad{bottom:214.302952px;}
.y6b{bottom:214.303155px;}
.y13f{bottom:214.303504px;}
.y278{bottom:217.408019px;}
.y1f5{bottom:223.281006px;}
.y1c8{bottom:224.062927px;}
.y8b{bottom:226.263951px;}
.y2a{bottom:227.668588px;}
.y1dc{bottom:227.761580px;}
.y177{bottom:227.761729px;}
.y166{bottom:227.762610px;}
.y1f2{bottom:227.762992px;}
.y24f{bottom:229.247528px;}
.y204{bottom:232.242508px;}
.ybf{bottom:232.243366px;}
.y150{bottom:232.243920px;}
.y10a{bottom:232.244269px;}
.yac{bottom:232.244598px;}
.y6a{bottom:232.244801px;}
.y277{bottom:233.851500px;}
.y29{bottom:241.114546px;}
.y13e{bottom:241.209000px;}
.y1c7{bottom:241.991123px;}
.y8a{bottom:244.192147px;}
.y1db{bottom:245.689777px;}
.y176{bottom:245.689926px;}
.y1f1{bottom:245.690128px;}
.y165{bottom:245.690807px;}
.y24e{bottom:245.691009px;}
.y229{bottom:250.169948px;}
.y203{bottom:250.170704px;}
.y12a{bottom:250.171258px;}
.ybe{bottom:250.171562px;}
.y14f{bottom:250.172116px;}
.y109{bottom:250.172466px;}
.yab{bottom:250.172795px;}
.y69{bottom:250.172997px;}
.y276{bottom:250.279510px;}
.y1a1{bottom:253.494003px;}
.y28{bottom:254.560503px;}
.yd7{bottom:256.152232px;}
.y1c6{bottom:259.932769px;}
.y269{bottom:262.132995px;}
.y24d{bottom:262.133468px;}
.y89{bottom:262.133793px;}
.y1da{bottom:263.617973px;}
.y164{bottom:263.618122px;}
.y1f0{bottom:263.618324px;}
.y275{bottom:266.722978px;}
.y27{bottom:268.007002px;}
.y228{bottom:268.098144px;}
.y202{bottom:268.098900px;}
.y120{bottom:268.099252px;}
.y129{bottom:268.099454px;}
.ybd{bottom:268.099759px;}
.y14e{bottom:268.100312px;}
.y68{bottom:268.100662px;}
.yf0{bottom:268.100865px;}
.yaa{bottom:268.100991px;}
.y41{bottom:271.765591px;}
.yd6{bottom:274.080429px;}
.y1c5{bottom:277.860966px;}
.y268{bottom:278.563027px;}
.y24c{bottom:278.563499px;}
.y88{bottom:280.061989px;}
.y1a0{bottom:280.388864px;}
.y26{bottom:281.466097px;}
.y1d9{bottom:281.559619px;}
.y163{bottom:281.559768px;}
.y1ef{bottom:281.559970px;}
.y274{bottom:283.166473px;}
.ya9{bottom:286.039485px;}
.y227{bottom:286.039790px;}
.y201{bottom:286.040546px;}
.y11f{bottom:286.040897px;}
.y128{bottom:286.041100px;}
.ybc{bottom:286.041405px;}
.yef{bottom:286.041958px;}
.y67{bottom:286.042308px;}
.y40{bottom:289.713214px;}
.yd5{bottom:292.022075px;}
.y19f{bottom:293.838408px;}
.y25{bottom:294.912055px;}
.y24b{bottom:295.006013px;}
.y267{bottom:295.006507px;}
.y1c4{bottom:295.789162px;}
.y1d8{bottom:299.487815px;}
.y162{bottom:299.487964px;}
.y1ee{bottom:299.488167px;}
.y273{bottom:299.596504px;}
.ya8{bottom:303.967682px;}
.y226{bottom:303.967987px;}
.y200{bottom:303.968743px;}
.y11e{bottom:303.969094px;}
.y127{bottom:303.969296px;}
.ybb{bottom:303.969601px;}
.yee{bottom:303.970155px;}
.y13d{bottom:303.970357px;}
.y66{bottom:303.970504px;}
.y87{bottom:306.967120px;}
.y19d{bottom:307.279425px;}
.y19e{bottom:307.287952px;}
.y3f{bottom:307.645894px;}
.y24{bottom:308.358012px;}
.yd4{bottom:309.950271px;}
.y266{bottom:311.448494px;}
.y24a{bottom:311.449494px;}
.y1c3{bottom:313.730808px;}
.y272{bottom:316.039003px;}
.y1d7{bottom:317.416012px;}
.y161{bottom:317.416161px;}
.y1ed{bottom:317.416363px;}
.y19c{bottom:320.728969px;}
.y23{bottom:321.805433px;}
.ya7{bottom:321.909328px;}
.y225{bottom:321.909632px;}
.y1ff{bottom:321.910388px;}
.y11d{bottom:321.910740px;}
.y65{bottom:321.910942px;}
.yba{bottom:321.911247px;}
.y108{bottom:321.911472px;}
.yed{bottom:321.911801px;}
.y13c{bottom:321.912003px;}
.y3e{bottom:325.578573px;}
.y86{bottom:327.878383px;}
.yd3{bottom:327.878467px;}
.y249{bottom:327.878525px;}
.y1c2{bottom:331.659004px;}
.y271{bottom:332.482499px;}
.y22{bottom:335.264528px;}
.y1d6{bottom:335.357658px;}
.y160{bottom:335.357807px;}
.y1ec{bottom:335.358009px;}
.y19b{bottom:335.672907px;}
.ya6{bottom:339.837524px;}
.y224{bottom:339.837829px;}
.y1fe{bottom:339.838585px;}
.y11c{bottom:339.838936px;}
.y64{bottom:339.839139px;}
.yb9{bottom:339.839443px;}
.y107{bottom:339.839668px;}
.y13b{bottom:339.839793px;}
.yec{bottom:339.839997px;}
.y3d{bottom:343.526197px;}
.y248{bottom:344.322006px;}
.yd2{bottom:345.820113px;}
.y21{bottom:348.710485px;}
.y85{bottom:348.803992px;}
.y19a{bottom:349.134406px;}
.y1c1{bottom:349.599972px;}
.y1d5{bottom:353.285854px;}
.y15f{bottom:353.286003px;}
.y21c{bottom:357.765167px;}
.ya5{bottom:357.765720px;}
.yeb{bottom:357.766025px;}
.y1fd{bottom:357.766781px;}
.y11b{bottom:357.767133px;}
.y63{bottom:357.767335px;}
.y14d{bottom:357.767482px;}
.yb8{bottom:357.767640px;}
.y106{bottom:357.767865px;}
.y247{bottom:360.763970px;}
.y265{bottom:360.764464px;}
.y3c{bottom:361.458876px;}
.y20{bottom:362.156442px;}
.y199{bottom:362.531986px;}
.yd1{bottom:363.748310px;}
.y1c0{bottom:367.528168px;}
.y15e{bottom:371.225707px;}
.y175{bottom:371.226214px;}
.y1d4{bottom:371.227119px;}
.y1eb{bottom:373.468506px;}
.y1f{bottom:375.615537px;}
.y21b{bottom:375.706813px;}
.ya4{bottom:375.707366px;}
.yea{bottom:375.707671px;}
.y105{bottom:375.708022px;}
.y1fc{bottom:375.708427px;}
.y11a{bottom:375.708778px;}
.y62{bottom:375.708981px;}
.y14c{bottom:375.709128px;}
.yb7{bottom:375.709286px;}
.y198{bottom:375.981530px;}
.y246{bottom:377.194001px;}
.y264{bottom:377.194496px;}
.y3b{bottom:379.406500px;}
.yd0{bottom:381.675976px;}
.y1bf{bottom:385.456364px;}
.y1e{bottom:389.061471px;}
.y15d{bottom:389.153903px;}
.y174{bottom:389.154411px;}
.y1d3{bottom:389.155316px;}
.y197{bottom:390.925468px;}
.y21a{bottom:393.635009px;}
.ya3{bottom:393.635563px;}
.y84{bottom:393.635867px;}
.y104{bottom:393.636219px;}
.y1fb{bottom:393.636624px;}
.y119{bottom:393.636975px;}
.y263{bottom:393.637009px;}
.y61{bottom:393.637177px;}
.yb6{bottom:393.637325px;}
.y13a{bottom:393.637482px;}
.y3a{bottom:397.339179px;}
.ycf{bottom:399.617622px;}
.y1d{bottom:402.507452px;}
.y1be{bottom:403.398010px;}
.y196{bottom:404.375011px;}
.y15c{bottom:407.082100px;}
.y173{bottom:407.082607px;}
.y1d2{bottom:407.083512px;}
.y245{bottom:410.079963px;}
.y262{bottom:410.080489px;}
.y219{bottom:411.563205px;}
.ya2{bottom:411.563759px;}
.y83{bottom:411.564064px;}
.y1ea{bottom:411.564266px;}
.y103{bottom:411.564415px;}
.y1fa{bottom:411.564820px;}
.y118{bottom:411.565171px;}
.y60{bottom:411.565374px;}
.yb5{bottom:411.565521px;}
.y39{bottom:415.271859px;}
.y1c{bottom:415.953386px;}
.yce{bottom:417.545818px;}
.y195{bottom:417.836510px;}
.y15b{bottom:425.023746px;}
.y172{bottom:425.024253px;}
.y1d1{bottom:425.024604px;}
.y261{bottom:426.509050px;}
.y244{bottom:426.509994px;}
.y1b{bottom:429.412590px;}
.y218{bottom:429.504851px;}
.ya1{bottom:429.505405px;}
.y82{bottom:429.505710px;}
.y1e9{bottom:429.505912px;}
.y102{bottom:429.506061px;}
.y1f9{bottom:429.506466px;}
.y117{bottom:429.506817px;}
.y5f{bottom:429.507019px;}
.y194{bottom:431.286054px;}
.y38{bottom:433.219482px;}
.ycd{bottom:435.474014px;}
.y1a{bottom:442.858524px;}
.y15a{bottom:442.951942px;}
.y171{bottom:442.952449px;}
.y243{bottom:442.952531px;}
.y1d0{bottom:442.952801px;}
.y193{bottom:444.735598px;}
.y217{bottom:447.433048px;}
.y126{bottom:447.433250px;}
.y5e{bottom:447.433399px;}
.ya0{bottom:447.433601px;}
.y81{bottom:447.433906px;}
.y1e8{bottom:447.434109px;}
.y101{bottom:447.434257px;}
.y116{bottom:447.434460px;}
.y1f8{bottom:447.434662px;}
.y1cf{bottom:447.435013px;}
.y6{bottom:448.123489px;}
.y1bd{bottom:450.755997px;}
.y19{bottom:456.304557px;}
.y192{bottom:458.185142px;}
.y242{bottom:459.395484px;}
.y260{bottom:459.396012px;}
.y37{bottom:460.111496px;}
.y159{bottom:460.880139px;}
.y170{bottom:460.880646px;}
.ycc{bottom:462.379486px;}
.y216{bottom:465.361244px;}
.y125{bottom:465.361446px;}
.y5d{bottom:465.361595px;}
.y9f{bottom:465.361798px;}
.y80{bottom:465.362103px;}
.y1e7{bottom:465.362305px;}
.y100{bottom:465.362454px;}
.y115{bottom:465.362656px;}
.y1f7{bottom:465.362859px;}
.y18{bottom:469.750491px;}
.y191{bottom:471.646640px;}
.y25f{bottom:475.824525px;}
.y241{bottom:475.825516px;}
.y1bc{bottom:477.664063px;}
.y5{bottom:478.123489px;}
.y158{bottom:478.821784px;}
.y16f{bottom:478.822292px;}
.y215{bottom:483.302890px;}
.y124{bottom:483.303092px;}
.y5c{bottom:483.303241px;}
.y9e{bottom:483.303444px;}
.y7f{bottom:483.303748px;}
.y1e6{bottom:483.303951px;}
.yff{bottom:483.304100px;}
.y114{bottom:483.304302px;}
.y1f6{bottom:483.304504px;}
.y190{bottom:485.096184px;}
.ycb{bottom:489.270909px;}
.y1bb{bottom:491.110020px;}
.y240{bottom:492.267479px;}
.y25e{bottom:492.268006px;}
.y157{bottom:496.749981px;}
.y16e{bottom:496.750488px;}
.y17{bottom:497.763019px;}
.y18f{bottom:498.545728px;}
.y214{bottom:501.231086px;}
.y123{bottom:501.231289px;}
.y5b{bottom:501.231437px;}
.y9d{bottom:501.231640px;}
.y113{bottom:501.231742px;}
.y7e{bottom:501.231945px;}
.y1e5{bottom:501.232147px;}
.yfe{bottom:501.232296px;}
.y1ba{bottom:504.555977px;}
.y23f{bottom:508.710960px;}
.y25d{bottom:508.711487px;}
.yca{bottom:510.196518px;}
.y18e{bottom:512.007227px;}
.y16{bottom:512.707492px;}
.y156{bottom:514.678177px;}
.y1b9{bottom:518.001934px;}
.y213{bottom:519.159283px;}
.yfd{bottom:519.159485px;}
.y5a{bottom:519.159634px;}
.y9c{bottom:519.159836px;}
.y112{bottom:519.159939px;}
.y7d{bottom:519.160141px;}
.y1e4{bottom:519.160344px;}
.y139{bottom:519.160492px;}
.y25c{bottom:525.139047px;}
.y23e{bottom:525.140991px;}
.y18d{bottom:525.456771px;}
.y15{bottom:527.652011px;}
.y1b8{bottom:531.461042px;}
.y155{bottom:532.619823px;}
.y16d{bottom:534.861008px;}
.y4{bottom:535.408029px;}
.y1e3{bottom:537.100173px;}
.y138{bottom:537.100726px;}
.y212{bottom:537.100929px;}
.yfc{bottom:537.101131px;}
.y59{bottom:537.101280px;}
.y9b{bottom:537.101482px;}
.y111{bottom:537.101585px;}
.y7c{bottom:537.101787px;}
.y18c{bottom:538.906314px;}
.y25b{bottom:541.582528px;}
.y23d{bottom:541.583527px;}
.y14{bottom:542.596484px;}
.y1b7{bottom:544.906999px;}
.y154{bottom:550.548019px;}
.y18b{bottom:552.355858px;}
.ye9{bottom:555.028064px;}
.y7b{bottom:555.028222px;}
.y1e2{bottom:555.028369px;}
.y137{bottom:555.028923px;}
.y211{bottom:555.029125px;}
.yfb{bottom:555.029327px;}
.y58{bottom:555.029476px;}
.y9a{bottom:555.029679px;}
.yc9{bottom:555.029781px;}
.y223{bottom:555.029984px;}
.y36{bottom:555.084000px;}
.y25a{bottom:558.026009px;}
.y23c{bottom:558.027007px;}
.y1b6{bottom:558.352957px;}
.y18a{bottom:565.817357px;}
.y1b5{bottom:571.798914px;}
.y222{bottom:572.955864px;}
.ye8{bottom:572.956261px;}
.y7a{bottom:572.956418px;}
.y1e1{bottom:572.956566px;}
.y136{bottom:572.957119px;}
.y210{bottom:572.957321px;}
.yfa{bottom:572.957524px;}
.y57{bottom:572.957672px;}
.y99{bottom:572.957875px;}
.y110{bottom:572.957977px;}
.y23b{bottom:574.454995px;}
.y259{bottom:574.456040px;}
.y189{bottom:579.266901px;}
.y1b4{bottom:585.258022px;}
.y153{bottom:588.658492px;}
.y221{bottom:590.897510px;}
.ye7{bottom:590.897906px;}
.y79{bottom:590.898064px;}
.y10f{bottom:590.898212px;}
.y23a{bottom:590.898476px;}
.y135{bottom:590.898765px;}
.y20f{bottom:590.898967px;}
.yc8{bottom:590.899170px;}
.y56{bottom:590.899318px;}
.y98{bottom:590.899521px;}
.y188{bottom:592.716445px;}
.y3{bottom:598.384029px;}
.y1b3{bottom:598.703979px;}
.y186{bottom:606.159496px;}
.y187{bottom:606.165988px;}
.y258{bottom:607.327035px;}
.y239{bottom:607.328507px;}
.y97{bottom:608.825707px;}
.ye6{bottom:608.826103px;}
.y78{bottom:608.826260px;}
.y55{bottom:608.826408px;}
.y14b{bottom:608.826610px;}
.y134{bottom:608.826961px;}
.y20e{bottom:608.827164px;}
.yc7{bottom:608.827366px;}
.yb4{bottom:608.827515px;}
.y1b2{bottom:612.149936px;}
.y185{bottom:619.620995px;}
.y257{bottom:623.770516px;}
.y238{bottom:623.771988px;}
.y1b1{bottom:625.595893px;}
.y35{bottom:626.517274px;}
.y96{bottom:626.767352px;}
.ye5{bottom:626.767749px;}
.y77{bottom:626.767906px;}
.y54{bottom:626.768054px;}
.y14a{bottom:626.768256px;}
.y133{bottom:626.768607px;}
.y20d{bottom:626.768810px;}
.y122{bottom:626.769012px;}
.y184{bottom:634.564932px;}
.y1b0{bottom:639.055001px;}
.y237{bottom:640.213997px;}
.y95{bottom:644.695549px;}
.ye4{bottom:644.695945px;}
.y76{bottom:644.696103px;}
.y53{bottom:644.696250px;}
.y149{bottom:644.696452px;}
.y132{bottom:644.696804px;}
.y20c{bottom:644.697006px;}
.y182{bottom:648.005927px;}
.y183{bottom:648.014476px;}
.y1af{bottom:652.500958px;}
.y236{bottom:656.644028px;}
.y34{bottom:659.394143px;}
.y2{bottom:661.360029px;}
.y181{bottom:661.455471px;}
.y94{bottom:662.623745px;}
.ye3{bottom:662.624142px;}
.y75{bottom:662.624299px;}
.y52{bottom:662.624447px;}
.y148{bottom:662.624649px;}
.y131{bottom:662.625000px;}
.y1ae{bottom:665.946916px;}
.y235{bottom:673.087509px;}
.y180{bottom:676.399408px;}
.y1ad{bottom:679.392873px;}
.y93{bottom:680.565391px;}
.ye2{bottom:680.565787px;}
.y74{bottom:680.565945px;}
.y51{bottom:680.566093px;}
.y147{bottom:680.566295px;}
.y13{bottom:683.221833px;}
.y256{bottom:689.528999px;}
.y234{bottom:689.529991px;}
.y17f{bottom:689.848952px;}
.y33{bottom:692.271011px;}
.y1ac{bottom:692.851981px;}
.y12{bottom:698.167042px;}
.y92{bottom:698.493588px;}
.ye1{bottom:698.493984px;}
.y73{bottom:698.494141px;}
.y50{bottom:698.494289px;}
.y146{bottom:698.494491px;}
.y17e{bottom:703.310451px;}
.y255{bottom:705.959031px;}
.y233{bottom:705.960023px;}
.y1ab{bottom:706.297938px;}
.y11{bottom:713.112252px;}
.y91{bottom:716.421784px;}
.ye0{bottom:716.422180px;}
.y72{bottom:716.422338px;}
.y4f{bottom:716.422485px;}
.y17d{bottom:716.759995px;}
.y1aa{bottom:719.743895px;}
.y232{bottom:722.402512px;}
.y1{bottom:724.336029px;}
.y10{bottom:728.057462px;}
.y1a9{bottom:733.203003px;}
.y4e{bottom:734.363430px;}
.ydf{bottom:734.363826px;}
.y71{bottom:734.363984px;}
.y231{bottom:738.845992px;}
.yf{bottom:743.002671px;}
.y17c{bottom:743.962509px;}
.y4d{bottom:752.291626px;}
.yf9{bottom:752.292022px;}
.y32{bottom:752.345993px;}
.y270{bottom:755.274493px;}
.y230{bottom:755.274507px;}
.ye{bottom:757.947826px;}
.y1a8{bottom:760.392014px;}
.y4c{bottom:770.219823px;}
.y17b{bottom:771.717295px;}
.y26f{bottom:771.717961px;}
.y22f{bottom:771.717988px;}
.yd{bottom:772.893036px;}
.yc{bottom:788.161468px;}
.y17a{bottom:788.166155px;}
.yb{bottom:827.004306px;}
.y4b{bottom:829.039489px;}
.ya{bottom:844.890306px;}
.y9{bottom:862.776306px;}
.h1a{height:37.964858px;}
.h42{height:39.332232px;}
.h24{height:43.337309px;}
.ha{height:44.664440px;}
.h3f{height:44.872292px;}
.h2f{height:44.951364px;}
.hb{height:46.625085px;}
.h9{height:50.247706px;}
.h48{height:50.249593px;}
.h49{height:50.249650px;}
.h47{height:50.249816px;}
.h11{height:50.271166px;}
.h8{height:50.570496px;}
.h12{height:50.621971px;}
.hf{height:55.830409px;}
.h22{height:55.830819px;}
.h19{height:55.830957px;}
.h36{height:55.830999px;}
.h20{height:55.831039px;}
.h23{height:55.831219px;}
.h35{height:55.831808px;}
.h21{height:55.831814px;}
.h45{height:55.831932px;}
.h27{height:55.831994px;}
.h1f{height:55.832439px;}
.h25{height:55.832531px;}
.h2a{height:55.832618px;}
.h30{height:55.832624px;}
.h15{height:55.833337px;}
.h18{height:55.833427px;}
.h44{height:55.833843px;}
.h39{height:55.833933px;}
.h2c{height:55.834438px;}
.h13{height:55.834836px;}
.h3b{height:55.835427px;}
.h2b{height:55.835462px;}
.h3c{height:55.835552px;}
.h31{height:55.835647px;}
.h2d{height:55.836361px;}
.h14{height:55.836868px;}
.h1c{height:55.836909px;}
.h1e{height:55.837047px;}
.h33{height:55.837367px;}
.h1b{height:55.837641px;}
.h41{height:55.873609px;}
.h1d{height:56.189063px;}
.h32{height:56.192087px;}
.h17{height:56.810635px;}
.h5{height:57.948000px;}
.h4{height:58.212000px;}
.h43{height:64.085120px;}
.h3a{height:64.087515px;}
.h37{height:64.091572px;}
.h34{height:64.139498px;}
.h38{height:64.141347px;}
.h26{height:64.144275px;}
.h2e{height:64.144323px;}
.h16{height:64.146360px;}
.h46{height:64.146585px;}
.h28{height:64.146990px;}
.h29{height:64.147176px;}
.he{height:66.996380px;}
.h10{height:67.158460px;}
.hd{height:67.426764px;}
.hc{height:89.329441px;}
.h40{height:98.496721px;}
.h3d{height:98.496812px;}
.h3e{height:98.536406px;}
.h3{height:105.360000px;}
.h2{height:215.988000px;}
.h6{height:892.914000px;}
.h7{height:893.250000px;}
.h0{height:918.420000px;}
.h1{height:918.750000px;}
.w3{width:629.250000px;}
.w2{width:629.292000px;}
.w1{width:650.250000px;}
.w0{width:650.550000px;}
.x0{left:0.000000px;}
.x4{left:80.365499px;}
.x15{left:84.617998px;}
.x7{left:87.521913px;}
.x6{left:89.100002px;}
.x2{left:91.420053px;}
.xe{left:93.622500px;}
.xc{left:98.293499px;}
.x1{left:102.047104px;}
.x3{left:105.023552px;}
.x14{left:114.453003px;}
.x13{left:123.768002px;}
.x10{left:130.881167px;}
.xf{left:152.495390px;}
.x11{left:159.624000px;}
.x12{left:175.324035px;}
.xd{left:203.917510px;}
.x9{left:219.577492px;}
.xa{left:236.060989px;}
.x18{left:240.489006px;}
.x8{left:243.681062px;}
.x19{left:263.736008px;}
.x5{left:271.714508px;}
.x16{left:328.754111px;}
.x17{left:480.019500px;}
.xb{left:525.493464px;}
@media print{
.v4{vertical-align:-15.408000pt;}
.v1{vertical-align:-2.640010pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.640010pt;}
.v3{vertical-align:19.302323pt;}
.v5{vertical-align:47.820600pt;}
.ls3{letter-spacing:-5.794667pt;}
.ls1{letter-spacing:-2.995733pt;}
.ls2{letter-spacing:-2.798933pt;}
.ls7{letter-spacing:-2.698667pt;}
.ls2d{letter-spacing:-1.597215pt;}
.ls6{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.018597pt;}
.ls39{letter-spacing:-0.014346pt;}
.ls22{letter-spacing:-0.012752pt;}
.ls1e{letter-spacing:-0.011158pt;}
.ls1a{letter-spacing:-0.010627pt;}
.ls37{letter-spacing:-0.009564pt;}
.ls15{letter-spacing:-0.008501pt;}
.ls31{letter-spacing:-0.008076pt;}
.ls18{letter-spacing:-0.007439pt;}
.ls16{letter-spacing:-0.006376pt;}
.ls20{letter-spacing:-0.005313pt;}
.lse{letter-spacing:-0.004782pt;}
.lsf{letter-spacing:-0.004251pt;}
.ls2f{letter-spacing:-0.003719pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.004251pt;}
.lsb{letter-spacing:0.004782pt;}
.ls2b{letter-spacing:0.005046pt;}
.ls13{letter-spacing:0.005313pt;}
.ls1c{letter-spacing:0.006376pt;}
.ls11{letter-spacing:0.008501pt;}
.lsc{letter-spacing:0.009564pt;}
.ls17{letter-spacing:0.010627pt;}
.ls24{letter-spacing:0.012752pt;}
.ls36{letter-spacing:0.014346pt;}
.ls19{letter-spacing:0.015940pt;}
.ls14{letter-spacing:0.019128pt;}
.ls27{letter-spacing:0.021254pt;}
.ls30{letter-spacing:0.021679pt;}
.ls1d{letter-spacing:0.025504pt;}
.ls2a{letter-spacing:0.442075pt;}
.ls33{letter-spacing:0.552592pt;}
.ls2c{letter-spacing:0.727234pt;}
.ls8{letter-spacing:0.864000pt;}
.ls29{letter-spacing:1.179572pt;}
.lsa{letter-spacing:1.402133pt;}
.ls9{letter-spacing:2.334933pt;}
.ls0{letter-spacing:2.446400pt;}
.ls10{letter-spacing:3.691766pt;}
.ls25{letter-spacing:14.723394pt;}
.ls35{letter-spacing:14.739334pt;}
.ls1f{letter-spacing:16.944390pt;}
.ls28{letter-spacing:16.947621pt;}
.ls23{letter-spacing:17.247253pt;}
.ls32{letter-spacing:17.799845pt;}
.ls21{letter-spacing:17.874232pt;}
.ls26{letter-spacing:17.976295pt;}
.ls34{letter-spacing:21.556409pt;}
.ls38{letter-spacing:80.305469pt;}
.ls1b{letter-spacing:85.394485pt;}
.ls12{letter-spacing:85.439115pt;}
.ws3{word-spacing:-10.452267pt;}
.ws1{word-spacing:-7.653333pt;}
.ws0{word-spacing:-7.456533pt;}
.ws7{word-spacing:-5.962667pt;}
.ws4{word-spacing:-4.970667pt;}
.ws5{word-spacing:-4.746667pt;}
.ws6{word-spacing:-2.400000pt;}
.wsa{word-spacing:-0.099733pt;}
.wsc{word-spacing:-0.069340pt;}
.wsd{word-spacing:-0.066949pt;}
.ws13{word-spacing:-0.063761pt;}
.ws10{word-spacing:-0.058447pt;}
.ws18{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.052603pt;}
.ws19{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.046758pt;}
.ws1b{word-spacing:-0.043039pt;}
.wsb{word-spacing:-0.042507pt;}
.ws15{word-spacing:-0.038256pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.011733pt;}
.ws9{word-spacing:0.944533pt;}
.ws11{word-spacing:16.908210pt;}
.wsf{word-spacing:16.923088pt;}
.ws16{word-spacing:20.122992pt;}
.wse{word-spacing:63.688528pt;}
.ws1a{word-spacing:80.250899pt;}
.ws17{word-spacing:764.313495pt;}
.ws14{word-spacing:764.338946pt;}
._38{margin-left:-80.142231pt;}
._36{margin-left:-21.919314pt;}
._28{margin-left:-17.788625pt;}
._27{margin-left:-16.116093pt;}
._2b{margin-left:-14.989129pt;}
._6{margin-left:-9.096533pt;}
._1c{margin-left:-7.120091pt;}
._9{margin-left:-5.925866pt;}
._8{margin-left:-4.526400pt;}
._1{margin-left:-3.454933pt;}
._0{margin-left:-2.099200pt;}
._a{margin-left:-1.137067pt;}
._2{width:1.377600pt;}
._5{width:2.798933pt;}
._3{width:3.804800pt;}
._7{width:5.794667pt;}
._4{width:7.106667pt;}
._16{width:9.731533pt;}
._2a{width:12.199568pt;}
._11{width:13.100719pt;}
._10{width:14.537462pt;}
._12{width:15.911969pt;}
._b{width:16.971602pt;}
._13{width:18.271118pt;}
._14{width:19.275492pt;}
._15{width:20.263183pt;}
._f{width:21.359868pt;}
._19{width:22.422491pt;}
._1b{width:24.090894pt;}
._20{width:25.121693pt;}
._1f{width:26.163115pt;}
._21{width:27.374566pt;}
._24{width:28.607274pt;}
._17{width:29.772231pt;}
._18{width:30.673384pt;}
._1e{width:31.610132pt;}
._26{width:32.747893pt;}
._1a{width:33.740005pt;}
._1d{width:35.270259pt;}
._25{width:36.194790pt;}
._2c{width:37.241526pt;}
._34{width:38.463606pt;}
._35{width:40.183711pt;}
._22{width:41.437389pt;}
._37{width:45.434767pt;}
._d{width:47.710813pt;}
._33{width:50.081642pt;}
._2d{width:51.600827pt;}
._23{width:64.371585pt;}
._29{width:85.412689pt;}
._2e{width:124.257346pt;}
._31{width:176.116130pt;}
._e{width:191.066707pt;}
._2f{width:320.616860pt;}
._c{width:383.449785pt;}
._32{width:662.312191pt;}
._30{width:743.955757pt;}
.fsb{font-size:36.131200pt;}
.fs9{font-size:37.193600pt;}
.fsa{font-size:40.381867pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs7{font-size:53.133865pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:63.760533pt;}
.fs8{font-size:69.339732pt;}
.fs5{font-size:85.014933pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:218.666667pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:35.124281pt;}
.y48{bottom:49.733535pt;}
.y47{bottom:64.343306pt;}
.y46{bottom:78.952561pt;}
.y4a{bottom:78.963999pt;}
.y10e{bottom:92.200419pt;}
.yf8{bottom:92.200543pt;}
.y130{bottom:92.201500pt;}
.yde{bottom:92.201927pt;}
.y31{bottom:94.768389pt;}
.yb3{bottom:94.850556pt;}
.y145{bottom:94.851046pt;}
.yc6{bottom:94.851226pt;}
.y220{bottom:94.851386pt;}
.y20b{bottom:94.851868pt;}
.y90{bottom:96.052002pt;}
.y22e{bottom:100.167100pt;}
.y26e{bottom:101.499532pt;}
.y8{bottom:102.038657pt;}
.y1e0{bottom:102.819866pt;}
.y1a7{bottom:102.866240pt;}
.y1ce{bottom:103.526088pt;}
.y121{bottom:104.823995pt;}
.yf7{bottom:104.824118pt;}
.y12f{bottom:104.825076pt;}
.ydd{bottom:104.825503pt;}
.y30{bottom:106.732040pt;}
.y16c{bottom:106.814696pt;}
.y152{bottom:108.676005pt;}
.yb2{bottom:110.798685pt;}
.y144{bottom:110.799176pt;}
.yc5{bottom:110.799356pt;}
.y70{bottom:110.799516pt;}
.y20a{bottom:110.799998pt;}
.y22d{bottom:114.783528pt;}
.y254{bottom:116.102254pt;}
.y26d{bottom:116.104004pt;}
.y12e{bottom:117.436962pt;}
.ydc{bottom:117.437389pt;}
.y2f{bottom:118.684002pt;}
.y1df{bottom:118.767995pt;}
.y1a6{bottom:118.819683pt;}
.y1cd{bottom:119.462263pt;}
.yf6{bottom:121.299998pt;}
.y151{bottom:121.888958pt;}
.y16b{bottom:122.750870pt;}
.y45{bottom:126.725540pt;}
.y209{bottom:126.733001pt;}
.yb1{bottom:126.734860pt;}
.y143{bottom:126.735351pt;}
.yc4{bottom:126.735531pt;}
.y6f{bottom:126.735690pt;}
.y7{bottom:128.705324pt;}
.y22c{bottom:129.388000pt;}
.y12d{bottom:130.060538pt;}
.ydb{bottom:130.060965pt;}
.y253{bottom:130.718682pt;}
.y26c{bottom:130.719571pt;}
.yf5{bottom:134.512534pt;}
.y1a5{bottom:134.750242pt;}
.y27c{bottom:134.809772pt;}
.y1cc{bottom:135.410393pt;}
.y8f{bottom:137.367651pt;}
.y16a{bottom:138.687045pt;}
.y44{bottom:141.341536pt;}
.y2e{bottom:142.588005pt;}
.y208{bottom:142.669176pt;}
.yb0{bottom:142.671034pt;}
.y142{bottom:142.671525pt;}
.yc3{bottom:142.671705pt;}
.y6e{bottom:142.671865pt;}
.y12c{bottom:142.672424pt;}
.yda{bottom:142.672851pt;}
.y22b{bottom:144.003567pt;}
.y252{bottom:145.335109pt;}
.y26b{bottom:145.335999pt;}
.yf4{bottom:147.124420pt;}
.y27b{bottom:149.414232pt;}
.y1a4{bottom:150.690402pt;}
.y1cb{bottom:151.346567pt;}
.y1de{bottom:152.644003pt;}
.y8e{bottom:153.303825pt;}
.y169{bottom:154.635175pt;}
.yd9{bottom:155.296427pt;}
.y43{bottom:155.950790pt;}
.y207{bottom:158.617306pt;}
.y10d{bottom:158.618872pt;}
.yaf{bottom:158.619164pt;}
.y6d{bottom:158.619344pt;}
.y141{bottom:158.619655pt;}
.yc2{bottom:158.619835pt;}
.y21f{bottom:158.619995pt;}
.y12b{bottom:159.148000pt;}
.y251{bottom:159.939582pt;}
.yf3{bottom:163.599996pt;}
.y27a{bottom:164.030672pt;}
.y2d{bottom:166.504525pt;}
.y1a3{bottom:166.643845pt;}
.y1ca{bottom:167.282742pt;}
.y8d{bottom:169.239878pt;}
.y179{bottom:170.570566pt;}
.y168{bottom:170.571349pt;}
.y1f4{bottom:170.571689pt;}
.y42{bottom:170.572000pt;}
.yd8{bottom:171.771993pt;}
.y206{bottom:174.553480pt;}
.y21e{bottom:174.554735pt;}
.y10c{bottom:174.555046pt;}
.yae{bottom:174.555339pt;}
.y6c{bottom:174.555519pt;}
.y140{bottom:174.555829pt;}
.yc1{bottom:174.556009pt;}
.yf2{bottom:176.812419pt;}
.y2c{bottom:178.456476pt;}
.y279{bottom:178.635157pt;}
.y22a{bottom:182.524007pt;}
.y1a2{bottom:182.584005pt;}
.y1c9{bottom:183.230872pt;}
.y8c{bottom:185.187337pt;}
.y1dd{bottom:186.506608pt;}
.y178{bottom:186.506741pt;}
.y167{bottom:186.507524pt;}
.y1f3{bottom:186.507864pt;}
.y250{bottom:189.171108pt;}
.y26a{bottom:189.171997pt;}
.yf1{bottom:189.435995pt;}
.y2b{bottom:190.408438pt;}
.y205{bottom:190.489655pt;}
.yc0{bottom:190.490418pt;}
.y21d{bottom:190.490910pt;}
.y10b{bottom:190.491221pt;}
.yad{bottom:190.491513pt;}
.y6b{bottom:190.491693pt;}
.y13f{bottom:190.492004pt;}
.y278{bottom:193.251572pt;}
.y1f5{bottom:198.472005pt;}
.y1c8{bottom:199.167046pt;}
.y8b{bottom:201.123512pt;}
.y2a{bottom:202.372078pt;}
.y1dc{bottom:202.454738pt;}
.y177{bottom:202.454870pt;}
.y166{bottom:202.455654pt;}
.y1f2{bottom:202.455993pt;}
.y24f{bottom:203.775580pt;}
.y204{bottom:206.437784pt;}
.ybf{bottom:206.438548pt;}
.y150{bottom:206.439040pt;}
.y10a{bottom:206.439351pt;}
.yac{bottom:206.439643pt;}
.y6a{bottom:206.439823pt;}
.y277{bottom:207.868000pt;}
.y29{bottom:214.324040pt;}
.y13e{bottom:214.408000pt;}
.y1c7{bottom:215.103221pt;}
.y8a{bottom:217.059686pt;}
.y1db{bottom:218.390913pt;}
.y176{bottom:218.391045pt;}
.y1f1{bottom:218.391225pt;}
.y165{bottom:218.391828pt;}
.y24e{bottom:218.392008pt;}
.y229{bottom:222.373287pt;}
.y203{bottom:222.373959pt;}
.y12a{bottom:222.374451pt;}
.ybe{bottom:222.374722pt;}
.y14f{bottom:222.375214pt;}
.y109{bottom:222.375525pt;}
.yab{bottom:222.375817pt;}
.y69{bottom:222.375997pt;}
.y276{bottom:222.470676pt;}
.y1a1{bottom:225.328003pt;}
.y28{bottom:226.276002pt;}
.yd7{bottom:227.690873pt;}
.y1c6{bottom:231.051350pt;}
.y269{bottom:233.007107pt;}
.y24d{bottom:233.007527pt;}
.y89{bottom:233.007816pt;}
.y1da{bottom:234.327087pt;}
.y164{bottom:234.327220pt;}
.y1f0{bottom:234.327399pt;}
.y275{bottom:237.087092pt;}
.y27{bottom:238.228446pt;}
.y228{bottom:238.309462pt;}
.y202{bottom:238.310134pt;}
.y120{bottom:238.310446pt;}
.y129{bottom:238.310626pt;}
.ybd{bottom:238.310897pt;}
.y14e{bottom:238.311389pt;}
.y68{bottom:238.311700pt;}
.yf0{bottom:238.311880pt;}
.yaa{bottom:238.311992pt;}
.y41{bottom:241.569414pt;}
.yd6{bottom:243.627048pt;}
.y1c5{bottom:246.987525pt;}
.y268{bottom:247.611579pt;}
.y24c{bottom:247.612000pt;}
.y88{bottom:248.943991pt;}
.y1a0{bottom:249.234546pt;}
.y26{bottom:250.192086pt;}
.y1d9{bottom:250.275217pt;}
.y163{bottom:250.275349pt;}
.y1ef{bottom:250.275529pt;}
.y274{bottom:251.703532pt;}
.ya9{bottom:254.257320pt;}
.y227{bottom:254.257591pt;}
.y201{bottom:254.258263pt;}
.y11f{bottom:254.258576pt;}
.y128{bottom:254.258755pt;}
.ybc{bottom:254.259026pt;}
.yef{bottom:254.259519pt;}
.y67{bottom:254.259829pt;}
.y40{bottom:257.522857pt;}
.yd5{bottom:259.575177pt;}
.y19f{bottom:261.189696pt;}
.y25{bottom:262.144048pt;}
.y24b{bottom:262.227567pt;}
.y267{bottom:262.228007pt;}
.y1c4{bottom:262.923699pt;}
.y1d8{bottom:266.211391pt;}
.y162{bottom:266.211524pt;}
.y1ee{bottom:266.211704pt;}
.y273{bottom:266.308004pt;}
.ya8{bottom:270.193495pt;}
.y226{bottom:270.193766pt;}
.y200{bottom:270.194438pt;}
.y11e{bottom:270.194750pt;}
.y127{bottom:270.194930pt;}
.ybb{bottom:270.195201pt;}
.yee{bottom:270.195693pt;}
.y13d{bottom:270.195873pt;}
.y66{bottom:270.196004pt;}
.y87{bottom:272.859662pt;}
.y19d{bottom:273.137267pt;}
.y19e{bottom:273.144846pt;}
.y3f{bottom:273.463017pt;}
.y24{bottom:274.096010pt;}
.yd4{bottom:275.511352pt;}
.y266{bottom:276.843105pt;}
.y24a{bottom:276.843995pt;}
.y1c3{bottom:278.871829pt;}
.y272{bottom:280.923559pt;}
.y1d7{bottom:282.147566pt;}
.y161{bottom:282.147698pt;}
.y1ed{bottom:282.147878pt;}
.y19c{bottom:285.092417pt;}
.y23{bottom:286.049273pt;}
.ya7{bottom:286.141625pt;}
.y225{bottom:286.141895pt;}
.y1ff{bottom:286.142568pt;}
.y11d{bottom:286.142880pt;}
.y65{bottom:286.143060pt;}
.yba{bottom:286.143331pt;}
.y108{bottom:286.143531pt;}
.yed{bottom:286.143823pt;}
.y13c{bottom:286.144003pt;}
.y3e{bottom:289.403176pt;}
.y86{bottom:291.447452pt;}
.yd3{bottom:291.447527pt;}
.y249{bottom:291.447578pt;}
.y1c2{bottom:294.808004pt;}
.y271{bottom:295.539999pt;}
.y22{bottom:298.012914pt;}
.y1d6{bottom:298.095696pt;}
.y160{bottom:298.095828pt;}
.y1ec{bottom:298.096008pt;}
.y19b{bottom:298.375917pt;}
.ya6{bottom:302.077799pt;}
.y224{bottom:302.078070pt;}
.y1fe{bottom:302.078742pt;}
.y11c{bottom:302.079054pt;}
.y64{bottom:302.079234pt;}
.yb9{bottom:302.079505pt;}
.y107{bottom:302.079705pt;}
.y13b{bottom:302.079816pt;}
.yec{bottom:302.079997pt;}
.y3d{bottom:305.356619pt;}
.y248{bottom:306.064005pt;}
.yd2{bottom:307.395656pt;}
.y21{bottom:309.964876pt;}
.y85{bottom:310.047993pt;}
.y19a{bottom:310.341694pt;}
.y1c1{bottom:310.755530pt;}
.y1d5{bottom:314.031870pt;}
.y15f{bottom:314.032003pt;}
.y21c{bottom:318.013482pt;}
.ya5{bottom:318.013974pt;}
.yeb{bottom:318.014245pt;}
.y1fd{bottom:318.014917pt;}
.y11b{bottom:318.015229pt;}
.y63{bottom:318.015409pt;}
.y14d{bottom:318.015540pt;}
.yb8{bottom:318.015680pt;}
.y106{bottom:318.015880pt;}
.y247{bottom:320.679084pt;}
.y265{bottom:320.679524pt;}
.y3c{bottom:321.296779pt;}
.y20{bottom:321.916838pt;}
.y199{bottom:322.250655pt;}
.yd1{bottom:323.331831pt;}
.y1c0{bottom:326.691705pt;}
.y15e{bottom:329.978406pt;}
.y175{bottom:329.978857pt;}
.y1d4{bottom:329.979662pt;}
.y1eb{bottom:331.972005pt;}
.y1f{bottom:333.880478pt;}
.y21b{bottom:333.961611pt;}
.ya4{bottom:333.962103pt;}
.yea{bottom:333.962374pt;}
.y105{bottom:333.962687pt;}
.y1fc{bottom:333.963046pt;}
.y11a{bottom:333.963359pt;}
.y62{bottom:333.963539pt;}
.y14c{bottom:333.963670pt;}
.yb7{bottom:333.963809pt;}
.y198{bottom:334.205805pt;}
.y246{bottom:335.283556pt;}
.y264{bottom:335.283996pt;}
.y3b{bottom:337.250222pt;}
.yd0{bottom:339.267534pt;}
.y1bf{bottom:342.627879pt;}
.y1e{bottom:345.832419pt;}
.y15d{bottom:345.914581pt;}
.y174{bottom:345.915032pt;}
.y1d3{bottom:345.915836pt;}
.y197{bottom:347.489305pt;}
.y21a{bottom:349.897786pt;}
.ya3{bottom:349.898278pt;}
.y84{bottom:349.898549pt;}
.y104{bottom:349.898861pt;}
.y1fb{bottom:349.899221pt;}
.y119{bottom:349.899533pt;}
.y263{bottom:349.899563pt;}
.y61{bottom:349.899713pt;}
.yb6{bottom:349.899844pt;}
.y13a{bottom:349.899984pt;}
.y3a{bottom:353.190382pt;}
.ycf{bottom:355.215664pt;}
.y1d{bottom:357.784402pt;}
.y1be{bottom:358.576009pt;}
.y196{bottom:359.444455pt;}
.y15c{bottom:361.850755pt;}
.y173{bottom:361.851206pt;}
.y1d2{bottom:361.852011pt;}
.y245{bottom:364.515522pt;}
.y262{bottom:364.515991pt;}
.y219{bottom:365.833960pt;}
.ya2{bottom:365.834453pt;}
.y83{bottom:365.834723pt;}
.y1ea{bottom:365.834903pt;}
.y103{bottom:365.835036pt;}
.y1fa{bottom:365.835395pt;}
.y118{bottom:365.835708pt;}
.y60{bottom:365.835888pt;}
.yb5{bottom:365.836019pt;}
.y39{bottom:369.130541pt;}
.y1c{bottom:369.736343pt;}
.yce{bottom:371.151838pt;}
.y195{bottom:371.410231pt;}
.y15b{bottom:377.798885pt;}
.y172{bottom:377.799336pt;}
.y1d1{bottom:377.799648pt;}
.y261{bottom:379.119156pt;}
.y244{bottom:379.119995pt;}
.y1b{bottom:381.700080pt;}
.y218{bottom:381.782090pt;}
.ya1{bottom:381.782582pt;}
.y82{bottom:381.782853pt;}
.y1e9{bottom:381.783033pt;}
.y102{bottom:381.783165pt;}
.y1f9{bottom:381.783525pt;}
.y117{bottom:381.783837pt;}
.y5f{bottom:381.784017pt;}
.y194{bottom:383.365381pt;}
.y38{bottom:385.083984pt;}
.ycd{bottom:387.088013pt;}
.y1a{bottom:393.652021pt;}
.y15a{bottom:393.735060pt;}
.y171{bottom:393.735511pt;}
.y243{bottom:393.735583pt;}
.y1d0{bottom:393.735823pt;}
.y193{bottom:395.320531pt;}
.y217{bottom:397.718265pt;}
.y126{bottom:397.718445pt;}
.y5e{bottom:397.718577pt;}
.ya0{bottom:397.718757pt;}
.y81{bottom:397.719028pt;}
.y1e8{bottom:397.719208pt;}
.y101{bottom:397.719340pt;}
.y116{bottom:397.719520pt;}
.y1f8{bottom:397.719700pt;}
.y1cf{bottom:397.720012pt;}
.y6{bottom:398.331991pt;}
.y1bd{bottom:400.671997pt;}
.y19{bottom:405.604051pt;}
.y192{bottom:407.275681pt;}
.y242{bottom:408.351542pt;}
.y260{bottom:408.352011pt;}
.y37{bottom:408.987996pt;}
.y159{bottom:409.671234pt;}
.y170{bottom:409.671685pt;}
.ycc{bottom:411.003988pt;}
.y216{bottom:413.654439pt;}
.y125{bottom:413.654619pt;}
.y5d{bottom:413.654751pt;}
.y9f{bottom:413.654931pt;}
.y80{bottom:413.655202pt;}
.y1e7{bottom:413.655382pt;}
.y100{bottom:413.655515pt;}
.y115{bottom:413.655694pt;}
.y1f7{bottom:413.655874pt;}
.y18{bottom:417.555992pt;}
.y191{bottom:419.241458pt;}
.y25f{bottom:422.955133pt;}
.y241{bottom:422.956014pt;}
.y1bc{bottom:424.590278pt;}
.y5{bottom:424.998657pt;}
.y158{bottom:425.619364pt;}
.y16f{bottom:425.619815pt;}
.y215{bottom:429.602569pt;}
.y124{bottom:429.602749pt;}
.y5c{bottom:429.602881pt;}
.y9e{bottom:429.603061pt;}
.y7f{bottom:429.603332pt;}
.y1e6{bottom:429.603512pt;}
.yff{bottom:429.603644pt;}
.y114{bottom:429.603824pt;}
.y1f6{bottom:429.604004pt;}
.y190{bottom:431.196608pt;}
.ycb{bottom:434.907474pt;}
.y1bb{bottom:436.542240pt;}
.y240{bottom:437.571092pt;}
.y25e{bottom:437.571560pt;}
.y157{bottom:441.555539pt;}
.y16e{bottom:441.555989pt;}
.y17{bottom:442.456017pt;}
.y18f{bottom:443.151758pt;}
.y214{bottom:445.538743pt;}
.y123{bottom:445.538923pt;}
.y5b{bottom:445.539055pt;}
.y9d{bottom:445.539236pt;}
.y113{bottom:445.539327pt;}
.y7e{bottom:445.539507pt;}
.y1e5{bottom:445.539686pt;}
.yfe{bottom:445.539819pt;}
.y1ba{bottom:448.494202pt;}
.y23f{bottom:452.187520pt;}
.y25d{bottom:452.187988pt;}
.yca{bottom:453.508016pt;}
.y18e{bottom:455.117535pt;}
.y16{bottom:455.739993pt;}
.y156{bottom:457.491713pt;}
.y1b9{bottom:460.446164pt;}
.y213{bottom:461.474918pt;}
.yfd{bottom:461.475098pt;}
.y5a{bottom:461.475230pt;}
.y9c{bottom:461.475410pt;}
.y112{bottom:461.475501pt;}
.y7d{bottom:461.475681pt;}
.y1e4{bottom:461.475861pt;}
.y139{bottom:461.475993pt;}
.y25c{bottom:466.790264pt;}
.y23e{bottom:466.791992pt;}
.y18d{bottom:467.072685pt;}
.y15{bottom:469.024010pt;}
.y1b8{bottom:472.409815pt;}
.y155{bottom:473.439843pt;}
.y16d{bottom:475.432007pt;}
.y4{bottom:475.918248pt;}
.y1e3{bottom:477.422376pt;}
.y138{bottom:477.422868pt;}
.y212{bottom:477.423048pt;}
.yfc{bottom:477.423228pt;}
.y59{bottom:477.423360pt;}
.y9b{bottom:477.423540pt;}
.y111{bottom:477.423631pt;}
.y7c{bottom:477.423811pt;}
.y18c{bottom:479.027835pt;}
.y25b{bottom:481.406691pt;}
.y23d{bottom:481.407579pt;}
.y14{bottom:482.307986pt;}
.y1b7{bottom:484.361777pt;}
.y154{bottom:489.376017pt;}
.y18b{bottom:490.982985pt;}
.ye9{bottom:493.358279pt;}
.y7b{bottom:493.358419pt;}
.y1e2{bottom:493.358551pt;}
.y137{bottom:493.359042pt;}
.y211{bottom:493.359222pt;}
.yfb{bottom:493.359402pt;}
.y58{bottom:493.359534pt;}
.y9a{bottom:493.359714pt;}
.yc9{bottom:493.359805pt;}
.y223{bottom:493.359985pt;}
.y36{bottom:493.408000pt;}
.y25a{bottom:496.023119pt;}
.y23c{bottom:496.024007pt;}
.y1b6{bottom:496.313739pt;}
.y18a{bottom:502.948762pt;}
.y1b5{bottom:508.265701pt;}
.y222{bottom:509.294102pt;}
.ye8{bottom:509.294454pt;}
.y7a{bottom:509.294594pt;}
.y1e1{bottom:509.294725pt;}
.y136{bottom:509.295217pt;}
.y210{bottom:509.295397pt;}
.yfa{bottom:509.295577pt;}
.y57{bottom:509.295709pt;}
.y99{bottom:509.295889pt;}
.y110{bottom:509.295980pt;}
.y23b{bottom:510.626662pt;}
.y259{bottom:510.627591pt;}
.y189{bottom:514.903912pt;}
.y1b4{bottom:520.229353pt;}
.y153{bottom:523.251993pt;}
.y221{bottom:525.242231pt;}
.ye7{bottom:525.242584pt;}
.y79{bottom:525.242723pt;}
.y10f{bottom:525.242855pt;}
.y23a{bottom:525.243089pt;}
.y135{bottom:525.243347pt;}
.y20f{bottom:525.243527pt;}
.yc8{bottom:525.243706pt;}
.y56{bottom:525.243838pt;}
.y98{bottom:525.244019pt;}
.y188{bottom:526.859062pt;}
.y3{bottom:531.896915pt;}
.y1b3{bottom:532.181315pt;}
.y186{bottom:538.808441pt;}
.y187{bottom:538.814212pt;}
.y258{bottom:539.846253pt;}
.y239{bottom:539.847562pt;}
.y97{bottom:541.178406pt;}
.ye6{bottom:541.178758pt;}
.y78{bottom:541.178898pt;}
.y55{bottom:541.179029pt;}
.y14b{bottom:541.179209pt;}
.y134{bottom:541.179521pt;}
.y20e{bottom:541.179701pt;}
.yc7{bottom:541.179881pt;}
.yb4{bottom:541.180013pt;}
.y1b2{bottom:544.133277pt;}
.y185{bottom:550.774218pt;}
.y257{bottom:554.462681pt;}
.y238{bottom:554.463989pt;}
.y1b1{bottom:556.085238pt;}
.y35{bottom:556.904243pt;}
.y96{bottom:557.126536pt;}
.ye5{bottom:557.126888pt;}
.y77{bottom:557.127028pt;}
.y54{bottom:557.127159pt;}
.y14a{bottom:557.127339pt;}
.y133{bottom:557.127651pt;}
.y20d{bottom:557.127831pt;}
.y122{bottom:557.128011pt;}
.y184{bottom:564.057718pt;}
.y1b0{bottom:568.048890pt;}
.y237{bottom:569.079108pt;}
.y95{bottom:573.062710pt;}
.ye4{bottom:573.063062pt;}
.y76{bottom:573.063202pt;}
.y53{bottom:573.063334pt;}
.y149{bottom:573.063513pt;}
.y132{bottom:573.063825pt;}
.y20c{bottom:573.064005pt;}
.y182{bottom:576.005268pt;}
.y183{bottom:576.012868pt;}
.y1af{bottom:580.000852pt;}
.y236{bottom:583.683580pt;}
.y34{bottom:586.128127pt;}
.y2{bottom:587.875581pt;}
.y181{bottom:587.960418pt;}
.y94{bottom:588.998885pt;}
.ye3{bottom:588.999237pt;}
.y75{bottom:588.999377pt;}
.y52{bottom:588.999508pt;}
.y148{bottom:588.999688pt;}
.y131{bottom:589.000000pt;}
.y1ae{bottom:591.952814pt;}
.y235{bottom:598.300008pt;}
.y180{bottom:601.243918pt;}
.y1ad{bottom:603.904776pt;}
.y93{bottom:604.947014pt;}
.ye2{bottom:604.947367pt;}
.y74{bottom:604.947507pt;}
.y51{bottom:604.947638pt;}
.y147{bottom:604.947817pt;}
.y13{bottom:607.308296pt;}
.y256{bottom:612.914666pt;}
.y234{bottom:612.915548pt;}
.y17f{bottom:613.199068pt;}
.y33{bottom:615.352010pt;}
.y1ac{bottom:615.868427pt;}
.y12{bottom:620.592927pt;}
.y92{bottom:620.883189pt;}
.ye1{bottom:620.883541pt;}
.y73{bottom:620.883681pt;}
.y50{bottom:620.883812pt;}
.y146{bottom:620.883992pt;}
.y17e{bottom:625.164845pt;}
.y255{bottom:627.519138pt;}
.y233{bottom:627.520020pt;}
.y1ab{bottom:627.820389pt;}
.y11{bottom:633.877557pt;}
.y91{bottom:636.819363pt;}
.ye0{bottom:636.819716pt;}
.y72{bottom:636.819856pt;}
.y4f{bottom:636.819987pt;}
.y17d{bottom:637.119995pt;}
.y1aa{bottom:639.772351pt;}
.y232{bottom:642.135566pt;}
.y1{bottom:643.854248pt;}
.y10{bottom:647.162188pt;}
.y1a9{bottom:651.736003pt;}
.y4e{bottom:652.767493pt;}
.ydf{bottom:652.767845pt;}
.y71{bottom:652.767985pt;}
.y231{bottom:656.751993pt;}
.yf{bottom:660.446819pt;}
.y17c{bottom:661.300008pt;}
.y4d{bottom:668.703668pt;}
.yf9{bottom:668.704020pt;}
.y32{bottom:668.751994pt;}
.y270{bottom:671.355105pt;}
.y230{bottom:671.355117pt;}
.ye{bottom:673.731401pt;}
.y1a8{bottom:675.904012pt;}
.y4c{bottom:684.639842pt;}
.y17b{bottom:685.970928pt;}
.y26f{bottom:685.971521pt;}
.y22f{bottom:685.971544pt;}
.yd{bottom:687.016032pt;}
.yc{bottom:700.587972pt;}
.y17a{bottom:700.592138pt;}
.yb{bottom:735.114939pt;}
.y4b{bottom:736.923991pt;}
.ya{bottom:751.013605pt;}
.y9{bottom:766.912272pt;}
.h1a{height:33.746541pt;}
.h42{height:34.961984pt;}
.h24{height:38.522052pt;}
.ha{height:39.701725pt;}
.h3f{height:39.886482pt;}
.h2f{height:39.956768pt;}
.hb{height:41.444520pt;}
.h9{height:44.664627pt;}
.h48{height:44.666305pt;}
.h49{height:44.666356pt;}
.h47{height:44.666503pt;}
.h11{height:44.685481pt;}
.h8{height:44.951552pt;}
.h12{height:44.997307pt;}
.hf{height:49.627030pt;}
.h22{height:49.627394pt;}
.h19{height:49.627517pt;}
.h36{height:49.627554pt;}
.h20{height:49.627590pt;}
.h23{height:49.627750pt;}
.h35{height:49.628274pt;}
.h21{height:49.628279pt;}
.h45{height:49.628384pt;}
.h27{height:49.628439pt;}
.h1f{height:49.628835pt;}
.h25{height:49.628916pt;}
.h2a{height:49.628994pt;}
.h30{height:49.628999pt;}
.h15{height:49.629633pt;}
.h18{height:49.629713pt;}
.h44{height:49.630083pt;}
.h39{height:49.630163pt;}
.h2c{height:49.630612pt;}
.h13{height:49.630965pt;}
.h3b{height:49.631490pt;}
.h2b{height:49.631522pt;}
.h3c{height:49.631602pt;}
.h31{height:49.631686pt;}
.h2d{height:49.632321pt;}
.h14{height:49.632772pt;}
.h1c{height:49.632808pt;}
.h1e{height:49.632931pt;}
.h33{height:49.633215pt;}
.h1b{height:49.633459pt;}
.h41{height:49.665430pt;}
.h1d{height:49.945833pt;}
.h32{height:49.948522pt;}
.h17{height:50.498342pt;}
.h5{height:51.509333pt;}
.h4{height:51.744000pt;}
.h43{height:56.964551pt;}
.h3a{height:56.966680pt;}
.h37{height:56.970287pt;}
.h34{height:57.012887pt;}
.h38{height:57.014531pt;}
.h26{height:57.017134pt;}
.h2e{height:57.017176pt;}
.h16{height:57.018987pt;}
.h46{height:57.019186pt;}
.h28{height:57.019546pt;}
.h29{height:57.019712pt;}
.he{height:59.552338pt;}
.h10{height:59.696409pt;}
.hd{height:59.934901pt;}
.hc{height:79.403948pt;}
.h40{height:87.552640pt;}
.h3d{height:87.552722pt;}
.h3e{height:87.587916pt;}
.h3{height:93.653333pt;}
.h2{height:191.989333pt;}
.h6{height:793.701333pt;}
.h7{height:794.000000pt;}
.h0{height:816.373333pt;}
.h1{height:816.666667pt;}
.w3{width:559.333333pt;}
.w2{width:559.370667pt;}
.w1{width:578.000000pt;}
.w0{width:578.266667pt;}
.x0{left:0.000000pt;}
.x4{left:71.436000pt;}
.x15{left:75.215998pt;}
.x7{left:77.797256pt;}
.x6{left:79.200002pt;}
.x2{left:81.262269pt;}
.xe{left:83.220000pt;}
.xc{left:87.371999pt;}
.x1{left:90.708537pt;}
.x3{left:93.354268pt;}
.x14{left:101.736003pt;}
.x13{left:110.016001pt;}
.x10{left:116.338815pt;}
.xf{left:135.551458pt;}
.x11{left:141.888000pt;}
.x12{left:155.843587pt;}
.xd{left:181.260009pt;}
.x9{left:195.179993pt;}
.xa{left:209.831991pt;}
.x18{left:213.768005pt;}
.x8{left:216.605388pt;}
.x19{left:234.432007pt;}
.x5{left:241.524007pt;}
.x16{left:292.225876pt;}
.x17{left:426.684000pt;}
.xb{left:467.105302pt;}
}




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