
    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_1495dc757b45061b618a5dc0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_9d5b3cfa1cf8c8efb4644591.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_0de09f13b732db5b354f40f4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_0ebd542ade7bf30ec20650a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f889d180c073fe063f0aa8d2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_597390dfe282d64c167d1286.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_bef7f590f2f0c1e478726e92.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_69294bae92ee70912e3ba0d1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ec5a65feb467e4ae600a681.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eb2dfa8233e0c3cf393bf176.woff')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_6919846d6907b4052323033e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea7b1cb3408e57446f7d697f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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_d840a2dce3c8a5dc1215eac0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.881836;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_5e680101ee0bb5e6663fbd78.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:35.999994px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017982px;}
.ls1{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.872130px;}
.ls1a{letter-spacing:0.923432px;}
.lsa{letter-spacing:1.296040px;}
.ls9{letter-spacing:1.344041px;}
.ls2{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.476000px;}
.ls14{letter-spacing:1.620000px;}
.ls7{letter-spacing:1.728000px;}
.ls18{letter-spacing:1.728053px;}
.ls12{letter-spacing:1.805937px;}
.lsf{letter-spacing:2.970000px;}
.ls19{letter-spacing:3.216098px;}
.ls17{letter-spacing:3.264100px;}
.ls13{letter-spacing:3.780000px;}
.ls6{letter-spacing:9.072000px;}
.ls16{letter-spacing:14.364000px;}
.lsb{letter-spacing:18.198000px;}
.lse{letter-spacing:58.811202px;}
.ls11{letter-spacing:154.848602px;}
.ls10{letter-spacing:492.710235px;}
.ls8{letter-spacing:895.318958px;}
.ls4{letter-spacing:895.319000px;}
.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;}
}
.wsd{word-spacing:-54.000000px;}
.ws1a{word-spacing:-51.301758px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-18.854533px;}
.ws9{word-spacing:-16.416000px;}
.wsb{word-spacing:-16.254000px;}
.ws3{word-spacing:-14.958000px;}
.ws19{word-spacing:-14.210587px;}
.ws13{word-spacing:-13.344407px;}
.wsa{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.wse{word-spacing:-1.296040px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:0.162000px;}
.ws6{word-spacing:0.324000px;}
.ws4{word-spacing:3.294000px;}
.wsc{word-spacing:100.930366px;}
.ws1b{word-spacing:101.474877px;}
.ws17{word-spacing:160.560403px;}
.ws12{word-spacing:259.508954px;}
.ws15{word-spacing:261.524884px;}
.ws14{word-spacing:268.496641px;}
.ws11{word-spacing:297.853617px;}
.ws16{word-spacing:300.163537px;}
.ws18{word-spacing:318.642893px;}
.ws7{word-spacing:348.012000px;}
.wsf{word-spacing:606.763508px;}
.ws10{word-spacing:854.997770px;}
._1a{margin-left:-10.750302px;}
._e{margin-left:-8.981424px;}
._33{margin-left:-7.055754px;}
._3{margin-left:-5.994000px;}
._5{margin-left:-3.923090px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._9{width:4.025254px;}
._8{width:5.027634px;}
._14{width:6.444075px;}
._b{width:7.614000px;}
._c{width:9.318366px;}
._a{width:10.962040px;}
._12{width:12.269843px;}
._11{width:13.895390px;}
._d{width:16.020031px;}
._7{width:17.833167px;}
._6{width:18.989660px;}
._19{width:20.242161px;}
._13{width:21.546013px;}
._1d{width:23.209200px;}
._15{width:24.589047px;}
._53{width:26.837734px;}
._3e{width:28.076053px;}
._16{width:30.731469px;}
._1b{width:32.202549px;}
._1f{width:34.016732px;}
._45{width:36.520428px;}
._37{width:37.990376px;}
._1c{width:42.933399px;}
._54{width:44.125088px;}
._51{width:71.385312px;}
._32{width:74.852892px;}
._21{width:88.940700px;}
._18{width:89.990827px;}
._29{width:91.292618px;}
._2b{width:94.604403px;}
._44{width:95.810161px;}
._35{width:98.000185px;}
._46{width:99.902318px;}
._24{width:106.321994px;}
._55{width:115.685464px;}
._40{width:121.777456px;}
._2f{width:123.205406px;}
._2c{width:128.047437px;}
._43{width:129.847274px;}
._36{width:133.404951px;}
._26{width:139.422940px;}
._39{width:142.650728px;}
._52{width:146.256503px;}
._3b{width:155.244189px;}
._28{width:163.368205px;}
._4b{width:166.524485px;}
._49{width:171.047838px;}
._38{width:179.111557px;}
._3d{width:181.092597px;}
._2e{width:182.129352px;}
._4c{width:183.352653px;}
._3a{width:186.383403px;}
._31{width:191.050642px;}
._3f{width:198.004509px;}
._20{width:208.684626px;}
._3c{width:215.740380px;}
._2a{width:221.872166px;}
._41{width:248.989319px;}
._22{width:271.016553px;}
._2d{width:273.368471px;}
._27{width:278.813631px;}
._34{width:280.130235px;}
._4a{width:284.100473px;}
._42{width:286.933998px;}
._30{width:300.385667px;}
._17{width:305.813631px;}
._4e{width:308.256892px;}
._25{width:309.709342px;}
._23{width:312.223821px;}
._4d{width:319.848651px;}
._4f{width:325.985781px;}
._47{width:348.165544px;}
._10{width:429.984000px;}
._50{width:439.238907px;}
._48{width:462.590093px;}
._f{width:501.984000px;}
._1e{width:583.426589px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs9{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fsa{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y24a{bottom:4.528544px;}
.y27a{bottom:4.528916px;}
.y2d2{bottom:4.529155px;}
.y279{bottom:22.482044px;}
.y2d1{bottom:22.482282px;}
.y249{bottom:22.487532px;}
.y248{bottom:40.440650px;}
.y278{bottom:40.441032px;}
.y2d0{bottom:40.441264px;}
.y21{bottom:46.734370px;}
.y247{bottom:58.393778px;}
.y294{bottom:58.394150px;}
.y277{bottom:58.394155px;}
.y2cf{bottom:58.394391px;}
.y20{bottom:59.015622px;}
.yc4{bottom:70.794000px;}
.y1f{bottom:71.302734px;}
.y293{bottom:76.347278px;}
.y276{bottom:76.347282px;}
.y2ce{bottom:76.347516px;}
.y246{bottom:76.352766px;}
.y49{bottom:86.800770px;}
.y7a{bottom:86.982417px;}
.ydc{bottom:87.410151px;}
.y6e{bottom:89.367182px;}
.yde{bottom:90.762000px;}
.y24b{bottom:91.078500px;}
.y2cd{bottom:94.300637px;}
.y245{bottom:94.305889px;}
.y275{bottom:94.306266px;}
.y1ff{bottom:94.628885px;}
.yea{bottom:95.525364px;}
.y197{bottom:97.330056px;}
.ya4{bottom:97.464735px;}
.y21b{bottom:97.904278px;}
.y17f{bottom:98.373056px;}
.y1dc{bottom:98.525391px;}
.ye4{bottom:99.263376px;}
.y10f{bottom:100.365250px;}
.y156{bottom:101.302738px;}
.y13d{bottom:101.958969px;}
.ydb{bottom:104.208983px;}
.y48{bottom:105.703119px;}
.y79{bottom:105.884760px;}
.y1cd{bottom:107.513674px;}
.y6d{bottom:108.263667px;}
.y21c{bottom:109.032000px;}
.y244{bottom:112.259016px;}
.y292{bottom:112.259387px;}
.y274{bottom:112.259389px;}
.y2cc{bottom:112.259625px;}
.y1fe{bottom:113.531234px;}
.y2be{bottom:113.560533px;}
.ye9{bottom:114.427713px;}
.y21a{bottom:115.857406px;}
.y196{bottom:116.232405px;}
.ya3{bottom:116.367084px;}
.y17e{bottom:117.269542px;}
.y1db{bottom:117.427728px;}
.y10d{bottom:118.365246px;}
.y155{bottom:120.205082px;}
.y13c{bottom:120.861318px;}
.yda{bottom:121.007815px;}
.y47{bottom:124.599605px;}
.y78{bottom:124.781242px;}
.y6c{bottom:127.165999px;}
.ye3{bottom:128.806344px;}
.y243{bottom:130.212141px;}
.y291{bottom:130.212514px;}
.y273{bottom:130.212516px;}
.y2cb{bottom:130.212748px;}
.y2bd{bottom:131.519521px;}
.y1fd{bottom:132.427724px;}
.ye8{bottom:133.330062px;}
.y1a7{bottom:133.787107px;}
.y219{bottom:133.810533px;}
.y1cc{bottom:134.291016px;}
.y195{bottom:135.128895px;}
.ya2{bottom:135.263574px;}
.y1da{bottom:136.324191px;}
.y10e{bottom:136.365243px;}
.y13b{bottom:139.757808px;}
.ydd{bottom:141.181641px;}
.yd9{bottom:142.306641px;}
.y46{bottom:143.501943px;}
.y77{bottom:143.683591px;}
.y17d{bottom:144.046884px;}
.y1c{bottom:144.298812px;}
.y6b{bottom:146.068349px;}
.y154{bottom:146.982425px;}
.y272{bottom:148.165641px;}
.y2ca{bottom:148.165875px;}
.y242{bottom:148.171067px;}
.y2bc{bottom:149.472648px;}
.y1a6{bottom:150.585939px;}
.y1fc{bottom:151.330072px;}
.y218{bottom:151.769521px;}
.ye7{bottom:152.226552px;}
.y1cb{bottom:153.187502px;}
.y194{bottom:154.031244px;}
.ya1{bottom:154.165923px;}
.y1d9{bottom:155.226540px;}
.y13a{bottom:158.660151px;}
.yc2{bottom:159.117184px;}
.y45{bottom:162.398433px;}
.y76{bottom:162.580082px;}
.y17c{bottom:162.943370px;}
.y1b{bottom:163.201161px;}
.y153{bottom:165.878910px;}
.y241{bottom:166.124194px;}
.y2b4{bottom:166.124250px;}
.y290{bottom:166.124616px;}
.y271{bottom:166.124623px;}
.y2c9{bottom:166.124859px;}
.y1a5{bottom:167.390628px;}
.y2bb{bottom:167.425775px;}
.ye2{bottom:168.790725px;}
.y10c{bottom:168.990243px;}
.y217{bottom:169.722648px;}
.y1fb{bottom:170.232422px;}
.ye6{bottom:171.128901px;}
.y193{bottom:172.927734px;}
.ya0{bottom:173.068272px;}
.y1d8{bottom:174.123030px;}
.yc1{bottom:175.916016px;}
.y139{bottom:177.556608px;}
.y6a{bottom:178.464838px;}
.y1ca{bottom:179.964844px;}
.y44{bottom:181.300776px;}
.y1a{bottom:182.103510px;}
.y240{bottom:184.077321px;}
.y2b3{bottom:184.077371px;}
.y28f{bottom:184.077743px;}
.y270{bottom:184.077750px;}
.y2c8{bottom:184.077975px;}
.y2ba{bottom:185.384764px;}
.y10a{bottom:186.990239px;}
.y1a8{bottom:187.564454px;}
.y216{bottom:187.675775px;}
.ye1{bottom:187.693074px;}
.y1a4{bottom:188.689453px;}
.y1fa{bottom:189.128885px;}
.y17b{bottom:189.720712px;}
.ye5{bottom:190.025391px;}
.y9f{bottom:191.964762px;}
.y152{bottom:192.656253px;}
.yc0{bottom:192.714843px;}
.y1d7{bottom:193.025379px;}
.y138{bottom:196.464816px;}
.y69{bottom:197.367165px;}
.y1c9{bottom:198.867188px;}
.y43{bottom:200.203104px;}
.y19{bottom:201.000000px;}
.y26f{bottom:202.030871px;}
.y2c7{bottom:202.031102px;}
.y23f{bottom:202.036310px;}
.y2b2{bottom:202.036359px;}
.y2b9{bottom:203.337891px;}
.y7e{bottom:204.580072px;}
.y10b{bottom:204.990236px;}
.y215{bottom:205.634764px;}
.ye0{bottom:206.589564px;}
.y1f9{bottom:208.031234px;}
.y17a{bottom:208.623056px;}
.ybf{bottom:209.519527px;}
.y9e{bottom:210.867111px;}
.y1d6{bottom:211.927728px;}
.y137{bottom:215.367165px;}
.y68{bottom:216.263655px;}
.y42{bottom:219.099594px;}
.y151{bottom:219.427737px;}
.y23e{bottom:219.989437px;}
.y2b1{bottom:219.989475px;}
.y26e{bottom:219.989859px;}
.y2c6{bottom:219.990090px;}
.y2b8{bottom:221.291016px;}
.y7d{bottom:221.378905px;}
.y214{bottom:223.587891px;}
.y1c8{bottom:225.638672px;}
.ybe{bottom:226.318359px;}
.y1f8{bottom:226.927724px;}
.y179{bottom:227.519542px;}
.y9d{bottom:229.763601px;}
.y1d5{bottom:230.824218px;}
.y136{bottom:234.263655px;}
.y67{bottom:235.166004px;}
.y192{bottom:235.394540px;}
.ydf{bottom:236.132532px;}
.y109{bottom:237.615236px;}
.y23d{bottom:237.942564px;}
.y2b0{bottom:237.942602px;}
.y26d{bottom:237.942984px;}
.y2c5{bottom:237.943217px;}
.y41{bottom:238.001943px;}
.y7c{bottom:238.177737px;}
.y18{bottom:238.880859px;}
.y2b7{bottom:239.244134px;}
.y213{bottom:241.541016px;}
.ybd{bottom:243.117188px;}
.y1c7{bottom:244.541016px;}
.y1f7{bottom:245.830073px;}
.y150{bottom:246.205079px;}
.y108{bottom:246.615234px;}
.y9c{bottom:248.665950px;}
.y135{bottom:253.166004px;}
.y66{bottom:254.068353px;}
.y178{bottom:254.296884px;}
.y26c{bottom:255.896102px;}
.y2c4{bottom:255.896344px;}
.y23c{bottom:255.901552px;}
.y2af{bottom:255.901590px;}
.y40{bottom:256.898433px;}
.y2b6{bottom:257.203123px;}
.y7f{bottom:258.351562px;}
.y7b{bottom:259.476562px;}
.y212{bottom:259.494137px;}
.y191{bottom:262.171883px;}
.y1f6{bottom:264.732417px;}
.y14f{bottom:265.107423px;}
.y9b{bottom:267.568299px;}
.y1c6{bottom:271.312500px;}
.ybc{bottom:271.541016px;}
.y134{bottom:272.068353px;}
.y1e0{bottom:272.818357px;}
.y65{bottom:272.964843px;}
.y177{bottom:273.193370px;}
.y23b{bottom:273.854680px;}
.y2ae{bottom:273.854717px;}
.y26b{bottom:273.855091px;}
.y2c3{bottom:273.855328px;}
.y2b5{bottom:275.156250px;}
.y3f{bottom:275.800776px;}
.y211{bottom:277.453125px;}
.y190{bottom:281.068368px;}
.y1f5{bottom:283.628907px;}
.y9a{bottom:286.464789px;}
.y1df{bottom:289.623046px;}
.y17{bottom:290.373026px;}
.y133{bottom:290.964833px;}
.y23a{bottom:291.807807px;}
.y2ad{bottom:291.807845px;}
.y26a{bottom:291.808218px;}
.y2c2{bottom:291.808447px;}
.y14e{bottom:291.878907px;}
.y3e{bottom:294.703119px;}
.y210{bottom:295.406250px;}
.y107{bottom:298.763672px;}
.y176{bottom:299.970712px;}
.y1f4{bottom:302.531239px;}
.ybb{bottom:302.923828px;}
.y64{bottom:303.621093px;}
.y99{bottom:305.367138px;}
.y1de{bottom:306.421878px;}
.y18f{bottom:307.845711px;}
.y16{bottom:309.269516px;}
.y28e{bottom:309.761323px;}
.y269{bottom:309.761345px;}
.y2c1{bottom:309.761574px;}
.y239{bottom:309.766795px;}
.y2ac{bottom:309.766824px;}
.y132{bottom:309.867182px;}
.y1cf{bottom:310.019533px;}
.y14d{bottom:310.781251px;}
.y20f{bottom:313.359368px;}
.y3d{bottom:313.599609px;}
.y175{bottom:318.873056px;}
.y1f3{bottom:321.427729px;}
.y98{bottom:324.263628px;}
.y1e1{bottom:326.595704px;}
.y18e{bottom:326.748055px;}
.y238{bottom:327.719922px;}
.y2ab{bottom:327.719951px;}
.y268{bottom:327.720311px;}
.y2c0{bottom:327.720562px;}
.y1dd{bottom:327.720704px;}
.y15{bottom:328.171865px;}
.y131{bottom:328.763672px;}
.y20e{bottom:331.318357px;}
.y1ce{bottom:331.318359px;}
.y3c{bottom:332.501943px;}
.yba{bottom:336.023438px;}
.y14c{bottom:337.552735px;}
.y1f2{bottom:340.330078px;}
.y97{bottom:343.165977px;}
.y174{bottom:345.644540px;}
.y237{bottom:345.673049px;}
.y2aa{bottom:345.673078px;}
.y267{bottom:345.673438px;}
.y14{bottom:347.068355px;}
.y130{bottom:347.665977px;}
.y106{bottom:348.169922px;}
.y20d{bottom:349.271484px;}
.y3b{bottom:351.398433px;}
.y18d{bottom:353.519539px;}
.y14b{bottom:356.455079px;}
.y63{bottom:359.232368px;}
.y1f1{bottom:359.232417px;}
.y96{bottom:362.068326px;}
.y266{bottom:363.626565px;}
.y236{bottom:363.632038px;}
.y2a9{bottom:363.632058px;}
.y13{bottom:365.970704px;}
.y12f{bottom:366.568326px;}
.y20c{bottom:367.224605px;}
.y1c5{bottom:370.166000px;}
.y3a{bottom:370.300776px;}
.y173{bottom:372.421883px;}
.y62{bottom:378.128858px;}
.y1f0{bottom:378.128907px;}
.yed{bottom:378.720704px;}
.y18c{bottom:380.296881px;}
.y95{bottom:380.964816px;}
.y235{bottom:381.585165px;}
.y2a8{bottom:381.585185px;}
.y265{bottom:381.585554px;}
.y14a{bottom:383.232422px;}
.y20b{bottom:385.183593px;}
.y12e{bottom:385.464816px;}
.y1c4{bottom:389.068349px;}
.y39{bottom:389.203119px;}
.y172{bottom:391.318368px;}
.yb9{bottom:391.628755px;}
.yec{bottom:395.525392px;}
.y61{bottom:397.031207px;}
.y1ef{bottom:397.031217px;}
.y18b{bottom:399.193366px;}
.y234{bottom:399.538292px;}
.y2a7{bottom:399.538313px;}
.y264{bottom:399.538681px;}
.y94{bottom:399.867165px;}
.y149{bottom:402.128907px;}
.y20a{bottom:403.136713px;}
.y105{bottom:403.781229px;}
.y12{bottom:403.851562px;}
.y12d{bottom:404.367165px;}
.y1c3{bottom:407.964839px;}
.y38{bottom:408.099605px;}
.yb8{bottom:410.531104px;}
.yee{bottom:415.699218px;}
.y60{bottom:415.927697px;}
.y1ee{bottom:415.927707px;}
.yeb{bottom:416.824218px;}
.y263{bottom:417.491808px;}
.y233{bottom:417.497281px;}
.y2a6{bottom:417.497292px;}
.y171{bottom:418.095710px;}
.y93{bottom:418.763655px;}
.y209{bottom:421.089840px;}
.y12c{bottom:423.263655px;}
.y18a{bottom:425.970709px;}
.y1c2{bottom:426.867161px;}
.y37{bottom:427.001948px;}
.y148{bottom:428.906250px;}
.yb7{bottom:429.427594px;}
.y104{bottom:433.324197px;}
.y5f{bottom:434.830046px;}
.y1ed{bottom:434.830056px;}
.y232{bottom:435.450408px;}
.y2a5{bottom:435.450419px;}
.y262{bottom:435.450797px;}
.y92{bottom:437.666004px;}
.y208{bottom:439.048828px;}
.y12b{bottom:442.166004px;}
.y11{bottom:443.607422px;}
.y170{bottom:444.873053px;}
.y1c1{bottom:445.763651px;}
.y36{bottom:445.898433px;}
.y147{bottom:447.802735px;}
.yb6{bottom:448.329943px;}
.y231{bottom:453.403535px;}
.y2a4{bottom:453.403547px;}
.y261{bottom:453.403919px;}
.y28d{bottom:453.403922px;}
.y5e{bottom:453.732395px;}
.y1ec{bottom:453.732405px;}
.y91{bottom:456.568353px;}
.y12a{bottom:461.068353px;}
.y16f{bottom:463.769538px;}
.y1c0{bottom:464.666000px;}
.y35{bottom:464.800776px;}
.yb5{bottom:467.232293px;}
.y28c{bottom:471.357044px;}
.y260{bottom:471.357047px;}
.y230{bottom:471.362523px;}
.y2a3{bottom:471.362532px;}
.y189{bottom:471.644537px;}
.y5d{bottom:472.628885px;}
.y1eb{bottom:472.628895px;}
.y103{bottom:473.302719px;}
.y146{bottom:474.580077px;}
.y90{bottom:475.464843px;}
.y207{bottom:476.554688px;}
.y129{bottom:479.964843px;}
.y1bf{bottom:483.568349px;}
.y34{bottom:483.703115px;}
.yb4{bottom:486.128782px;}
.y22f{bottom:489.315650px;}
.y2a2{bottom:489.315655px;}
.y25f{bottom:489.316023px;}
.y28b{bottom:489.316032px;}
.y16e{bottom:490.546881px;}
.y5c{bottom:491.531234px;}
.y1ea{bottom:491.531244px;}
.y102{bottom:492.205068px;}
.y145{bottom:493.482422px;}
.y128{bottom:498.867144px;}
.y1be{bottom:502.464839px;}
.y33{bottom:502.599605px;}
.yb3{bottom:505.031131px;}
.y8f{bottom:506.121093px;}
.y22e{bottom:507.268778px;}
.y2a1{bottom:507.268782px;}
.y25e{bottom:507.269150px;}
.y28a{bottom:507.269157px;}
.y16d{bottom:509.443366px;}
.y5b{bottom:510.427724px;}
.y1e9{bottom:510.427729px;}
.y101{bottom:511.107417px;}
.y10{bottom:512.707021px;}
.y112{bottom:516.169922px;}
.y188{bottom:517.318365px;}
.y127{bottom:517.763634px;}
.y1bd{bottom:521.367134px;}
.y32{bottom:521.501948px;}
.yb2{bottom:523.927621px;}
.y289{bottom:525.222275px;}
.y25d{bottom:525.222278px;}
.y2a0{bottom:525.227760px;}
.y22d{bottom:525.227766px;}
.y1e8{bottom:529.329971px;}
.y5a{bottom:529.330073px;}
.yf{bottom:529.505848px;}
.y100{bottom:530.003895px;}
.y206{bottom:532.166004px;}
.y15b{bottom:532.183587px;}
.y16c{bottom:536.220709px;}
.y126{bottom:536.665983px;}
.y1bc{bottom:540.263623px;}
.y31{bottom:540.398427px;}
.yb1{bottom:542.829970px;}
.y29f{bottom:543.180887px;}
.y22c{bottom:543.180889px;}
.y288{bottom:543.181264px;}
.y25c{bottom:543.181266px;}
.y187{bottom:544.095707px;}
.ye{bottom:546.304674px;}
.y1e7{bottom:548.232319px;}
.y59{bottom:548.232340px;}
.yff{bottom:548.906244px;}
.y15a{bottom:548.982420px;}
.y205{bottom:551.068353px;}
.y111{bottom:553.968754px;}
.y125{bottom:555.568332px;}
.y1bb{bottom:559.165973px;}
.y30{bottom:559.300776px;}
.y29e{bottom:561.134014px;}
.y22b{bottom:561.134016px;}
.y25b{bottom:561.134389px;}
.y287{bottom:561.134391px;}
.yb0{bottom:561.732319px;}
.y8e{bottom:561.732422px;}
.y16b{bottom:562.998051px;}
.y159{bottom:565.787108px;}
.y1e6{bottom:567.128809px;}
.y58{bottom:567.128831px;}
.yd{bottom:567.603507px;}
.yfe{bottom:567.802692px;}
.yd8{bottom:569.156196px;}
.y204{bottom:569.964843px;}
.y186{bottom:570.873050px;}
.y110{bottom:572.865234px;}
.y124{bottom:574.464822px;}
.y1ba{bottom:578.068322px;}
.y2f{bottom:578.203119px;}
.y22a{bottom:579.087126px;}
.y29d{bottom:579.087141px;}
.y286{bottom:579.087499px;}
.y25a{bottom:579.087516px;}
.yaf{bottom:580.628809px;}
.y8d{bottom:580.628891px;}
.y16a{bottom:581.894537px;}
.y158{bottom:582.585940px;}
.y1e5{bottom:586.031159px;}
.y57{bottom:586.031180px;}
.y1a3{bottom:586.031229px;}
.yfd{bottom:586.705041px;}
.yd7{bottom:588.052686px;}
.yc{bottom:588.908199px;}
.y2bf{bottom:593.818500px;}
.y1b9{bottom:596.964811px;}
.y285{bottom:597.040626px;}
.y259{bottom:597.040641px;}
.y229{bottom:597.046114px;}
.y29c{bottom:597.046121px;}
.y2e{bottom:597.099605px;}
.y185{bottom:597.644534px;}
.yae{bottom:599.531159px;}
.y8c{bottom:599.531240px;}
.y203{bottom:600.621093px;}
.y169{bottom:600.796881px;}
.y157{bottom:603.884766px;}
.y1e4{bottom:604.927649px;}
.y56{bottom:604.927670px;}
.y1a2{bottom:604.927719px;}
.yfc{bottom:605.607390px;}
.y123{bottom:606.867171px;}
.yd6{bottom:606.955035px;}
.yb{bottom:610.207032px;}
.y228{bottom:614.999241px;}
.y29b{bottom:614.999248px;}
.y258{bottom:614.999600px;}
.y284{bottom:614.999614px;}
.y1b8{bottom:615.867161px;}
.y2d{bottom:616.001954px;}
.y184{bottom:616.546878px;}
.yad{bottom:618.427649px;}
.y8b{bottom:618.427730px;}
.y1e3{bottom:623.829997px;}
.y55{bottom:623.830019px;}
.y1a1{bottom:623.830068px;}
.yfb{bottom:624.503880px;}
.y122{bottom:625.763661px;}
.yd5{bottom:625.857384px;}
.y168{bottom:627.568365px;}
.y227{bottom:632.952368px;}
.y29a{bottom:632.952375px;}
.y257{bottom:632.952728px;}
.y283{bottom:632.952741px;}
.y1b7{bottom:634.763651px;}
.y2c{bottom:634.898427px;}
.yac{bottom:637.329997px;}
.y8a{bottom:637.330056px;}
.y1e2{bottom:642.732346px;}
.y54{bottom:642.732368px;}
.y144{bottom:642.732401px;}
.y1a0{bottom:642.732417px;}
.y183{bottom:643.318362px;}
.yfa{bottom:643.406229px;}
.y121{bottom:644.666010px;}
.yd4{bottom:644.753874px;}
.y256{bottom:650.905855px;}
.y282{bottom:650.905868px;}
.y299{bottom:650.911350px;}
.y226{bottom:650.911357px;}
.y1b6{bottom:653.665999px;}
.y2b{bottom:653.800776px;}
.y167{bottom:654.345707px;}
.yab{bottom:656.232346px;}
.y89{bottom:656.232405px;}
.y202{bottom:656.232417px;}
.ya{bottom:660.457036px;}
.y19f{bottom:661.628837px;}
.y53{bottom:661.628858px;}
.y143{bottom:661.628891px;}
.y182{bottom:662.220706px;}
.yf9{bottom:662.302719px;}
.y120{bottom:663.568359px;}
.yd3{bottom:663.656223px;}
.y298{bottom:668.864477px;}
.y225{bottom:668.864484px;}
.y255{bottom:668.864843px;}
.y281{bottom:668.864857px;}
.y1b5{bottom:672.568348px;}
.y2a{bottom:672.703125px;}
.y9{bottom:673.687500px;}
.yaa{bottom:675.128837px;}
.y88{bottom:675.128895px;}
.y201{bottom:675.128901px;}
.y19e{bottom:680.531185px;}
.y52{bottom:680.531207px;}
.y142{bottom:680.531240px;}
.y166{bottom:681.123050px;}
.yf8{bottom:681.205068px;}
.y11f{bottom:682.464843px;}
.yd2{bottom:682.552713px;}
.y297{bottom:686.817605px;}
.y224{bottom:686.817609px;}
.y254{bottom:686.817970px;}
.y280{bottom:686.817984px;}
.ycd{bottom:687.362213px;}
.y1b4{bottom:691.464839px;}
.ya9{bottom:694.031185px;}
.y200{bottom:694.031233px;}
.y87{bottom:694.031244px;}
.y8{bottom:694.646484px;}
.y1e{bottom:699.146481px;}
.y19d{bottom:699.427676px;}
.y51{bottom:699.427697px;}
.yf7{bottom:700.107417px;}
.yd1{bottom:701.455062px;}
.y29{bottom:703.353516px;}
.y27f{bottom:704.771089px;}
.y253{bottom:704.771097px;}
.y223{bottom:704.776584px;}
.y296{bottom:704.776593px;}
.ycc{bottom:706.258703px;}
.y165{bottom:707.894534px;}
.y1b3{bottom:710.367144px;}
.ya8{bottom:712.927676px;}
.y86{bottom:712.927723px;}
.y141{bottom:712.927730px;}
.y11e{bottom:713.121093px;}
.y7{bottom:713.847657px;}
.y19c{bottom:718.330025px;}
.y50{bottom:718.330045px;}
.y1d{bottom:718.347657px;}
.yf6{bottom:719.003895px;}
.yd0{bottom:720.357411px;}
.y222{bottom:722.729711px;}
.y27e{bottom:722.730077px;}
.y252{bottom:722.730086px;}
.ycb{bottom:725.161052px;}
.y164{bottom:726.796878px;}
.y1b2{bottom:729.263634px;}
.ya7{bottom:731.830025px;}
.y85{bottom:731.830073px;}
.y140{bottom:731.830079px;}
.y19b{bottom:737.232373px;}
.y4f{bottom:737.232395px;}
.y75{bottom:737.232401px;}
.y1d4{bottom:737.818364px;}
.yf5{bottom:737.906244px;}
.ycf{bottom:739.253901px;}
.y221{bottom:740.682838px;}
.y27d{bottom:740.683204px;}
.y251{bottom:740.683213px;}
.yca{bottom:744.063401px;}
.y1b1{bottom:748.165983px;}
.ya6{bottom:750.732373px;}
.y84{bottom:750.732417px;}
.y163{bottom:753.568361px;}
.y19a{bottom:756.128864px;}
.y74{bottom:756.128891px;}
.y6{bottom:756.158206px;}
.yf4{bottom:756.802729px;}
.yce{bottom:758.156250px;}
.y27c{bottom:758.636331px;}
.y250{bottom:758.636340px;}
.y220{bottom:758.641826px;}
.y28{bottom:758.964843px;}
.yc9{bottom:762.959891px;}
.y1d3{bottom:764.595707px;}
.y1b0{bottom:767.068332px;}
.ya5{bottom:769.628864px;}
.y4e{bottom:769.628884px;}
.y83{bottom:769.628901px;}
.y13f{bottom:769.628907px;}
.y181{bottom:772.470706px;}
.y199{bottom:775.031213px;}
.y73{bottom:775.031240px;}
.yf3{bottom:775.705073px;}
.y21f{bottom:776.594954px;}
.y27b{bottom:776.595320px;}
.y24f{bottom:776.595329px;}
.y11c{bottom:776.677745px;}
.y162{bottom:780.345704px;}
.yc8{bottom:781.862240px;}
.y11b{bottom:785.677743px;}
.y1af{bottom:785.964822px;}
.y82{bottom:788.531213px;}
.y4d{bottom:788.531233px;}
.y27{bottom:789.621093px;}
.y1d2{bottom:791.373050px;}
.y5{bottom:793.710931px;}
.y198{bottom:793.927703px;}
.y72{bottom:793.927730px;}
.y295{bottom:794.548074px;}
.y21e{bottom:794.548079px;}
.y24e{bottom:794.548447px;}
.yf2{bottom:794.607401px;}
.y11d{bottom:794.677742px;}
.y161{bottom:799.248048px;}
.yc7{bottom:800.758730px;}
.y1ae{bottom:804.867171px;}
.y81{bottom:807.427703px;}
.y4c{bottom:807.427723px;}
.y24d{bottom:812.501574px;}
.y21d{bottom:812.507063px;}
.y71{bottom:812.830052px;}
.yf1{bottom:813.503891px;}
.y1d1{bottom:818.144533px;}
.yc6{bottom:819.661079px;}
.y1ad{bottom:823.763661px;}
.y160{bottom:826.019532px;}
.y80{bottom:826.330052px;}
.y4b{bottom:826.330072px;}
.y119{bottom:827.302741px;}
.y24c{bottom:830.460563px;}
.y4{bottom:831.269532px;}
.y70{bottom:831.732401px;}
.yf0{bottom:832.406239px;}
.y118{bottom:836.302739px;}
.y1ac{bottom:842.666010px;}
.y180{bottom:844.921876px;}
.y26{bottom:845.232401px;}
.y13e{bottom:845.232421px;}
.y11a{bottom:845.302738px;}
.yc5{bottom:849.204047px;}
.y6f{bottom:850.628891px;}
.y15f{bottom:852.796875px;}
.y1ab{bottom:861.568353px;}
.yef{bottom:861.949208px;}
.y25{bottom:864.128891px;}
.y15e{bottom:871.693360px;}
.y115{bottom:877.927737px;}
.y1aa{bottom:880.464843px;}
.y24{bottom:883.031239px;}
.y117{bottom:886.927736px;}
.y1d0{bottom:890.595704px;}
.y113{bottom:895.927734px;}
.y15d{bottom:898.470702px;}
.y3{bottom:899.378907px;}
.y23{bottom:901.927730px;}
.y116{bottom:904.927732px;}
.y1a9{bottom:911.121093px;}
.y114{bottom:913.927731px;}
.y15c{bottom:917.373046px;}
.y22{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.yc3{bottom:974.730447px;}
.y4a{bottom:974.730470px;}
.hb{height:28.048904px;}
.h23{height:30.576083px;}
.h12{height:31.993163px;}
.ha{height:32.273438px;}
.h6{height:33.888685px;}
.h1f{height:34.946378px;}
.h24{height:35.391704px;}
.hd{height:35.617086px;}
.h16{height:35.617176px;}
.h1e{height:36.307617px;}
.h1{height:37.651031px;}
.h7{height:37.651075px;}
.h15{height:40.341797px;}
.h1b{height:40.535623px;}
.h5{height:43.032562px;}
.h28{height:45.991224px;}
.h2a{height:45.991286px;}
.h2f{height:45.991294px;}
.h2e{height:45.991306px;}
.h30{height:45.991312px;}
.h2d{height:45.991323px;}
.h2b{height:45.991457px;}
.h9{height:46.796220px;}
.h14{height:48.050236px;}
.h2{height:48.410156px;}
.h22{height:48.410216px;}
.h10{height:48.410222px;}
.hc{height:48.410240px;}
.hf{height:48.410246px;}
.h11{height:48.410264px;}
.h21{height:48.410288px;}
.h13{height:48.410306px;}
.h1a{height:48.410324px;}
.h20{height:48.410330px;}
.h27{height:48.410348px;}
.h18{height:48.410372px;}
.h25{height:48.410438px;}
.he{height:48.410480px;}
.h26{height:48.410588px;}
.h8{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h1d{height:70.946372px;}
.h1c{height:79.032556px;}
.h31{height:341.145000px;}
.h29{height:825.931500px;}
.h2c{height:843.885000px;}
.h19{height:844.201500px;}
.h17{height:864.169500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x21{left:11.584593px;}
.xe{left:22.500609px;}
.x20{left:45.000609px;}
.x3{left:78.662109px;}
.x17{left:83.162109px;}
.x9{left:86.537109px;}
.x1e{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xb{left:101.162109px;}
.xc{left:107.537109px;}
.x10{left:109.037109px;}
.x16{left:119.162103px;}
.x1f{left:123.662109px;}
.xa{left:138.287109px;}
.x1{left:140.308593px;}
.xd{left:146.162109px;}
.x11{left:160.787109px;}
.x8{left:161.789062px;}
.x6{left:178.787109px;}
.x1a{left:197.250000px;}
.x7{left:231.662109px;}
.x2{left:277.664062px;}
.x1b{left:291.292975px;}
.x18{left:316.687503px;}
.x15{left:375.199215px;}
.x1c{left:389.677737px;}
.x19{left:404.437501px;}
.x1d{left:522.304694px;}
.x13{left:531.374992px;}
.xf{left:599.286621px;}
.x12{left:608.283325px;}
.x14{left:613.916016px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:31.999995pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015984pt;}
.ls1{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.775227pt;}
.ls1a{letter-spacing:0.820828pt;}
.lsa{letter-spacing:1.152035pt;}
.ls9{letter-spacing:1.194703pt;}
.ls2{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.312000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls7{letter-spacing:1.536000pt;}
.ls18{letter-spacing:1.536047pt;}
.ls12{letter-spacing:1.605277pt;}
.lsf{letter-spacing:2.640000pt;}
.ls19{letter-spacing:2.858754pt;}
.ls17{letter-spacing:2.901422pt;}
.ls13{letter-spacing:3.360000pt;}
.ls6{letter-spacing:8.064000pt;}
.ls16{letter-spacing:12.768000pt;}
.lsb{letter-spacing:16.176000pt;}
.lse{letter-spacing:52.276624pt;}
.ls11{letter-spacing:137.643202pt;}
.ls10{letter-spacing:437.964653pt;}
.ls8{letter-spacing:795.839074pt;}
.ls4{letter-spacing:795.839111pt;}
.wsd{word-spacing:-48.000000pt;}
.ws1a{word-spacing:-45.601563pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-16.759585pt;}
.ws9{word-spacing:-14.592000pt;}
.wsb{word-spacing:-14.448000pt;}
.ws3{word-spacing:-13.296000pt;}
.ws19{word-spacing:-12.631633pt;}
.ws13{word-spacing:-11.861695pt;}
.wsa{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.wse{word-spacing:-1.152035pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:0.144000pt;}
.ws6{word-spacing:0.288000pt;}
.ws4{word-spacing:2.928000pt;}
.wsc{word-spacing:89.715881pt;}
.ws1b{word-spacing:90.199891pt;}
.ws17{word-spacing:142.720358pt;}
.ws12{word-spacing:230.674626pt;}
.ws15{word-spacing:232.466563pt;}
.ws14{word-spacing:238.663681pt;}
.ws11{word-spacing:264.758771pt;}
.ws16{word-spacing:266.812033pt;}
.ws18{word-spacing:283.238127pt;}
.ws7{word-spacing:309.344000pt;}
.wsf{word-spacing:539.345340pt;}
.ws10{word-spacing:759.998018pt;}
._1a{margin-left:-9.555824pt;}
._e{margin-left:-7.983488pt;}
._33{margin-left:-6.271781pt;}
._3{margin-left:-5.328000pt;}
._5{margin-left:-3.487191pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._9{width:3.578003pt;}
._8{width:4.469008pt;}
._14{width:5.728066pt;}
._b{width:6.768000pt;}
._c{width:8.282992pt;}
._a{width:9.744035pt;}
._12{width:10.906527pt;}
._11{width:12.351457pt;}
._d{width:14.240027pt;}
._7{width:15.851704pt;}
._6{width:16.879698pt;}
._19{width:17.993032pt;}
._13{width:19.152012pt;}
._1d{width:20.630400pt;}
._15{width:21.856931pt;}
._53{width:23.855763pt;}
._3e{width:24.956492pt;}
._16{width:27.316861pt;}
._1b{width:28.624488pt;}
._1f{width:30.237095pt;}
._45{width:32.462602pt;}
._37{width:33.769223pt;}
._1c{width:38.163022pt;}
._54{width:39.222300pt;}
._51{width:63.453611pt;}
._32{width:66.535904pt;}
._21{width:79.058400pt;}
._18{width:79.991846pt;}
._29{width:81.148994pt;}
._2b{width:84.092803pt;}
._44{width:85.164588pt;}
._35{width:87.111275pt;}
._46{width:88.802060pt;}
._24{width:94.508440pt;}
._55{width:102.831524pt;}
._40{width:108.246627pt;}
._2f{width:109.515916pt;}
._2c{width:113.819944pt;}
._43{width:115.419799pt;}
._36{width:118.582178pt;}
._26{width:123.931503pt;}
._39{width:126.800647pt;}
._52{width:130.005780pt;}
._3b{width:137.994835pt;}
._28{width:145.216183pt;}
._4b{width:148.021765pt;}
._49{width:152.042523pt;}
._38{width:159.210273pt;}
._3d{width:160.971198pt;}
._2e{width:161.892757pt;}
._4c{width:162.980136pt;}
._3a{width:165.674136pt;}
._31{width:169.822793pt;}
._3f{width:176.004008pt;}
._20{width:185.497445pt;}
._3c{width:191.769227pt;}
._2a{width:197.219703pt;}
._41{width:221.323839pt;}
._22{width:240.903602pt;}
._2d{width:242.994196pt;}
._27{width:247.834339pt;}
._34{width:249.004653pt;}
._4a{width:252.533754pt;}
._42{width:255.052443pt;}
._30{width:267.009482pt;}
._17{width:271.834339pt;}
._4e{width:274.006126pt;}
._25{width:275.297193pt;}
._23{width:277.532286pt;}
._4d{width:284.309912pt;}
._4f{width:289.765139pt;}
._47{width:309.480483pt;}
._10{width:382.208000pt;}
._50{width:390.434584pt;}
._48{width:411.191194pt;}
._f{width:446.208000pt;}
._1e{width:518.601412pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs9{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fsa{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y24a{bottom:4.025372pt;}
.y27a{bottom:4.025704pt;}
.y2d2{bottom:4.025915pt;}
.y279{bottom:19.984039pt;}
.y2d1{bottom:19.984251pt;}
.y249{bottom:19.988917pt;}
.y248{bottom:35.947245pt;}
.y278{bottom:35.947584pt;}
.y2d0{bottom:35.947790pt;}
.y21{bottom:41.541662pt;}
.y247{bottom:51.905580pt;}
.y294{bottom:51.905912pt;}
.y277{bottom:51.905915pt;}
.y2cf{bottom:51.906125pt;}
.y20{bottom:52.458331pt;}
.yc4{bottom:62.928000pt;}
.y1f{bottom:63.380208pt;}
.y293{bottom:67.864247pt;}
.y276{bottom:67.864251pt;}
.y2ce{bottom:67.864459pt;}
.y246{bottom:67.869125pt;}
.y49{bottom:77.156240pt;}
.y7a{bottom:77.317704pt;}
.ydc{bottom:77.697912pt;}
.y6e{bottom:79.437495pt;}
.yde{bottom:80.677333pt;}
.y24b{bottom:80.958667pt;}
.y2cd{bottom:83.822788pt;}
.y245{bottom:83.827457pt;}
.y275{bottom:83.827792pt;}
.y1ff{bottom:84.114564pt;}
.yea{bottom:84.911435pt;}
.y197{bottom:86.515605pt;}
.ya4{bottom:86.635320pt;}
.y21b{bottom:87.026025pt;}
.y17f{bottom:87.442717pt;}
.y1dc{bottom:87.578125pt;}
.ye4{bottom:88.234112pt;}
.y10f{bottom:89.213555pt;}
.y156{bottom:90.046878pt;}
.y13d{bottom:90.630195pt;}
.ydb{bottom:92.630207pt;}
.y48{bottom:93.958328pt;}
.y79{bottom:94.119787pt;}
.y1cd{bottom:95.567710pt;}
.y6d{bottom:96.234371pt;}
.y21c{bottom:96.917333pt;}
.y244{bottom:99.785792pt;}
.y292{bottom:99.786121pt;}
.y274{bottom:99.786123pt;}
.y2cc{bottom:99.786333pt;}
.y1fe{bottom:100.916652pt;}
.y2be{bottom:100.942696pt;}
.ye9{bottom:101.713523pt;}
.y21a{bottom:102.984360pt;}
.y196{bottom:103.317693pt;}
.ya3{bottom:103.437408pt;}
.y17e{bottom:104.239593pt;}
.y1db{bottom:104.380203pt;}
.y10d{bottom:105.213552pt;}
.y155{bottom:106.848962pt;}
.y13c{bottom:107.432283pt;}
.yda{bottom:107.562503pt;}
.y47{bottom:110.755204pt;}
.y78{bottom:110.916660pt;}
.y6c{bottom:113.036444pt;}
.ye3{bottom:114.494528pt;}
.y243{bottom:115.744125pt;}
.y291{bottom:115.744457pt;}
.y273{bottom:115.744459pt;}
.y2cb{bottom:115.744665pt;}
.y2bd{bottom:116.906241pt;}
.y1fd{bottom:117.713532pt;}
.ye8{bottom:118.515611pt;}
.y1a7{bottom:118.921873pt;}
.y219{bottom:118.942696pt;}
.y1cc{bottom:119.369792pt;}
.y195{bottom:120.114573pt;}
.ya2{bottom:120.234288pt;}
.y1da{bottom:121.177059pt;}
.y10e{bottom:121.213550pt;}
.y13b{bottom:124.229163pt;}
.ydd{bottom:125.494792pt;}
.yd9{bottom:126.494792pt;}
.y46{bottom:127.557283pt;}
.y77{bottom:127.718748pt;}
.y17d{bottom:128.041675pt;}
.y1c{bottom:128.265611pt;}
.y6b{bottom:129.838532pt;}
.y154{bottom:130.651044pt;}
.y272{bottom:131.702792pt;}
.y2ca{bottom:131.703000pt;}
.y242{bottom:131.707615pt;}
.y2bc{bottom:132.864576pt;}
.y1a6{bottom:133.854168pt;}
.y1fc{bottom:134.515620pt;}
.y218{bottom:134.906241pt;}
.ye7{bottom:135.312491pt;}
.y1cb{bottom:136.166668pt;}
.y194{bottom:136.916661pt;}
.ya1{bottom:137.036376pt;}
.y1d9{bottom:137.979147pt;}
.y13a{bottom:141.031245pt;}
.yc2{bottom:141.437497pt;}
.y45{bottom:144.354163pt;}
.y76{bottom:144.515628pt;}
.y17c{bottom:144.838551pt;}
.y1b{bottom:145.067699pt;}
.y153{bottom:147.447920pt;}
.y241{bottom:147.665950pt;}
.y2b4{bottom:147.666000pt;}
.y290{bottom:147.666326pt;}
.y271{bottom:147.666331pt;}
.y2c9{bottom:147.666541pt;}
.y1a5{bottom:148.791669pt;}
.y2bb{bottom:148.822912pt;}
.ye2{bottom:150.036200pt;}
.y10c{bottom:150.213549pt;}
.y217{bottom:150.864576pt;}
.y1fb{bottom:151.317708pt;}
.ye6{bottom:152.114579pt;}
.y193{bottom:153.713541pt;}
.ya0{bottom:153.838464pt;}
.y1d8{bottom:154.776027pt;}
.yc1{bottom:156.369792pt;}
.y139{bottom:157.828096pt;}
.y6a{bottom:158.635412pt;}
.y1ca{bottom:159.968750pt;}
.y44{bottom:161.156245pt;}
.y1a{bottom:161.869787pt;}
.y240{bottom:163.624286pt;}
.y2b3{bottom:163.624329pt;}
.y28f{bottom:163.624661pt;}
.y270{bottom:163.624667pt;}
.y2c8{bottom:163.624866pt;}
.y2ba{bottom:164.786457pt;}
.y10a{bottom:166.213546pt;}
.y1a8{bottom:166.723959pt;}
.y216{bottom:166.822912pt;}
.ye1{bottom:166.838288pt;}
.y1a4{bottom:167.723959pt;}
.y1fa{bottom:168.114564pt;}
.y17b{bottom:168.640633pt;}
.ye5{bottom:168.911459pt;}
.y9f{bottom:170.635344pt;}
.y152{bottom:171.250002pt;}
.yc0{bottom:171.302083pt;}
.y1d7{bottom:171.578115pt;}
.y138{bottom:174.635392pt;}
.y69{bottom:175.437480pt;}
.y1c9{bottom:176.770834pt;}
.y43{bottom:177.958315pt;}
.y19{bottom:178.666667pt;}
.y26f{bottom:179.582996pt;}
.y2c7{bottom:179.583202pt;}
.y23f{bottom:179.587831pt;}
.y2b2{bottom:179.587875pt;}
.y2b9{bottom:180.744792pt;}
.y7e{bottom:181.848953pt;}
.y10b{bottom:182.213544pt;}
.y215{bottom:182.786457pt;}
.ye0{bottom:183.635168pt;}
.y1f9{bottom:184.916652pt;}
.y17a{bottom:185.442717pt;}
.ybf{bottom:186.239579pt;}
.y9e{bottom:187.437432pt;}
.y1d6{bottom:188.380203pt;}
.y137{bottom:191.437480pt;}
.y68{bottom:192.234360pt;}
.y42{bottom:194.755195pt;}
.y151{bottom:195.046877pt;}
.y23e{bottom:195.546166pt;}
.y2b1{bottom:195.546200pt;}
.y26e{bottom:195.546541pt;}
.y2c6{bottom:195.546747pt;}
.y2b8{bottom:196.703125pt;}
.y7d{bottom:196.781248pt;}
.y214{bottom:198.744792pt;}
.y1c8{bottom:200.567709pt;}
.ybe{bottom:201.171875pt;}
.y1f8{bottom:201.713532pt;}
.y179{bottom:202.239593pt;}
.y9d{bottom:204.234312pt;}
.y1d5{bottom:205.177083pt;}
.y136{bottom:208.234360pt;}
.y67{bottom:209.036448pt;}
.y192{bottom:209.239591pt;}
.ydf{bottom:209.895584pt;}
.y109{bottom:211.213543pt;}
.y23d{bottom:211.504501pt;}
.y2b0{bottom:211.504535pt;}
.y26d{bottom:211.504875pt;}
.y2c5{bottom:211.505082pt;}
.y41{bottom:211.557283pt;}
.y7c{bottom:211.713544pt;}
.y18{bottom:212.338541pt;}
.y2b7{bottom:212.661453pt;}
.y213{bottom:214.703125pt;}
.ybd{bottom:216.104167pt;}
.y1c7{bottom:217.369792pt;}
.y1f7{bottom:218.515620pt;}
.y150{bottom:218.848959pt;}
.y108{bottom:219.213541pt;}
.y9c{bottom:221.036400pt;}
.y135{bottom:225.036448pt;}
.y66{bottom:225.838536pt;}
.y178{bottom:226.041675pt;}
.y26c{bottom:227.463202pt;}
.y2c4{bottom:227.463417pt;}
.y23c{bottom:227.468047pt;}
.y2af{bottom:227.468080pt;}
.y40{bottom:228.354163pt;}
.y2b6{bottom:228.624998pt;}
.y7f{bottom:229.645833pt;}
.y7b{bottom:230.645833pt;}
.y212{bottom:230.661455pt;}
.y191{bottom:233.041674pt;}
.y1f6{bottom:235.317704pt;}
.y14f{bottom:235.651043pt;}
.y9b{bottom:237.838488pt;}
.y1c6{bottom:241.166667pt;}
.ybc{bottom:241.369792pt;}
.y134{bottom:241.838536pt;}
.y1e0{bottom:242.505206pt;}
.y65{bottom:242.635416pt;}
.y177{bottom:242.838551pt;}
.y23b{bottom:243.426382pt;}
.y2ae{bottom:243.426415pt;}
.y26b{bottom:243.426747pt;}
.y2c3{bottom:243.426959pt;}
.y2b5{bottom:244.583333pt;}
.y3f{bottom:245.156245pt;}
.y211{bottom:246.625000pt;}
.y190{bottom:249.838549pt;}
.y1f5{bottom:252.114584pt;}
.y9a{bottom:254.635368pt;}
.y1df{bottom:257.442707pt;}
.y17{bottom:258.109356pt;}
.y133{bottom:258.635407pt;}
.y23a{bottom:259.384717pt;}
.y2ad{bottom:259.384751pt;}
.y26a{bottom:259.385083pt;}
.y2c2{bottom:259.385286pt;}
.y14e{bottom:259.447917pt;}
.y3e{bottom:261.958328pt;}
.y210{bottom:262.583333pt;}
.y107{bottom:265.567708pt;}
.y176{bottom:266.640633pt;}
.y1f4{bottom:268.916657pt;}
.ybb{bottom:269.265625pt;}
.y64{bottom:269.885416pt;}
.y99{bottom:271.437456pt;}
.y1de{bottom:272.375003pt;}
.y18f{bottom:273.640632pt;}
.y16{bottom:274.906236pt;}
.y28e{bottom:275.343398pt;}
.y269{bottom:275.343417pt;}
.y2c1{bottom:275.343621pt;}
.y239{bottom:275.348262pt;}
.y2ac{bottom:275.348288pt;}
.y132{bottom:275.437495pt;}
.y1cf{bottom:275.572919pt;}
.y14d{bottom:276.250001pt;}
.y20f{bottom:278.541661pt;}
.y3d{bottom:278.755208pt;}
.y175{bottom:283.442717pt;}
.y1f3{bottom:285.713537pt;}
.y98{bottom:288.234336pt;}
.y1e1{bottom:290.307292pt;}
.y18e{bottom:290.442715pt;}
.y238{bottom:291.306598pt;}
.y2ab{bottom:291.306623pt;}
.y268{bottom:291.306943pt;}
.y2c0{bottom:291.307167pt;}
.y1dd{bottom:291.307292pt;}
.y15{bottom:291.708324pt;}
.y131{bottom:292.234375pt;}
.y20e{bottom:294.505206pt;}
.y1ce{bottom:294.505208pt;}
.y3c{bottom:295.557283pt;}
.yba{bottom:298.687500pt;}
.y14c{bottom:300.046876pt;}
.y1f2{bottom:302.515625pt;}
.y97{bottom:305.036424pt;}
.y174{bottom:307.239591pt;}
.y237{bottom:307.264933pt;}
.y2aa{bottom:307.264959pt;}
.y267{bottom:307.265278pt;}
.y14{bottom:308.505204pt;}
.y130{bottom:309.036424pt;}
.y106{bottom:309.484375pt;}
.y20d{bottom:310.463541pt;}
.y3b{bottom:312.354163pt;}
.y18d{bottom:314.239590pt;}
.y14b{bottom:316.848959pt;}
.y63{bottom:319.317660pt;}
.y1f1{bottom:319.317704pt;}
.y96{bottom:321.838512pt;}
.y266{bottom:323.223614pt;}
.y236{bottom:323.228478pt;}
.y2a9{bottom:323.228496pt;}
.y13{bottom:325.307292pt;}
.y12f{bottom:325.838512pt;}
.y20c{bottom:326.421871pt;}
.y1c5{bottom:329.036444pt;}
.y3a{bottom:329.156245pt;}
.y173{bottom:331.041673pt;}
.y62{bottom:336.114540pt;}
.y1f0{bottom:336.114584pt;}
.yed{bottom:336.640626pt;}
.y18c{bottom:338.041672pt;}
.y95{bottom:338.635392pt;}
.y235{bottom:339.186813pt;}
.y2a8{bottom:339.186831pt;}
.y265{bottom:339.187159pt;}
.y14a{bottom:340.651041pt;}
.y20b{bottom:342.385416pt;}
.y12e{bottom:342.635392pt;}
.y1c4{bottom:345.838532pt;}
.y39{bottom:345.958328pt;}
.y172{bottom:347.838549pt;}
.yb9{bottom:348.114449pt;}
.yec{bottom:351.578127pt;}
.y61{bottom:352.916628pt;}
.y1ef{bottom:352.916637pt;}
.y18b{bottom:354.838548pt;}
.y234{bottom:355.145149pt;}
.y2a7{bottom:355.145167pt;}
.y264{bottom:355.145494pt;}
.y94{bottom:355.437480pt;}
.y149{bottom:357.447917pt;}
.y20a{bottom:358.343745pt;}
.y105{bottom:358.916648pt;}
.y12{bottom:358.979167pt;}
.y12d{bottom:359.437480pt;}
.y1c3{bottom:362.635412pt;}
.y38{bottom:362.755204pt;}
.yb8{bottom:364.916537pt;}
.yee{bottom:369.510416pt;}
.y60{bottom:369.713508pt;}
.y1ee{bottom:369.713517pt;}
.yeb{bottom:370.510416pt;}
.y263{bottom:371.103829pt;}
.y233{bottom:371.108694pt;}
.y2a6{bottom:371.108704pt;}
.y171{bottom:371.640632pt;}
.y93{bottom:372.234360pt;}
.y209{bottom:374.302080pt;}
.y12c{bottom:376.234360pt;}
.y18a{bottom:378.640630pt;}
.y1c2{bottom:379.437476pt;}
.y37{bottom:379.557287pt;}
.y148{bottom:381.250000pt;}
.yb7{bottom:381.713417pt;}
.y104{bottom:385.177064pt;}
.y5f{bottom:386.515596pt;}
.y1ed{bottom:386.515605pt;}
.y232{bottom:387.067029pt;}
.y2a5{bottom:387.067039pt;}
.y262{bottom:387.067375pt;}
.y92{bottom:389.036448pt;}
.y208{bottom:390.265625pt;}
.y12b{bottom:393.036448pt;}
.y11{bottom:394.317708pt;}
.y170{bottom:395.442714pt;}
.y1c1{bottom:396.234356pt;}
.y36{bottom:396.354163pt;}
.y147{bottom:398.046875pt;}
.yb6{bottom:398.515505pt;}
.y231{bottom:403.025364pt;}
.y2a4{bottom:403.025375pt;}
.y261{bottom:403.025706pt;}
.y28d{bottom:403.025708pt;}
.y5e{bottom:403.317684pt;}
.y1ec{bottom:403.317693pt;}
.y91{bottom:405.838536pt;}
.y12a{bottom:409.838536pt;}
.y16f{bottom:412.239590pt;}
.y1c0{bottom:413.036444pt;}
.y35{bottom:413.156245pt;}
.yb5{bottom:415.317593pt;}
.y28c{bottom:418.984039pt;}
.y260{bottom:418.984041pt;}
.y230{bottom:418.988910pt;}
.y2a3{bottom:418.988917pt;}
.y189{bottom:419.239588pt;}
.y5d{bottom:420.114564pt;}
.y1eb{bottom:420.114573pt;}
.y103{bottom:420.713528pt;}
.y146{bottom:421.848958pt;}
.y90{bottom:422.635416pt;}
.y207{bottom:423.604167pt;}
.y129{bottom:426.635416pt;}
.y1bf{bottom:429.838532pt;}
.y34{bottom:429.958324pt;}
.yb4{bottom:432.114473pt;}
.y22f{bottom:434.947245pt;}
.y2a2{bottom:434.947249pt;}
.y25f{bottom:434.947576pt;}
.y28b{bottom:434.947584pt;}
.y16e{bottom:436.041672pt;}
.y5c{bottom:436.916652pt;}
.y1ea{bottom:436.916661pt;}
.y102{bottom:437.515616pt;}
.y145{bottom:438.651041pt;}
.y128{bottom:443.437461pt;}
.y1be{bottom:446.635412pt;}
.y33{bottom:446.755204pt;}
.yb3{bottom:448.916561pt;}
.y8f{bottom:449.885416pt;}
.y22e{bottom:450.905580pt;}
.y2a1{bottom:450.905584pt;}
.y25e{bottom:450.905912pt;}
.y28a{bottom:450.905917pt;}
.y16d{bottom:452.838548pt;}
.y5b{bottom:453.713532pt;}
.y1e9{bottom:453.713537pt;}
.y101{bottom:454.317704pt;}
.y10{bottom:455.739574pt;}
.y112{bottom:458.817708pt;}
.y188{bottom:459.838546pt;}
.y127{bottom:460.234341pt;}
.y1bd{bottom:463.437452pt;}
.y32{bottom:463.557287pt;}
.yb2{bottom:465.713441pt;}
.y289{bottom:466.864245pt;}
.y25d{bottom:466.864247pt;}
.y2a0{bottom:466.869120pt;}
.y22d{bottom:466.869125pt;}
.y1e8{bottom:470.515529pt;}
.y5a{bottom:470.515620pt;}
.yf{bottom:470.671865pt;}
.y100{bottom:471.114573pt;}
.y206{bottom:473.036448pt;}
.y15b{bottom:473.052077pt;}
.y16c{bottom:476.640630pt;}
.y126{bottom:477.036429pt;}
.y1bc{bottom:480.234332pt;}
.y31{bottom:480.354157pt;}
.yb1{bottom:482.515529pt;}
.y29f{bottom:482.827455pt;}
.y22c{bottom:482.827457pt;}
.y288{bottom:482.827790pt;}
.y25c{bottom:482.827792pt;}
.y187{bottom:483.640629pt;}
.ye{bottom:485.604155pt;}
.y1e7{bottom:487.317617pt;}
.y59{bottom:487.317636pt;}
.yff{bottom:487.916661pt;}
.y15a{bottom:487.984373pt;}
.y205{bottom:489.838536pt;}
.y111{bottom:492.416670pt;}
.y125{bottom:493.838517pt;}
.y1bb{bottom:497.036420pt;}
.y30{bottom:497.156245pt;}
.y29e{bottom:498.785790pt;}
.y22b{bottom:498.785792pt;}
.y25b{bottom:498.786123pt;}
.y287{bottom:498.786125pt;}
.yb0{bottom:499.317617pt;}
.y8e{bottom:499.317708pt;}
.y16b{bottom:500.442712pt;}
.y159{bottom:502.921874pt;}
.y1e6{bottom:504.114497pt;}
.y58{bottom:504.114516pt;}
.yd{bottom:504.536451pt;}
.yfe{bottom:504.713504pt;}
.yd8{bottom:505.916619pt;}
.y204{bottom:506.635416pt;}
.y186{bottom:507.442711pt;}
.y110{bottom:509.213541pt;}
.y124{bottom:510.635397pt;}
.y1ba{bottom:513.838508pt;}
.y2f{bottom:513.958328pt;}
.y22a{bottom:514.744112pt;}
.y29d{bottom:514.744125pt;}
.y286{bottom:514.744443pt;}
.y25a{bottom:514.744459pt;}
.yaf{bottom:516.114497pt;}
.y8d{bottom:516.114569pt;}
.y16a{bottom:517.239588pt;}
.y158{bottom:517.854169pt;}
.y1e5{bottom:520.916585pt;}
.y57{bottom:520.916604pt;}
.y1a3{bottom:520.916648pt;}
.yfd{bottom:521.515592pt;}
.yd7{bottom:522.713499pt;}
.yc{bottom:523.473955pt;}
.y2bf{bottom:527.838667pt;}
.y1b9{bottom:530.635388pt;}
.y285{bottom:530.702778pt;}
.y259{bottom:530.702792pt;}
.y229{bottom:530.707657pt;}
.y29c{bottom:530.707663pt;}
.y2e{bottom:530.755204pt;}
.y185{bottom:531.239586pt;}
.yae{bottom:532.916585pt;}
.y8c{bottom:532.916657pt;}
.y203{bottom:533.885416pt;}
.y169{bottom:534.041672pt;}
.y157{bottom:536.786459pt;}
.y1e4{bottom:537.713465pt;}
.y56{bottom:537.713484pt;}
.y1a2{bottom:537.713528pt;}
.yfc{bottom:538.317680pt;}
.y123{bottom:539.437485pt;}
.yd6{bottom:539.515587pt;}
.yb{bottom:542.406251pt;}
.y228{bottom:546.665992pt;}
.y29b{bottom:546.665998pt;}
.y258{bottom:546.666311pt;}
.y284{bottom:546.666324pt;}
.y1b8{bottom:547.437476pt;}
.y2d{bottom:547.557292pt;}
.y184{bottom:548.041669pt;}
.yad{bottom:549.713465pt;}
.y8b{bottom:549.713537pt;}
.y1e3{bottom:554.515553pt;}
.y55{bottom:554.515572pt;}
.y1a1{bottom:554.515616pt;}
.yfb{bottom:555.114560pt;}
.y122{bottom:556.234365pt;}
.yd5{bottom:556.317675pt;}
.y168{bottom:557.838546pt;}
.y227{bottom:562.624328pt;}
.y29a{bottom:562.624333pt;}
.y257{bottom:562.624647pt;}
.y283{bottom:562.624659pt;}
.y1b7{bottom:564.234356pt;}
.y2c{bottom:564.354157pt;}
.yac{bottom:566.515553pt;}
.y8a{bottom:566.515605pt;}
.y1e2{bottom:571.317641pt;}
.y54{bottom:571.317660pt;}
.y144{bottom:571.317689pt;}
.y1a0{bottom:571.317704pt;}
.y183{bottom:571.838544pt;}
.yfa{bottom:571.916648pt;}
.y121{bottom:573.036453pt;}
.yd4{bottom:573.114555pt;}
.y256{bottom:578.582982pt;}
.y282{bottom:578.582994pt;}
.y299{bottom:578.587867pt;}
.y226{bottom:578.587873pt;}
.y1b6{bottom:581.036444pt;}
.y2b{bottom:581.156245pt;}
.y167{bottom:581.640629pt;}
.yab{bottom:583.317641pt;}
.y89{bottom:583.317693pt;}
.y202{bottom:583.317704pt;}
.ya{bottom:587.072921pt;}
.y19f{bottom:588.114521pt;}
.y53{bottom:588.114540pt;}
.y143{bottom:588.114569pt;}
.y182{bottom:588.640627pt;}
.yf9{bottom:588.713528pt;}
.y120{bottom:589.838541pt;}
.yd3{bottom:589.916643pt;}
.y298{bottom:594.546202pt;}
.y225{bottom:594.546208pt;}
.y255{bottom:594.546527pt;}
.y281{bottom:594.546539pt;}
.y1b5{bottom:597.838532pt;}
.y2a{bottom:597.958333pt;}
.y9{bottom:598.833333pt;}
.yaa{bottom:600.114521pt;}
.y88{bottom:600.114573pt;}
.y201{bottom:600.114579pt;}
.y19e{bottom:604.916609pt;}
.y52{bottom:604.916628pt;}
.y142{bottom:604.916657pt;}
.y166{bottom:605.442711pt;}
.yf8{bottom:605.515616pt;}
.y11f{bottom:606.635416pt;}
.yd2{bottom:606.713523pt;}
.y297{bottom:610.504537pt;}
.y224{bottom:610.504541pt;}
.y254{bottom:610.504862pt;}
.y280{bottom:610.504875pt;}
.ycd{bottom:610.988633pt;}
.y1b4{bottom:614.635412pt;}
.ya9{bottom:616.916609pt;}
.y200{bottom:616.916652pt;}
.y87{bottom:616.916661pt;}
.y8{bottom:617.463541pt;}
.y1e{bottom:621.463539pt;}
.y19d{bottom:621.713489pt;}
.y51{bottom:621.713508pt;}
.yf7{bottom:622.317704pt;}
.yd1{bottom:623.515611pt;}
.y29{bottom:625.203125pt;}
.y27f{bottom:626.463190pt;}
.y253{bottom:626.463198pt;}
.y223{bottom:626.468074pt;}
.y296{bottom:626.468083pt;}
.ycc{bottom:627.785513pt;}
.y165{bottom:629.239585pt;}
.y1b3{bottom:631.437461pt;}
.ya8{bottom:633.713489pt;}
.y86{bottom:633.713532pt;}
.y141{bottom:633.713537pt;}
.y11e{bottom:633.885416pt;}
.y7{bottom:634.531251pt;}
.y19c{bottom:638.515577pt;}
.y50{bottom:638.515596pt;}
.y1d{bottom:638.531251pt;}
.yf6{bottom:639.114573pt;}
.yd0{bottom:640.317699pt;}
.y222{bottom:642.426410pt;}
.y27e{bottom:642.426735pt;}
.y252{bottom:642.426743pt;}
.ycb{bottom:644.587601pt;}
.y164{bottom:646.041669pt;}
.y1b2{bottom:648.234341pt;}
.ya7{bottom:650.515577pt;}
.y85{bottom:650.515620pt;}
.y140{bottom:650.515625pt;}
.y19b{bottom:655.317665pt;}
.y4f{bottom:655.317684pt;}
.y75{bottom:655.317689pt;}
.y1d4{bottom:655.838546pt;}
.yf5{bottom:655.916661pt;}
.ycf{bottom:657.114579pt;}
.y221{bottom:658.384745pt;}
.y27d{bottom:658.385070pt;}
.y251{bottom:658.385078pt;}
.yca{bottom:661.389689pt;}
.y1b1{bottom:665.036429pt;}
.ya6{bottom:667.317665pt;}
.y84{bottom:667.317704pt;}
.y163{bottom:669.838544pt;}
.y19a{bottom:672.114545pt;}
.y74{bottom:672.114569pt;}
.y6{bottom:672.140627pt;}
.yf4{bottom:672.713537pt;}
.yce{bottom:673.916667pt;}
.y27c{bottom:674.343406pt;}
.y250{bottom:674.343413pt;}
.y220{bottom:674.348290pt;}
.y28{bottom:674.635416pt;}
.yc9{bottom:678.186569pt;}
.y1d3{bottom:679.640629pt;}
.y1b0{bottom:681.838517pt;}
.ya5{bottom:684.114545pt;}
.y4e{bottom:684.114564pt;}
.y83{bottom:684.114579pt;}
.y13f{bottom:684.114584pt;}
.y181{bottom:686.640627pt;}
.y199{bottom:688.916633pt;}
.y73{bottom:688.916657pt;}
.yf3{bottom:689.515620pt;}
.y21f{bottom:690.306625pt;}
.y27b{bottom:690.306951pt;}
.y24f{bottom:690.306959pt;}
.y11c{bottom:690.380218pt;}
.y162{bottom:693.640626pt;}
.yc8{bottom:694.988657pt;}
.y11b{bottom:698.380216pt;}
.y1af{bottom:698.635397pt;}
.y82{bottom:700.916633pt;}
.y4d{bottom:700.916652pt;}
.y27{bottom:701.885416pt;}
.y1d2{bottom:703.442711pt;}
.y5{bottom:705.520828pt;}
.y198{bottom:705.713513pt;}
.y72{bottom:705.713537pt;}
.y295{bottom:706.264955pt;}
.y21e{bottom:706.264959pt;}
.y24e{bottom:706.265286pt;}
.yf2{bottom:706.317689pt;}
.y11d{bottom:706.380215pt;}
.y161{bottom:710.442709pt;}
.yc7{bottom:711.785537pt;}
.y1ae{bottom:715.437485pt;}
.y81{bottom:717.713513pt;}
.y4c{bottom:717.713532pt;}
.y24d{bottom:722.223621pt;}
.y21d{bottom:722.228500pt;}
.y71{bottom:722.515601pt;}
.yf1{bottom:723.114569pt;}
.y1d1{bottom:727.239585pt;}
.yc6{bottom:728.587625pt;}
.y1ad{bottom:732.234365pt;}
.y160{bottom:734.239584pt;}
.y80{bottom:734.515601pt;}
.y4b{bottom:734.515620pt;}
.y119{bottom:735.380214pt;}
.y24c{bottom:738.187167pt;}
.y4{bottom:738.906251pt;}
.y70{bottom:739.317689pt;}
.yf0{bottom:739.916657pt;}
.y118{bottom:743.380213pt;}
.y1ac{bottom:749.036453pt;}
.y180{bottom:751.041668pt;}
.y26{bottom:751.317689pt;}
.y13e{bottom:751.317708pt;}
.y11a{bottom:751.380212pt;}
.yc5{bottom:754.848041pt;}
.y6f{bottom:756.114569pt;}
.y15f{bottom:758.041666pt;}
.y1ab{bottom:765.838536pt;}
.yef{bottom:766.177073pt;}
.y25{bottom:768.114569pt;}
.y15e{bottom:774.838542pt;}
.y115{bottom:780.380211pt;}
.y1aa{bottom:782.635416pt;}
.y24{bottom:784.916657pt;}
.y117{bottom:788.380209pt;}
.y1d0{bottom:791.640626pt;}
.y113{bottom:796.380208pt;}
.y15d{bottom:798.640624pt;}
.y3{bottom:799.447917pt;}
.y23{bottom:801.713537pt;}
.y116{bottom:804.380207pt;}
.y1a9{bottom:809.885416pt;}
.y114{bottom:812.380205pt;}
.y15c{bottom:815.442708pt;}
.y22{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.yc3{bottom:866.427064pt;}
.y4a{bottom:866.427084pt;}
.hb{height:24.932359pt;}
.h23{height:27.178740pt;}
.h12{height:28.438367pt;}
.ha{height:28.687500pt;}
.h6{height:30.123276pt;}
.h1f{height:31.063447pt;}
.h24{height:31.459293pt;}
.hd{height:31.659632pt;}
.h16{height:31.659712pt;}
.h1e{height:32.273438pt;}
.h1{height:33.467583pt;}
.h7{height:33.467622pt;}
.h15{height:35.859375pt;}
.h1b{height:36.031665pt;}
.h5{height:38.251167pt;}
.h28{height:40.881088pt;}
.h2a{height:40.881143pt;}
.h2f{height:40.881150pt;}
.h2e{height:40.881161pt;}
.h30{height:40.881166pt;}
.h2d{height:40.881176pt;}
.h2b{height:40.881295pt;}
.h9{height:41.596640pt;}
.h14{height:42.711321pt;}
.h2{height:43.031250pt;}
.h22{height:43.031303pt;}
.h10{height:43.031309pt;}
.hc{height:43.031325pt;}
.hf{height:43.031330pt;}
.h11{height:43.031346pt;}
.h21{height:43.031367pt;}
.h13{height:43.031383pt;}
.h1a{height:43.031399pt;}
.h20{height:43.031405pt;}
.h27{height:43.031421pt;}
.h18{height:43.031442pt;}
.h25{height:43.031501pt;}
.he{height:43.031538pt;}
.h26{height:43.031634pt;}
.h8{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h1d{height:63.063442pt;}
.h1c{height:70.251161pt;}
.h31{height:303.240000pt;}
.h29{height:734.161333pt;}
.h2c{height:750.120000pt;}
.h19{height:750.401333pt;}
.h17{height:768.150667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x21{left:10.297416pt;}
.xe{left:20.000541pt;}
.x20{left:40.000541pt;}
.x3{left:69.921875pt;}
.x17{left:73.921875pt;}
.x9{left:76.921875pt;}
.x1e{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xb{left:89.921875pt;}
.xc{left:95.588541pt;}
.x10{left:96.921875pt;}
.x16{left:105.921869pt;}
.x1f{left:109.921874pt;}
.xa{left:122.921875pt;}
.x1{left:124.718749pt;}
.xd{left:129.921875pt;}
.x11{left:142.921875pt;}
.x8{left:143.812500pt;}
.x6{left:158.921875pt;}
.x1a{left:175.333333pt;}
.x7{left:205.921875pt;}
.x2{left:246.812500pt;}
.x1b{left:258.927089pt;}
.x18{left:281.500003pt;}
.x15{left:333.510413pt;}
.x1c{left:346.380211pt;}
.x19{left:359.500001pt;}
.x1d{left:464.270839pt;}
.x13{left:472.333326pt;}
.xf{left:532.699219pt;}
.x12{left:540.696289pt;}
.x14{left:545.703125pt;}
}




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