
    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_21fe9382ac20ac47b5e09c61.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_70f671069427a5d418c0f9d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_d210b0ea50542bf6a339b5d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_c0779bcf710491f7061acf4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_51a6fc3e5241331b8d301bbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.187000;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_c822bab1027e019912458c19.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;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_86ef0b07cf706a73815a6c86.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_66f7ea4086f0159dc8e42054.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006361;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_93613f815b5aa825927ea169.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090000;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_571e70d9e1f2406019afbfb3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.734000;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_b368fc3ca699da429da5ac83.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.883000;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_4aec455122ac0f1aeca21184.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;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_bb188891fcf7bdd28819c489.woff2')format("woff");}.fff{font-family:fff;line-height:0.750000;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:ff10;src:url('chunks/assets/font_8376aa98b63aa77f1ade8be1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m4{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,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);}
.v3{vertical-align:-14.628000px;}
.v2{vertical-align:-12.246000px;}
.v1{vertical-align:-9.528598px;}
.v4{vertical-align:-8.502000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.839976px;}
.ls14{letter-spacing:-0.629982px;}
.ls2{letter-spacing:-0.509994px;}
.ls1{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.030107px;}
.lsc{letter-spacing:0.032998px;}
.ls5{letter-spacing:0.042304px;}
.ls8{letter-spacing:0.047500px;}
.lsf{letter-spacing:0.052200px;}
.lsb{letter-spacing:0.053500px;}
.lsd{letter-spacing:0.149463px;}
.ls4{letter-spacing:3.186804px;}
.ls10{letter-spacing:11.235168px;}
.lse{letter-spacing:11.408566px;}
.ls3{letter-spacing:14.473630px;}
.ls7{letter-spacing:19.915266px;}
.ls9{letter-spacing:22.509342px;}
.ls6{letter-spacing:22.515342px;}
.lsa{letter-spacing:22.851342px;}
.ls12{letter-spacing:23.398525px;}
.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;}
}
.ws18{word-spacing:-50.999400px;}
.ws5c{word-spacing:-41.998800px;}
.ws1{word-spacing:-13.986000px;}
.ws3{word-spacing:-12.749850px;}
.ws5{word-spacing:-12.698851px;}
.ws4{word-spacing:-12.239856px;}
.ws13{word-spacing:-11.249850px;}
.ws39{word-spacing:-11.024853px;}
.ws57{word-spacing:-10.667695px;}
.ws58{word-spacing:-10.499700px;}
.ws59{word-spacing:-10.289706px;}
.ws5a{word-spacing:-10.079712px;}
.ws5b{word-spacing:-9.869718px;}
.ws5d{word-spacing:-9.659724px;}
.ws5e{word-spacing:-9.449730px;}
.ws7{word-spacing:-8.924850px;}
.ws17{word-spacing:-8.889151px;}
.ws14{word-spacing:-1.433083px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:2.568251px;}
.ws2{word-spacing:4.438800px;}
.ws56{word-spacing:4.444200px;}
.wsd{word-spacing:5.595895px;}
.ws8{word-spacing:5.680238px;}
.ws15{word-spacing:5.686659px;}
.ws1e{word-spacing:5.737422px;}
.ws20{word-spacing:5.745054px;}
.ws19{word-spacing:5.950195px;}
.ws6{word-spacing:8.412805px;}
.wsa{word-spacing:13.794251px;}
.wsc{word-spacing:14.136251px;}
.ws26{word-spacing:59.439801px;}
.ws1d{word-spacing:76.305302px;}
.ws11{word-spacing:76.646998px;}
.ws29{word-spacing:92.599765px;}
.ws2b{word-spacing:101.784143px;}
.ws2e{word-spacing:102.873128px;}
.ws2c{word-spacing:105.505593px;}
.ws2a{word-spacing:105.843089px;}
.ws2d{word-spacing:115.801456px;}
.wse{word-spacing:135.490106px;}
.ws1f{word-spacing:145.700186px;}
.ws9{word-spacing:149.780138px;}
.wsf{word-spacing:150.121834px;}
.ws30{word-spacing:153.168958px;}
.ws32{word-spacing:153.510953px;}
.ws1c{word-spacing:154.201786px;}
.ws21{word-spacing:156.925154px;}
.wsb{word-spacing:161.005106px;}
.ws34{word-spacing:162.353335px;}
.ws28{word-spacing:164.031813px;}
.ws35{word-spacing:171.213717px;}
.ws50{word-spacing:196.705877px;}
.ws4c{word-spacing:196.710377px;}
.ws4a{word-spacing:197.052373px;}
.ws36{word-spacing:197.385368px;}
.ws25{word-spacing:204.706771px;}
.ws48{word-spacing:205.894755px;}
.ws4e{word-spacing:215.097132px;}
.ws37{word-spacing:229.267443px;}
.ws31{word-spacing:229.604939px;}
.ws3d{word-spacing:229.946934px;}
.ws4d{word-spacing:231.724410px;}
.ws33{word-spacing:233.474887px;}
.ws3c{word-spacing:233.816882px;}
.ws24{word-spacing:243.658251px;}
.ws3b{word-spacing:253.513120px;}
.ws38{word-spacing:253.517620px;}
.ws23{word-spacing:259.418648px;}
.ws4f{word-spacing:273.141858px;}
.ws49{word-spacing:273.146358px;}
.ws52{word-spacing:273.483853px;}
.ws4b{word-spacing:276.674311px;}
.ws51{word-spacing:277.353802px;}
.ws22{word-spacing:290.834278px;}
.ws40{word-spacing:295.979054px;}
.ws2f{word-spacing:306.144298px;}
.ws1a{word-spacing:319.516341px;}
.ws3a{word-spacing:329.607105px;}
.ws55{word-spacing:339.178478px;}
.ws47{word-spacing:349.682486px;}
.ws44{word-spacing:351.175318px;}
.ws42{word-spacing:351.436314px;}
.ws45{word-spacing:351.859308px;}
.ws46{word-spacing:366.731610px;}
.ws41{word-spacing:376.895766px;}
.ws1b{word-spacing:399.116204px;}
.ws16{word-spacing:409.662880px;}
.ws27{word-spacing:447.870028px;}
.ws3e{word-spacing:453.859448px;}
.ws53{word-spacing:624.965167px;}
.ws54{word-spacing:701.059152px;}
.ws3f{word-spacing:714.324976px;}
.ws43{word-spacing:729.998267px;}
.ws12{word-spacing:1329.416660px;}
._1e{margin-left:-480.219913px;}
._20{margin-left:-468.976317px;}
._1f{margin-left:-390.598489px;}
._16{margin-left:-231.344890px;}
._23{margin-left:-226.798375px;}
._21{margin-left:-224.810455px;}
._15{margin-left:-220.807977px;}
._22{margin-left:-216.706547px;}
._17{margin-left:-206.699055px;}
._18{margin-left:-146.205080px;}
._2{margin-left:-4.968000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.080000px;}
._8{width:1.332000px;}
._7{width:3.331843px;}
._4{width:5.205557px;}
._5{width:6.350347px;}
._6{width:8.190552px;}
._9{width:9.276791px;}
._a{width:10.317179px;}
._e{width:11.495265px;}
._d{width:13.769838px;}
._f{width:14.851025px;}
._b{width:16.268809px;}
._c{width:17.370396px;}
._11{width:18.599481px;}
._12{width:19.604169px;}
._13{width:21.256550px;}
._14{width:22.312238px;}
._25{width:23.847319px;}
._24{width:24.994806px;}
._a0{width:26.121893px;}
._10{width:27.126581px;}
._81{width:62.243185px;}
._a1{width:82.073334px;}
._3c{width:86.882578px;}
._3d{width:88.341161px;}
._3e{width:99.708927px;}
._88{width:101.903753px;}
._41{width:103.008588px;}
._3f{width:108.587922px;}
._40{width:114.432454px;}
._4a{width:117.092939px;}
._48{width:125.615825px;}
._54{width:127.001807px;}
._4c{width:130.367762px;}
._4b{width:131.443247px;}
._43{width:132.557640px;}
._42{width:133.888725px;}
._50{width:135.623230px;}
._52{width:140.079094px;}
._51{width:145.816056px;}
._5b{width:151.956586px;}
._3b{width:156.904754px;}
._5a{width:164.200923px;}
._5e{width:172.914694px;}
._5f{width:174.300676px;}
._66{width:182.823562px;}
._6a{width:183.885548px;}
._46{width:188.187491px;}
._4e{width:189.771470px;}
._80{width:194.603511px;}
._53{width:197.322369px;}
._6c{width:199.639838px;}
._4d{width:202.204804px;}
._55{width:203.428788px;}
._89{width:208.783716px;}
._92{width:216.757610px;}
._93{width:217.887095px;}
._8e{width:226.364982px;}
._87{width:234.532373px;}
._9c{width:237.489558px;}
._8a{width:244.535739px;}
._95{width:251.834642px;}
._94{width:252.871369px;}
._30{width:254.908101px;}
._45{width:259.790536px;}
._8f{width:261.932508px;}
._90{width:262.935994px;}
._62{width:264.429974px;}
._5d{width:265.455961px;}
._39{width:268.173924px;}
._2b{width:273.213857px;}
._69{width:274.608839px;}
._29{width:276.620746px;}
._38{width:278.730784px;}
._67{width:282.326236px;}
._49{width:283.640218px;}
._27{width:285.780238px;}
._4f{width:289.130145px;}
._28{width:294.450136px;}
._91{width:295.970054px;}
._2c{width:298.787016px;}
._82{width:301.784701px;}
._26{width:306.853190px;}
._34{width:309.105379px;}
._44{width:313.384821px;}
._9a{width:316.827276px;}
._2f{width:318.170209px;}
._47{width:320.058233px;}
._7e{width:321.826709px;}
._7d{width:323.080304px;}
._99{width:325.989153px;}
._33{width:330.993087px;}
._9e{width:333.137670px;}
._36{width:337.455001px;}
._60{width:340.519460px;}
._2d{width:343.921414px;}
._64{width:345.536893px;}
._8b{width:349.159344px;}
._9b{width:351.445314px;}
._8d{width:353.078792px;}
._85{width:357.641731px;}
._78{width:363.348380px;}
._32{width:364.364642px;}
._9f{width:365.541738px;}
._35{width:366.794609px;}
._61{width:370.732057px;}
._2e{width:372.059539px;}
._84{width:376.388772px;}
._31{width:391.049286px;}
._8c{width:402.438634px;}
._77{width:406.583079px;}
._2a{width:407.879062px;}
._7c{width:409.539539px;}
._58{width:420.112657px;}
._68{width:421.828876px;}
._7f{width:423.376855px;}
._83{width:437.938661px;}
._76{width:442.686097px;}
._5c{width:457.670898px;}
._7b{width:458.996492px;}
._3a{width:464.938301px;}
._59{width:466.517780px;}
._37{width:475.108165px;}
._65{width:478.937614px;}
._63{width:528.297456px;}
._6b{width:567.325436px;}
._73{width:574.970834px;}
._56{width:577.265726px;}
._75{width:625.235163px;}
._86{width:664.347201px;}
._74{width:675.314996px;}
._57{width:677.612145px;}
._79{width:691.604778px;}
._1a{width:701.926188px;}
._1d{width:775.301485px;}
._9d{width:778.687617px;}
._1c{width:782.501389px;}
._7a{width:791.948941px;}
._6e{width:930.763090px;}
._19{width:942.811752px;}
._96{width:1144.046746px;}
._6d{width:1183.164724px;}
._1b{width:1388.724596px;}
._70{width:1844.844902px;}
._97{width:2027.245470px;}
._6f{width:2079.291776px;}
._72{width:2792.239770px;}
._98{width:2950.129164px;}
._71{width:3015.436794px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:27.996600px;}
.fsf{font-size:35.699400px;}
.fsb{font-size:35.995200px;}
.fse{font-size:39.000600px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:44.999400px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:50.999400px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:42.179400px;}
.ya1{bottom:42.187021px;}
.y5{bottom:66.525004px;}
.y23{bottom:67.597501px;}
.yd4{bottom:76.542614px;}
.y1e0{bottom:77.047893px;}
.y22e{bottom:77.049407px;}
.y26e{bottom:77.049967px;}
.ya0{bottom:77.054674px;}
.y6e{bottom:78.151904px;}
.y17f{bottom:81.469681px;}
.y1ae{bottom:82.573200px;}
.y247{bottom:82.573527px;}
.y1ee{bottom:82.574076px;}
.y1e1{bottom:82.574192px;}
.y152{bottom:82.744580px;}
.y1ac{bottom:84.018750px;}
.y22{bottom:84.097501px;}
.y318{bottom:87.601202px;}
.y19c{bottom:88.526510px;}
.y6d{bottom:90.907050px;}
.y108{bottom:93.544681px;}
.yd8{bottom:93.551705px;}
.yd3{bottom:94.570902px;}
.y1df{bottom:95.076181px;}
.y22d{bottom:95.077694px;}
.y26d{bottom:95.078255px;}
.y9f{bottom:95.082962px;}
.y4{bottom:97.125005px;}
.y17e{bottom:99.497969px;}
.y21e{bottom:99.921924px;}
.y317{bottom:101.121665px;}
.y151{bottom:102.728813px;}
.y2a0{bottom:103.328636px;}
.y2d1{bottom:103.753874px;}
.y19b{bottom:106.470649px;}
.y107{bottom:111.572969px;}
.y125{bottom:111.576331px;}
.yd7{bottom:111.579993px;}
.yd2{bottom:112.599190px;}
.y1de{bottom:113.104469px;}
.y22c{bottom:113.105982px;}
.y26c{bottom:113.106543px;}
.y9e{bottom:113.111250px;}
.y316{bottom:114.643179px;}
.y29f{bottom:116.765102px;}
.y2d0{bottom:117.275387px;}
.y17d{bottom:117.440833px;}
.y150{bottom:122.627548px;}
.y21d{bottom:124.073102px;}
.y19a{bottom:124.498937px;}
.y315{bottom:128.079645px;}
.y106{bottom:129.601257px;}
.y124{bottom:129.603343px;}
.y29e{bottom:130.285566px;}
.yd1{bottom:130.542054px;}
.y2cf{bottom:130.795851px;}
.y1dd{bottom:131.047333px;}
.y22b{bottom:131.048846px;}
.y26b{bottom:131.049407px;}
.y1b0{bottom:131.054114px;}
.y17c{bottom:135.469121px;}
.y32d{bottom:135.810070px;}
.y21{bottom:139.264499px;}
.y314{bottom:141.600109px;}
.y199{bottom:142.525950px;}
.y14f{bottom:142.527408px;}
.y29d{bottom:143.807079px;}
.y21c{bottom:144.057335px;}
.y2ce{bottom:144.232317px;}
.y105{bottom:147.544121px;}
.y123{bottom:147.547482px;}
.yd0{bottom:148.570342px;}
.y1dc{bottom:149.075621px;}
.y22a{bottom:149.077134px;}
.y26a{bottom:149.077694px;}
.y9d{bottom:149.082402px;}
.y17b{bottom:153.497408px;}
.y313{bottom:155.121622px;}
.y32c{bottom:156.814173px;}
.y29c{bottom:157.328593px;}
.y21b{bottom:157.494156px;}
.y2cd{bottom:157.752781px;}
.y198{bottom:160.469700px;}
.y14e{bottom:162.511641px;}
.y104{bottom:165.572408px;}
.y122{bottom:165.575770px;}
.ycf{bottom:166.598629px;}
.y1db{bottom:167.103908px;}
.y229{bottom:167.105422px;}
.y269{bottom:167.105982px;}
.y9c{bottom:167.110690px;}
.y312{bottom:168.643136px;}
.y29b{bottom:170.764009px;}
.y2cc{bottom:171.274295px;}
.y17a{bottom:171.440272px;}
.y21a{bottom:177.478390px;}
.y32b{bottom:177.818276px;}
.y311{bottom:182.078552px;}
.y14d{bottom:182.410376px;}
.y103{bottom:183.600696px;}
.y121{bottom:183.604058px;}
.y29a{bottom:184.285523px;}
.yce{bottom:184.541493px;}
.y2cb{bottom:184.795808px;}
.y1da{bottom:185.046772px;}
.y228{bottom:185.048286px;}
.y268{bottom:185.048846px;}
.y9b{bottom:185.053554px;}
.y179{bottom:189.468560px;}
.y310{bottom:195.600066px;}
.y14c{bottom:195.931571px;}
.y197{bottom:196.525500px;}
.y18{bottom:196.933500px;}
.y219{bottom:197.377124px;}
.y299{bottom:197.805987px;}
.y2ca{bottom:198.231224px;}
.y32a{bottom:198.823654px;}
.y102{bottom:201.543560px;}
.y120{bottom:201.546922px;}
.ycd{bottom:202.569781px;}
.y1d9{bottom:203.075060px;}
.y227{bottom:203.076574px;}
.y267{bottom:203.077134px;}
.y9a{bottom:203.081842px;}
.y5c{bottom:204.947589px;}
.y178{bottom:207.496848px;}
.y1ad{bottom:208.600084px;}
.y30f{bottom:209.120530px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y218{bottom:210.898319px;}
.y298{bottom:211.327500px;}
.y2c9{bottom:211.752738px;}
.y14b{bottom:215.830305px;}
.y243{bottom:218.975381px;}
.y24b{bottom:218.976833px;}
.y101{bottom:219.571848px;}
.y11f{bottom:219.575210px;}
.y329{bottom:219.827757px;}
.ycc{bottom:220.598069px;}
.y1d8{bottom:221.103348px;}
.y226{bottom:221.104862px;}
.y266{bottom:221.105422px;}
.y99{bottom:221.110129px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y30e{bottom:222.642043px;}
.y5b{bottom:222.975877px;}
.y297{bottom:224.763966px;}
.y2c8{bottom:225.274252px;}
.y177{bottom:225.440987px;}
.y242{bottom:228.839196px;}
.y14a{bottom:229.351500px;}
.y217{bottom:230.797054px;}
.y196{bottom:232.501482px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y30d{bottom:236.078509px;}
.y100{bottom:237.600136px;}
.y11e{bottom:237.603498px;}
.y296{bottom:238.284430px;}
.ycb{bottom:238.540933px;}
.y2c7{bottom:238.794715px;}
.y1d7{bottom:239.047487px;}
.y265{bottom:239.048286px;}
.y98{bottom:239.052993px;}
.y328{bottom:240.747711px;}
.y5a{bottom:240.918741px;}
.y1e4{bottom:242.276071px;}
.y176{bottom:243.468000px;}
.y149{bottom:249.251064px;}
.y30c{bottom:249.598973px;}
.y1ea{bottom:250.525586px;}
.y1f0{bottom:250.526462px;}
.y195{bottom:250.529770px;}
.y216{bottom:250.781287px;}
.y295{bottom:251.805944px;}
.y2c6{bottom:252.231181px;}
.yff{bottom:255.543000px;}
.y11d{bottom:255.546362px;}
.yca{bottom:256.569221px;}
.y1d6{bottom:257.074500px;}
.y225{bottom:257.076014px;}
.y97{bottom:257.081281px;}
.y59{bottom:258.947029px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1e3{bottom:260.303276px;}
.y175{bottom:261.497250px;}
.y327{bottom:261.751813px;}
.y30b{bottom:263.120487px;}
.y215{bottom:264.218108px;}
.y294{bottom:265.327457px;}
.y2c5{bottom:265.751645px;}
.y241{bottom:266.425754px;}
.y194{bottom:268.472634px;}
.y148{bottom:271.701000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yfe{bottom:273.571500px;}
.y11c{bottom:273.574650px;}
.y1d5{bottom:275.101500px;}
.y224{bottom:275.104301px;}
.y264{bottom:275.104862px;}
.y96{bottom:275.109569px;}
.y30a{bottom:276.642000px;}
.y58{bottom:276.975317px;}
.y293{bottom:278.762873px;}
.y2c4{bottom:279.273159px;}
.y326{bottom:282.755916px;}
.y214{bottom:284.202342px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y193{bottom:286.500922px;}
.y309{bottom:290.077416px;}
.y11b{bottom:291.602938px;}
.y292{bottom:292.284387px;}
.y1e2{bottom:292.532347px;}
.yc9{bottom:292.540373px;}
.y2c3{bottom:292.794672px;}
.y223{bottom:293.047165px;}
.y263{bottom:293.047726px;}
.y95{bottom:293.052433px;}
.y57{bottom:294.918181px;}
.y174{bottom:297.468000px;}
.y308{bottom:303.598930px;}
.y325{bottom:303.761294px;}
.y213{bottom:304.101076px;}
.y192{bottom:304.529210px;}
.y291{bottom:305.804851px;}
.y2c2{bottom:306.230089px;}
.y11a{bottom:309.545801px;}
.yfd{bottom:309.550315px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc8{bottom:310.568661px;}
.y1d4{bottom:311.075453px;}
.y262{bottom:311.076014px;}
.yd6{bottom:311.080721px;}
.y56{bottom:312.946469px;}
.y307{bottom:317.119394px;}
.y212{bottom:317.622271px;}
.y290{bottom:319.326364px;}
.y2c1{bottom:319.751602px;}
.y191{bottom:322.472074px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1e5{bottom:323.999481px;}
.y324{bottom:324.765397px;}
.y119{bottom:327.574089px;}
.yfc{bottom:327.578603px;}
.yc7{bottom:328.596949px;}
.y1d3{bottom:329.103741px;}
.y261{bottom:329.104301px;}
.y94{bottom:329.109009px;}
.y306{bottom:330.640907px;}
.y55{bottom:330.974757px;}
.y28f{bottom:332.762830px;}
.y35{bottom:332.776501px;}
.y2c0{bottom:333.273116px;}
.y173{bottom:333.441605px;}
.y146{bottom:335.140800px;}
.y211{bottom:337.522131px;}
.y190{bottom:340.500362px;}
.y305{bottom:344.077374px;}
.y147{bottom:344.664000px;}
.y323{bottom:345.769500px;}
.y28e{bottom:346.283294px;}
.yc6{bottom:346.541087px;}
.y2bf{bottom:346.793580px;}
.y1d2{bottom:347.046605px;}
.y260{bottom:347.047165px;}
.y93{bottom:347.051873px;}
.yf{bottom:348.133500px;}
.y54{bottom:348.917621px;}
.y172{bottom:351.469893px;}
.y145{bottom:354.274649px;}
.y210{bottom:357.506364px;}
.y304{bottom:357.597837px;}
.y28d{bottom:359.804808px;}
.y2be{bottom:360.230046px;}
.y118{bottom:363.545241px;}
.yc5{bottom:364.568100px;}
.y1d1{bottom:365.074893px;}
.y25f{bottom:365.075453px;}
.y92{bottom:365.080161px;}
.y53{bottom:366.945908px;}
.y171{bottom:369.498181px;}
.y20f{bottom:370.942060px;}
.y303{bottom:371.119351px;}
.y28c{bottom:373.326322px;}
.y2bd{bottom:373.750509px;}
.y18f{bottom:376.471514px;}
.y117{bottom:381.573529px;}
.yc4{bottom:382.596388px;}
.y144{bottom:383.102060px;}
.y1d0{bottom:383.103181px;}
.y25e{bottom:383.103741px;}
.yfb{bottom:383.108024px;}
.y91{bottom:383.108449px;}
.y302{bottom:384.640865px;}
.y52{bottom:384.974196px;}
.y322{bottom:384.974206px;}
.y28b{bottom:386.761738px;}
.ye{bottom:386.785499px;}
.y2bc{bottom:387.272023px;}
.y170{bottom:387.441045px;}
.y20e{bottom:390.926294px;}
.y18e{bottom:394.499801px;}
.y34{bottom:397.126501px;}
.y301{bottom:398.076281px;}
.y116{bottom:399.601817px;}
.y28a{bottom:400.283251px;}
.yc3{bottom:400.540527px;}
.y2bb{bottom:400.793537px;}
.y1cf{bottom:401.046045px;}
.y143{bottom:401.046199px;}
.y25d{bottom:401.046605px;}
.yfa{bottom:401.050888px;}
.y90{bottom:401.052587px;}
.y51{bottom:402.917060px;}
.y321{bottom:402.917143px;}
.y16f{bottom:405.469333px;}
.yd{bottom:408.044999px;}
.y20d{bottom:410.826153px;}
.y300{bottom:411.597794px;}
.y18d{bottom:412.528089px;}
.y289{bottom:413.803715px;}
.y2ba{bottom:414.228953px;}
.y320{bottom:416.438657px;}
.y115{bottom:417.544681px;}
.yc2{bottom:418.568815px;}
.y1ce{bottom:419.074333px;}
.y142{bottom:419.074487px;}
.y25c{bottom:419.074893px;}
.yf9{bottom:419.079176px;}
.y8f{bottom:419.079600px;}
.y50{bottom:420.945348px;}
.y16e{bottom:423.497621px;}
.y20c{bottom:424.347348px;}
.y2ff{bottom:425.118258px;}
.y245{bottom:425.791499px;}
.y2b9{bottom:427.750466px;}
.y31f{bottom:429.960171px;}
.y18c{bottom:430.470953px;}
.y244{bottom:433.019527px;}
.y1e6{bottom:434.550632px;}
.y114{bottom:435.572969px;}
.yc1{bottom:436.597103px;}
.y141{bottom:437.101500px;}
.y1cd{bottom:437.102621px;}
.y25b{bottom:437.103181px;}
.yf8{bottom:437.107464px;}
.y8e{bottom:437.107888px;}
.y2fe{bottom:438.639772px;}
.y4f{bottom:438.889487px;}
.y288{bottom:440.761695px;}
.y2b8{bottom:441.271980px;}
.y16d{bottom:441.441759px;}
.y1eb{bottom:442.799022px;}
.y31e{bottom:443.395587px;}
.y20b{bottom:444.246083px;}
.y18b{bottom:448.499241px;}
.y2fd{bottom:452.076238px;}
.y113{bottom:453.601257px;}
.y287{bottom:454.282158px;}
.yc0{bottom:454.539967px;}
.y2b7{bottom:454.792444px;}
.y140{bottom:455.046000px;}
.y1cc{bottom:455.046759px;}
.yf7{bottom:455.051603px;}
.y8d{bottom:455.052027px;}
.y4e{bottom:456.916500px;}
.y16c{bottom:459.468772px;}
.y31d{bottom:461.423572px;}
.y20a{bottom:464.230316px;}
.y33{bottom:464.407500px;}
.y2fc{bottom:465.596701px;}
.y18a{bottom:466.527529px;}
.y286{bottom:467.803672px;}
.y2b6{bottom:468.228910px;}
.y112{bottom:471.544121px;}
.ybf{bottom:472.568255px;}
.y1cb{bottom:473.073772px;}
.y25a{bottom:473.074333px;}
.yf6{bottom:473.078616px;}
.y8c{bottom:473.080315px;}
.y31c{bottom:474.945085px;}
.y4d{bottom:474.945600px;}
.y16b{bottom:477.497060px;}
.y209{bottom:477.667137px;}
.y2fb{bottom:479.118215px;}
.y285{bottom:481.325186px;}
.y2b5{bottom:481.749374px;}
.y189{bottom:484.470393px;}
.y31b{bottom:488.466599px;}
.y111{bottom:489.572408px;}
.ybe{bottom:490.596543px;}
.y1ca{bottom:491.102060px;}
.y259{bottom:491.102621px;}
.yf5{bottom:491.106904px;}
.y13f{bottom:491.107482px;}
.y8b{bottom:491.108603px;}
.y2fa{bottom:492.639729px;}
.y284{bottom:494.760602px;}
.y2b4{bottom:495.270887px;}
.y16a{bottom:495.441199px;}
.y208{bottom:497.651371px;}
.y31a{bottom:501.902015px;}
.y188{bottom:502.498681px;}
.yc{bottom:502.864502px;}
.y2f9{bottom:506.075145px;}
.y110{bottom:507.600696px;}
.y283{bottom:508.282116px;}
.ybd{bottom:508.539407px;}
.y2b3{bottom:508.792401px;}
.y1c9{bottom:509.046199px;}
.y258{bottom:509.046759px;}
.y13e{bottom:509.050346px;}
.yf4{bottom:509.051043px;}
.y1af{bottom:509.051467px;}
.y169{bottom:513.469487px;}
.y1e7{bottom:516.272917px;}
.y207{bottom:517.550105px;}
.y4c{bottom:518.570850px;}
.y2f8{bottom:519.596659px;}
.y319{bottom:519.930000px;}
.y187{bottom:520.526969px;}
.yb{bottom:520.864502px;}
.y2b2{bottom:522.227817px;}
.y10f{bottom:525.543560px;}
.y32{bottom:525.826501px;}
.ybc{bottom:526.567694px;}
.y257{bottom:527.073772px;}
.y1c8{bottom:527.074487px;}
.y13d{bottom:527.078634px;}
.yf3{bottom:527.079331px;}
.y8a{bottom:527.079755px;}
.y206{bottom:531.071300px;}
.y168{bottom:531.496500px;}
.y2f7{bottom:533.117122px;}
.y282{bottom:535.324093px;}
.y2b1{bottom:535.749331px;}
.y186{bottom:538.469833px;}
.ya{bottom:538.864499px;}
.y10e{bottom:543.571848px;}
.ybb{bottom:544.595982px;}
.y1c7{bottom:545.101500px;}
.y256{bottom:545.102060px;}
.yf2{bottom:545.106343px;}
.y13c{bottom:545.106922px;}
.y89{bottom:545.108043px;}
.y2f6{bottom:546.638636px;}
.y281{bottom:548.760559px;}
.y2b0{bottom:549.270844px;}
.y167{bottom:549.439500px;}
.y205{bottom:550.970035px;}
.y4b{bottom:553.012050px;}
.y185{bottom:556.498121px;}
.y9{bottom:556.864499px;}
.y2f5{bottom:560.075102px;}
.y10d{bottom:561.600136px;}
.yba{bottom:562.538846px;}
.y2af{bottom:562.791308px;}
.y1c6{bottom:563.046000px;}
.y255{bottom:563.046199px;}
.y13b{bottom:563.049786px;}
.yf1{bottom:563.050482px;}
.y88{bottom:563.050907px;}
.y204{bottom:570.954268px;}
.y4a{bottom:571.039950px;}
.y2f4{bottom:573.595566px;}
.y184{bottom:574.526408px;}
.y280{bottom:575.802536px;}
.y2ae{bottom:576.227774px;}
.y10c{bottom:579.543000px;}
.yb9{bottom:580.567134px;}
.y254{bottom:581.074487px;}
.y13a{bottom:581.078074px;}
.yf0{bottom:581.078770px;}
.y87{bottom:581.079194px;}
.y166{bottom:585.497060px;}
.y2f3{bottom:587.117079px;}
.y27f{bottom:589.323000px;}
.y2ad{bottom:589.747187px;}
.y203{bottom:590.854128px;}
.y183{bottom:592.469272px;}
.y31{bottom:593.107500px;}
.y27e{bottom:594.000000px;}
.y10b{bottom:597.571500px;}
.yb8{bottom:598.595422px;}
.y253{bottom:599.101500px;}
.y222{bottom:599.102060px;}
.y139{bottom:599.106362px;}
.y1c5{bottom:599.106710px;}
.yef{bottom:599.107058px;}
.y86{bottom:599.107482px;}
.y2f2{bottom:600.638593px;}
.y49{bottom:601.824000px;}
.y27d{bottom:602.759036px;}
.y2ac{bottom:603.268702px;}
.y165{bottom:603.441199px;}
.y202{bottom:610.752863px;}
.y2f1{bottom:614.074009px;}
.y27c{bottom:616.279500px;}
.y2ab{bottom:616.790215px;}
.y252{bottom:617.046000px;}
.y221{bottom:617.046199px;}
.y138{bottom:617.049226px;}
.y1c4{bottom:617.049574px;}
.yee{bottom:617.049922px;}
.y85{bottom:617.050346px;}
.y48{bottom:618.321000px;}
.y27b{bottom:620.958042px;}
.y164{bottom:621.469487px;}
.y30{bottom:627.457501px;}
.y2f0{bottom:627.595523px;}
.y182{bottom:628.525848px;}
.y279{bottom:629.801570px;}
.y2aa{bottom:630.225631px;}
.y201{bottom:630.737096px;}
.y10a{bottom:633.547377px;}
.y27a{bottom:634.479000px;}
.yb7{bottom:634.566574px;}
.y220{bottom:635.074487px;}
.y137{bottom:635.077514px;}
.y1c3{bottom:635.077862px;}
.y84{bottom:635.078634px;}
.y248{bottom:637.625376px;}
.y163{bottom:639.496500px;}
.y2ef{bottom:641.115987px;}
.y2f{bottom:642.457501px;}
.y278{bottom:643.323084px;}
.y2a9{bottom:643.747145px;}
.y8{bottom:645.510000px;}
.y181{bottom:646.469987px;}
.y246{bottom:647.064000px;}
.y47{bottom:649.023000px;}
.y200{bottom:650.636956px;}
.y109{bottom:651.575665px;}
.yb6{bottom:652.594862px;}
.y21f{bottom:653.101500px;}
.y251{bottom:653.103696px;}
.y136{bottom:653.105801px;}
.y1c2{bottom:653.106150px;}
.yed{bottom:653.106498px;}
.y83{bottom:653.106922px;}
.y2ee{bottom:654.637500px;}
.y277{bottom:656.758500px;}
.y2a8{bottom:657.268659px;}
.y162{bottom:657.439500px;}
.y2e{bottom:657.457500px;}
.y1ed{bottom:660.160500px;}
.y180{bottom:664.497000px;}
.y7{bottom:666.771000px;}
.y2ed{bottom:668.073966px;}
.y46{bottom:670.027500px;}
.y275{bottom:670.281536px;}
.y1ff{bottom:670.535690px;}
.yb5{bottom:670.537726px;}
.y2a7{bottom:670.789122px;}
.y250{bottom:671.046560px;}
.y135{bottom:671.048665px;}
.y1c1{bottom:671.049014px;}
.yec{bottom:671.049362px;}
.y82{bottom:671.049786px;}
.y276{bottom:674.958000px;}
.y2ec{bottom:681.594430px;}
.y274{bottom:683.802000px;}
.y2a6{bottom:684.225588px;}
.yb4{bottom:688.566014px;}
.y24f{bottom:689.074848px;}
.y134{bottom:689.076953px;}
.y1c0{bottom:689.077301px;}
.yeb{bottom:689.077650px;}
.y81{bottom:689.078074px;}
.y1fe{bottom:690.519924px;}
.y45{bottom:691.032000px;}
.y161{bottom:693.497196px;}
.y2eb{bottom:695.115944px;}
.y272{bottom:697.323355px;}
.y2a5{bottom:697.746052px;}
.y273{bottom:702.000000px;}
.y240{bottom:703.190443px;}
.y6c{bottom:706.414571px;}
.yb3{bottom:706.594301px;}
.y24e{bottom:707.103136px;}
.y133{bottom:707.105241px;}
.y1bf{bottom:707.105589px;}
.yea{bottom:707.105938px;}
.y80{bottom:707.106362px;}
.y2ea{bottom:708.637457px;}
.y1fd{bottom:710.419784px;}
.y2a4{bottom:711.267566px;}
.y271{bottom:711.270107px;}
.y160{bottom:711.440060px;}
.y44{bottom:712.036500px;}
.y6b{bottom:719.170657px;}
.y23f{bottom:720.453000px;}
.y2e9{bottom:722.072873px;}
.yb2{bottom:724.537165px;}
.y2a3{bottom:724.789079px;}
.y24d{bottom:725.046000px;}
.y1be{bottom:725.048453px;}
.ye9{bottom:725.048801px;}
.y7f{bottom:725.049226px;}
.y6{bottom:726.298500px;}
.y15f{bottom:729.468348px;}
.y1fc{bottom:730.404017px;}
.y43{bottom:733.041000px;}
.y2e8{bottom:735.594387px;}
.y1ab{bottom:737.462173px;}
.y2a2{bottom:738.224496px;}
.y270{bottom:738.227036px;}
.y2d{bottom:738.817498px;}
.y23e{bottom:740.183096px;}
.yb1{bottom:742.565453px;}
.y24c{bottom:743.074500px;}
.y132{bottom:743.076393px;}
.y1bd{bottom:743.076741px;}
.ye8{bottom:743.077089px;}
.y7e{bottom:743.077514px;}
.y6a{bottom:744.681778px;}
.y15e{bottom:747.496636px;}
.y2e7{bottom:749.114851px;}
.y1fb{bottom:750.302752px;}
.y2a1{bottom:751.746009px;}
.y26f{bottom:751.747500px;}
.y3{bottom:752.599495px;}
.y42{bottom:754.045500px;}
.y1aa{bottom:757.360908px;}
.y69{bottom:757.437863px;}
.y23d{bottom:760.167330px;}
.yb0{bottom:760.593741px;}
.y131{bottom:761.104681px;}
.y1bc{bottom:761.105029px;}
.ye7{bottom:761.105377px;}
.y7d{bottom:761.105801px;}
.y2e6{bottom:762.636364px;}
.y15d{bottom:765.439500px;}
.y2c{bottom:768.817498px;}
.y68{bottom:770.192899px;}
.y1fa{bottom:770.201487px;}
.y41{bottom:775.050000px;}
.y2e5{bottom:776.072830px;}
.y1a9{bottom:777.259642px;}
.yaf{bottom:778.536605px;}
.y130{bottom:779.047545px;}
.y1bb{bottom:779.047893px;}
.ye6{bottom:779.048241px;}
.y7c{bottom:779.048665px;}
.y23c{bottom:780.066064px;}
.y67{bottom:782.948985px;}
.y15c{bottom:783.468000px;}
.y2b{bottom:786.817498px;}
.y2e4{bottom:789.593294px;}
.y1f9{bottom:790.185720px;}
.y23b{bottom:793.587259px;}
.y40{bottom:796.054500px;}
.yae{bottom:796.564893px;}
.y12f{bottom:797.075833px;}
.y1ba{bottom:797.076181px;}
.ye5{bottom:797.076529px;}
.y7b{bottom:797.076953px;}
.y1a8{bottom:797.243876px;}
.y2e3{bottom:803.114808px;}
.y2a{bottom:804.817498px;}
.y66{bottom:808.460106px;}
.y1f8{bottom:810.085580px;}
.y23a{bottom:813.487119px;}
.yad{bottom:814.593181px;}
.y12e{bottom:815.104121px;}
.y1b9{bottom:815.104469px;}
.ye4{bottom:815.104817px;}
.y7a{bottom:815.105241px;}
.y2e2{bottom:816.636322px;}
.y3f{bottom:817.059000px;}
.y1a7{bottom:817.143736px;}
.y15b{bottom:819.440060px;}
.y65{bottom:821.216191px;}
.y29{bottom:822.817498px;}
.y1f7{bottom:829.984314px;}
.y2e1{bottom:830.071738px;}
.yac{bottom:832.536045px;}
.y1b8{bottom:833.047333px;}
.ye3{bottom:833.047681px;}
.yd5{bottom:833.048105px;}
.y12d{bottom:833.048259px;}
.y239{bottom:833.385853px;}
.y64{bottom:833.972277px;}
.y1a6{bottom:837.127969px;}
.y15a{bottom:837.468348px;}
.y3e{bottom:838.063500px;}
.y2e0{bottom:843.593251px;}
.y63{bottom:846.643315px;}
.y238{bottom:846.907048px;}
.y1f6{bottom:849.968548px;}
.yab{bottom:850.564333px;}
.y12c{bottom:851.075272px;}
.y1b7{bottom:851.075621px;}
.ye2{bottom:851.075969px;}
.y79{bottom:851.076393px;}
.y159{bottom:855.496636px;}
.y1a5{bottom:857.026704px;}
.y2df{bottom:857.113715px;}
.y3d{bottom:859.068000px;}
.y62{bottom:859.398350px;}
.y249{bottom:861.192520px;}
.y24a{bottom:861.617764px;}
.y237{bottom:866.806908px;}
.yaa{bottom:868.592621px;}
.y12b{bottom:869.103560px;}
.y1b6{bottom:869.103908px;}
.ye1{bottom:869.104257px;}
.y78{bottom:869.104681px;}
.y1e8{bottom:869.270711px;}
.y1f5{bottom:869.868408px;}
.y2de{bottom:870.635229px;}
.y158{bottom:873.439500px;}
.y28{bottom:875.289002px;}
.y1a4{bottom:876.926564px;}
.y1ef{bottom:877.519977px;}
.y2{bottom:879.369000px;}
.y3c{bottom:880.072500px;}
.y2dd{bottom:884.071695px;}
.y61{bottom:884.740426px;}
.ya9{bottom:886.536759px;}
.y236{bottom:886.791141px;}
.y1b5{bottom:887.046772px;}
.ye0{bottom:887.047121px;}
.y77{bottom:887.047545px;}
.y12a{bottom:887.047699px;}
.y1f4{bottom:889.767142px;}
.y157{bottom:891.468000px;}
.y1a3{bottom:896.910797px;}
.y2dc{bottom:897.592158px;}
.y60{bottom:899.706699px;}
.y235{bottom:900.312336px;}
.y1f3{bottom:903.288337px;}
.ya8{bottom:904.563772px;}
.y1b4{bottom:905.075060px;}
.ydf{bottom:905.075408px;}
.y76{bottom:905.075833px;}
.y129{bottom:905.075987px;}
.y156{bottom:907.369500px;}
.y2db{bottom:911.113672px;}
.y3a{bottom:913.833000px;}
.y1a2{bottom:916.809532px;}
.y3b{bottom:919.786500px;}
.y234{bottom:920.211071px;}
.ya7{bottom:922.592060px;}
.y128{bottom:923.103000px;}
.y1b3{bottom:923.103348px;}
.yde{bottom:923.103696px;}
.y75{bottom:923.104121px;}
.y1f2{bottom:923.272571px;}
.y2da{bottom:924.635186px;}
.y155{bottom:927.949800px;}
.y1a1{bottom:936.708266px;}
.y2d9{bottom:938.070602px;}
.y27{bottom:938.953498px;}
.y233{bottom:940.109805px;}
.ya6{bottom:940.536199px;}
.ydd{bottom:941.046560px;}
.y127{bottom:941.047200px;}
.y1b2{bottom:941.047487px;}
.y74{bottom:941.048259px;}
.y39{bottom:943.088276px;}
.y1f1{bottom:943.171305px;}
.y154{bottom:947.083800px;}
.y1e9{bottom:951.079620px;}
.y2d8{bottom:951.592116px;}
.y232{bottom:953.631000px;}
.y1a0{bottom:956.692500px;}
.ya5{bottom:958.564487px;}
.y1b1{bottom:959.074500px;}
.ydc{bottom:959.074848px;}
.y73{bottom:959.075272px;}
.y2d7{bottom:965.112579px;}
.y153{bottom:966.219013px;}
.y1{bottom:966.726000px;}
.y26{bottom:970.453498px;}
.y38{bottom:973.020000px;}
.ya4{bottom:976.591500px;}
.y19f{bottom:976.592880px;}
.y231{bottom:976.593065px;}
.y126{bottom:977.103000px;}
.ydb{bottom:977.103136px;}
.y72{bottom:977.103560px;}
.y2d6{bottom:978.634093px;}
.y1ec{bottom:982.884071px;}
.y2d5{bottom:992.070559px;}
.ya3{bottom:994.535700px;}
.yda{bottom:995.046000px;}
.y71{bottom:995.047699px;}
.y230{bottom:1001.253825px;}
.y19e{bottom:1001.339064px;}
.y2d4{bottom:1005.591023px;}
.y37{bottom:1007.547475px;}
.yd9{bottom:1013.074500px;}
.y70{bottom:1013.075987px;}
.y2d3{bottom:1019.112536px;}
.y19d{bottom:1023.789000px;}
.y22f{bottom:1026.765000px;}
.y36{bottom:1028.551500px;}
.ya2{bottom:1030.591500px;}
.y6f{bottom:1031.103000px;}
.y2d2{bottom:1032.633000px;}
.y25{bottom:1035.546001px;}
.y5e{bottom:1112.825680px;}
.y5d{bottom:1127.877000px;}
.y24{bottom:1165.122003px;}
.h23{height:21.893341px;}
.h1b{height:30.498469px;}
.h7{height:32.130000px;}
.h19{height:32.843062px;}
.h15{height:32.899613px;}
.h1a{height:34.313020px;}
.h20{height:35.189531px;}
.hc{height:36.726562px;}
.h22{height:38.386903px;}
.h24{height:39.371537px;}
.h21{height:39.518482px;}
.h1e{height:39.523335px;}
.h1d{height:39.523937px;}
.ha{height:41.317383px;}
.h1f{height:41.666510px;}
.h1c{height:41.761500px;}
.h17{height:44.118000px;}
.h6{height:45.900000px;}
.hf{height:45.908203px;}
.h18{height:46.613452px;}
.h3{height:48.195000px;}
.h14{height:49.356000px;}
.h16{height:54.840000px;}
.h2{height:55.080000px;}
.he{height:55.089844px;}
.h12{height:58.823510px;}
.hb{height:68.862305px;}
.h5{height:78.030000px;}
.hd{height:82.634766px;}
.h13{height:93.227452px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x10{left:75.004650px;}
.x74{left:84.018750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:145.650000px;}
.x7{left:191.880000px;}
.x9{left:197.700000px;}
.x4{left:203.484001px;}
.x6{left:228.743990px;}
.xa{left:270.255000px;}
.x16{left:272.125400px;}
.x19{left:276.038942px;}
.x18{left:277.483500px;}
.x13{left:282.756000px;}
.x1d{left:286.072500px;}
.x15{left:287.262022px;}
.x71{left:291.003678px;}
.x5{left:293.590494px;}
.x14{left:300.783238px;}
.x2d{left:306.991179px;}
.x1e{left:308.522436px;}
.x2e{left:327.230291px;}
.x1f{left:328.422000px;}
.x70{left:344.070000px;}
.x20{left:350.616829px;}
.x2f{left:356.399398px;}
.x21{left:370.515564px;}
.x30{left:376.299000px;}
.x3e{left:379.105500px;}
.x22{left:390.499797px;}
.x12{left:396.198000px;}
.x3f{left:399.004235px;}
.xb{left:408.954000px;}
.x23{left:410.399657px;}
.x63{left:412.525429px;}
.xc{left:414.736500px;}
.x1c{left:415.841047px;}
.x40{left:418.902969px;}
.x24{left:430.298392px;}
.x4c{left:432.508926px;}
.x53{left:436.166202px;}
.x41{left:438.887203px;}
.x25{left:450.282625px;}
.x64{left:452.324024px;}
.x3{left:454.959000px;}
.x54{left:456.064936px;}
.x42{left:458.787063px;}
.x26{left:470.182485px;}
.x65{left:472.308257px;}
.x55{left:475.964796px;}
.x43{left:478.685797px;}
.x27{left:490.081220px;}
.x66{left:492.206992px;}
.x56{left:495.949030px;}
.x44{left:498.670031px;}
.x67{left:505.728187px;}
.x28{left:510.065453px;}
.x57{left:515.847764px;}
.xd{left:518.995500px;}
.xe{left:524.863500px;}
.x29{left:529.964188px;}
.x4f{left:533.281070px;}
.x58{left:535.747624px;}
.x45{left:538.554124px;}
.x68{left:545.612280px;}
.x2a{left:549.948421px;}
.x59{left:555.731858px;}
.x46{left:558.452859px;}
.x73{left:563.211551px;}
.x69{left:565.511015px;}
.x2b{left:569.593500px;}
.x5a{left:575.630592px;}
.x47{left:578.351593px;}
.x72{left:584.216201px;}
.x6a{left:585.409749px;}
.x31{left:589.151787px;}
.x5b{left:595.614826px;}
.x48{left:598.335827px;}
.x6b{left:605.393983px;}
.x32{left:609.050522px;}
.x5c{left:615.513560px;}
.x49{left:618.235687px;}
.x6c{left:625.293842px;}
.x33{left:629.034755px;}
.x5d{left:635.413420px;}
.x4a{left:637.965000px;}
.x6d{left:645.278076px;}
.x4d{left:647.148677px;}
.x34{left:648.934615px;}
.x4e{left:650.379634px;}
.x4b{left:655.227557px;}
.x6e{left:664.923000px;}
.x35{left:668.833349px;}
.x5e{left:675.296388px;}
.x6f{left:682.185557px;}
.x1a{left:687.287017px;}
.x36{left:688.817583px;}
.x1b{left:693.750055px;}
.x5f{left:695.196248px;}
.x37{left:708.717443px;}
.x60{left:715.180482px;}
.x38{left:728.701676px;}
.x61{left:735.079216px;}
.x39{left:748.600411px;}
.xf{left:751.918500px;}
.x62{left:755.063450px;}
.x51{left:761.100657px;}
.x50{left:764.332739px;}
.x3a{left:768.500271px;}
.x2c{left:770.108939px;}
.x11{left:776.325000px;}
.x52{left:782.360624px;}
.x3b{left:788.484504px;}
.x3c{left:808.383239px;}
.x17{left:823.692000px;}
.x3d{left:832.534417px;}
@media print{
.v3{vertical-align:-13.002667pt;}
.v2{vertical-align:-10.885333pt;}
.v1{vertical-align:-8.469865pt;}
.v4{vertical-align:-7.557333pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.746645pt;}
.ls14{letter-spacing:-0.559984pt;}
.ls2{letter-spacing:-0.453328pt;}
.ls1{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.026762pt;}
.lsc{letter-spacing:0.029332pt;}
.ls5{letter-spacing:0.037603pt;}
.ls8{letter-spacing:0.042222pt;}
.lsf{letter-spacing:0.046400pt;}
.lsb{letter-spacing:0.047555pt;}
.lsd{letter-spacing:0.132856pt;}
.ls4{letter-spacing:2.832715pt;}
.ls10{letter-spacing:9.986816pt;}
.lse{letter-spacing:10.140947pt;}
.ls3{letter-spacing:12.865449pt;}
.ls7{letter-spacing:17.702458pt;}
.ls9{letter-spacing:20.008304pt;}
.ls6{letter-spacing:20.013637pt;}
.lsa{letter-spacing:20.312304pt;}
.ls12{letter-spacing:20.798689pt;}
.ws18{word-spacing:-45.332800pt;}
.ws5c{word-spacing:-37.332267pt;}
.ws1{word-spacing:-12.432000pt;}
.ws3{word-spacing:-11.333200pt;}
.ws5{word-spacing:-11.287867pt;}
.ws4{word-spacing:-10.879872pt;}
.ws13{word-spacing:-9.999867pt;}
.ws39{word-spacing:-9.799869pt;}
.ws57{word-spacing:-9.482396pt;}
.ws58{word-spacing:-9.333067pt;}
.ws59{word-spacing:-9.146405pt;}
.ws5a{word-spacing:-8.959744pt;}
.ws5b{word-spacing:-8.773083pt;}
.ws5d{word-spacing:-8.586421pt;}
.ws5e{word-spacing:-8.399760pt;}
.ws7{word-spacing:-7.933200pt;}
.ws17{word-spacing:-7.901467pt;}
.ws14{word-spacing:-1.273852pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:2.282890pt;}
.ws2{word-spacing:3.945600pt;}
.ws56{word-spacing:3.950400pt;}
.wsd{word-spacing:4.974129pt;}
.ws8{word-spacing:5.049100pt;}
.ws15{word-spacing:5.054808pt;}
.ws1e{word-spacing:5.099930pt;}
.ws20{word-spacing:5.106714pt;}
.ws19{word-spacing:5.289062pt;}
.ws6{word-spacing:7.478049pt;}
.wsa{word-spacing:12.261557pt;}
.wsc{word-spacing:12.565557pt;}
.ws26{word-spacing:52.835378pt;}
.ws1d{word-spacing:67.826935pt;}
.ws11{word-spacing:68.130665pt;}
.ws29{word-spacing:82.310903pt;}
.ws2b{word-spacing:90.474794pt;}
.ws2e{word-spacing:91.442781pt;}
.ws2c{word-spacing:93.782750pt;}
.ws2a{word-spacing:94.082746pt;}
.ws2d{word-spacing:102.934628pt;}
.wse{word-spacing:120.435650pt;}
.ws1f{word-spacing:129.511276pt;}
.ws9{word-spacing:133.137900pt;}
.wsf{word-spacing:133.441630pt;}
.ws30{word-spacing:136.150185pt;}
.ws32{word-spacing:136.454181pt;}
.ws1c{word-spacing:137.068254pt;}
.ws21{word-spacing:139.489026pt;}
.wsb{word-spacing:143.115650pt;}
.ws34{word-spacing:144.314076pt;}
.ws28{word-spacing:145.806056pt;}
.ws35{word-spacing:152.189971pt;}
.ws50{word-spacing:174.849669pt;}
.ws4c{word-spacing:174.853669pt;}
.ws4a{word-spacing:175.157665pt;}
.ws36{word-spacing:175.453661pt;}
.ws25{word-spacing:181.961574pt;}
.ws48{word-spacing:183.017560pt;}
.ws4e{word-spacing:191.197451pt;}
.ws37{word-spacing:203.793283pt;}
.ws31{word-spacing:204.093279pt;}
.ws3d{word-spacing:204.397275pt;}
.ws4d{word-spacing:205.977254pt;}
.ws33{word-spacing:207.533233pt;}
.ws3c{word-spacing:207.837229pt;}
.ws24{word-spacing:216.585112pt;}
.ws3b{word-spacing:225.344995pt;}
.ws38{word-spacing:225.348995pt;}
.ws23{word-spacing:230.594354pt;}
.ws4f{word-spacing:242.792763pt;}
.ws49{word-spacing:242.796763pt;}
.ws52{word-spacing:243.096759pt;}
.ws4b{word-spacing:245.932721pt;}
.ws51{word-spacing:246.536713pt;}
.ws22{word-spacing:258.519359pt;}
.ws40{word-spacing:263.092492pt;}
.ws2f{word-spacing:272.128265pt;}
.ws1a{word-spacing:284.014525pt;}
.ws3a{word-spacing:292.984093pt;}
.ws55{word-spacing:301.491980pt;}
.ws47{word-spacing:310.828876pt;}
.ws44{word-spacing:312.155838pt;}
.ws42{word-spacing:312.387835pt;}
.ws45{word-spacing:312.763830pt;}
.ws46{word-spacing:325.983653pt;}
.ws41{word-spacing:335.018459pt;}
.ws1b{word-spacing:354.769960pt;}
.ws16{word-spacing:364.144783pt;}
.ws27{word-spacing:398.106692pt;}
.ws3e{word-spacing:403.430621pt;}
.ws53{word-spacing:555.524593pt;}
.ws54{word-spacing:623.163691pt;}
.ws3f{word-spacing:634.955534pt;}
.ws43{word-spacing:648.887348pt;}
.ws12{word-spacing:1181.703697pt;}
._1e{margin-left:-426.862145pt;}
._20{margin-left:-416.867838pt;}
._1f{margin-left:-347.198657pt;}
._16{margin-left:-205.639902pt;}
._23{margin-left:-201.598556pt;}
._21{margin-left:-199.831516pt;}
._15{margin-left:-196.273758pt;}
._22{margin-left:-192.628042pt;}
._17{margin-left:-183.732493pt;}
._18{margin-left:-129.960071pt;}
._2{margin-left:-4.416000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.960000pt;}
._8{width:1.184000pt;}
._7{width:2.961639pt;}
._4{width:4.627161pt;}
._5{width:5.644753pt;}
._6{width:7.280491pt;}
._9{width:8.246036pt;}
._a{width:9.170825pt;}
._e{width:10.218013pt;}
._d{width:12.239856pt;}
._f{width:13.200911pt;}
._b{width:14.461163pt;}
._c{width:15.440352pt;}
._11{width:16.532872pt;}
._12{width:17.425928pt;}
._13{width:18.894711pt;}
._14{width:19.833100pt;}
._25{width:21.197617pt;}
._24{width:22.217605pt;}
._a0{width:23.219460pt;}
._10{width:24.112516pt;}
._81{width:55.327276pt;}
._a1{width:72.954075pt;}
._3c{width:77.228958pt;}
._3d{width:78.525476pt;}
._3e{width:88.630157pt;}
._88{width:90.581114pt;}
._41{width:91.563189pt;}
._3f{width:96.522598pt;}
._40{width:101.717737pt;}
._4a{width:104.082612pt;}
._48{width:111.658511pt;}
._54{width:112.890495pt;}
._4c{width:115.882455pt;}
._4b{width:116.838442pt;}
._43{width:117.829014pt;}
._42{width:119.012200pt;}
._50{width:120.553982pt;}
._52{width:124.514750pt;}
._51{width:129.614272pt;}
._5b{width:135.072521pt;}
._3b{width:139.470892pt;}
._5a{width:145.956376pt;}
._5e{width:153.701951pt;}
._5f{width:154.933934pt;}
._66{width:162.509833pt;}
._6a{width:163.453821pt;}
._46{width:167.277770pt;}
._4e{width:168.685751pt;}
._80{width:172.980898pt;}
._53{width:175.397661pt;}
._6c{width:177.457634pt;}
._4d{width:179.737603pt;}
._55{width:180.825589pt;}
._89{width:185.585525pt;}
._92{width:192.673431pt;}
._93{width:193.677418pt;}
._8e{width:201.213317pt;}
._87{width:208.473220pt;}
._9c{width:211.101829pt;}
._8a{width:217.365102pt;}
._95{width:223.853015pt;}
._94{width:224.774551pt;}
._30{width:226.584979pt;}
._45{width:230.924921pt;}
._8f{width:232.828896pt;}
._90{width:233.720884pt;}
._62{width:235.048866pt;}
._5d{width:235.960854pt;}
._39{width:238.376822pt;}
._2b{width:242.856762pt;}
._69{width:244.096745pt;}
._29{width:245.885107pt;}
._38{width:247.760696pt;}
._67{width:250.956654pt;}
._49{width:252.124638pt;}
._27{width:254.026878pt;}
._4f{width:257.004573pt;}
._28{width:261.733454pt;}
._91{width:263.084492pt;}
._2c{width:265.588459pt;}
._82{width:268.253067pt;}
._26{width:272.758391pt;}
._34{width:274.760336pt;}
._44{width:278.564286pt;}
._9a{width:281.624245pt;}
._2f{width:282.817964pt;}
._47{width:284.496207pt;}
._7e{width:286.068186pt;}
._7d{width:287.182493pt;}
._99{width:289.768136pt;}
._33{width:294.216077pt;}
._9e{width:296.122374pt;}
._36{width:299.960000pt;}
._60{width:302.683964pt;}
._2d{width:305.707924pt;}
._64{width:307.143905pt;}
._8b{width:310.363862pt;}
._9b{width:312.395835pt;}
._8d{width:313.847815pt;}
._85{width:317.903761pt;}
._78{width:322.976337pt;}
._32{width:323.879682pt;}
._9f{width:324.925990pt;}
._35{width:326.039653pt;}
._61{width:329.539606pt;}
._2e{width:330.719590pt;}
._84{width:334.567797pt;}
._31{width:347.599365pt;}
._8c{width:357.723230pt;}
._77{width:361.407181pt;}
._2a{width:362.559166pt;}
._7c{width:364.035146pt;}
._58{width:373.433473pt;}
._68{width:374.959000pt;}
._7f{width:376.334982pt;}
._83{width:389.278810pt;}
._76{width:393.498753pt;}
._5c{width:406.818576pt;}
._7b{width:407.996882pt;}
._3a{width:413.278490pt;}
._59{width:414.682471pt;}
._37{width:422.318369pt;}
._65{width:425.722324pt;}
._63{width:469.597739pt;}
._6b{width:504.289276pt;}
._73{width:511.085185pt;}
._56{width:513.125090pt;}
._75{width:555.764590pt;}
._86{width:590.530846pt;}
._74{width:600.279996pt;}
._57{width:602.321907pt;}
._79{width:614.759803pt;}
._1a{width:623.934389pt;}
._1d{width:689.156876pt;}
._9d{width:692.166771pt;}
._1c{width:695.556790pt;}
._7a{width:703.954614pt;}
._6e{width:827.344969pt;}
._19{width:838.054890pt;}
._96{width:1016.930441pt;}
._6d{width:1051.701977pt;}
._1b{width:1234.421863pt;}
._70{width:1639.862135pt;}
._97{width:1801.995973pt;}
._6f{width:1848.259356pt;}
._72{width:2481.990906pt;}
._98{width:2622.337035pt;}
._71{width:2680.388261pt;}
.fs11{font-size:24.885867pt;}
.fsf{font-size:31.732800pt;}
.fsb{font-size:31.995733pt;}
.fse{font-size:34.667200pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:39.999467pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:45.332800pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:37.492800pt;}
.ya1{bottom:37.499574pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:60.086668pt;}
.yd4{bottom:68.037879pt;}
.y1e0{bottom:68.487016pt;}
.y22e{bottom:68.488361pt;}
.y26e{bottom:68.488859pt;}
.ya0{bottom:68.493044pt;}
.y6e{bottom:69.468359pt;}
.y17f{bottom:72.417494pt;}
.y1ae{bottom:73.398400pt;}
.y247{bottom:73.398690pt;}
.y1ee{bottom:73.399179pt;}
.y1e1{bottom:73.399282pt;}
.y152{bottom:73.550738pt;}
.y1ac{bottom:74.683333pt;}
.y22{bottom:74.753335pt;}
.y318{bottom:77.867735pt;}
.y19c{bottom:78.690231pt;}
.y6d{bottom:80.806267pt;}
.y108{bottom:83.150827pt;}
.yd8{bottom:83.157071pt;}
.yd3{bottom:84.063024pt;}
.y1df{bottom:84.512161pt;}
.y22d{bottom:84.513506pt;}
.y26d{bottom:84.514004pt;}
.y9f{bottom:84.518189pt;}
.y4{bottom:86.333337pt;}
.y17e{bottom:88.442639pt;}
.y21e{bottom:88.819488pt;}
.y317{bottom:89.885925pt;}
.y151{bottom:91.314501pt;}
.y2a0{bottom:91.847676pt;}
.y2d1{bottom:92.225666pt;}
.y19b{bottom:94.640577pt;}
.y107{bottom:99.175972pt;}
.y125{bottom:99.178960pt;}
.yd7{bottom:99.182216pt;}
.yd2{bottom:100.088169pt;}
.y1de{bottom:100.537306pt;}
.y22c{bottom:100.538651pt;}
.y26c{bottom:100.539149pt;}
.y9e{bottom:100.543333pt;}
.y316{bottom:101.905048pt;}
.y29f{bottom:103.791202pt;}
.y2d0{bottom:104.244789pt;}
.y17d{bottom:104.391851pt;}
.y150{bottom:109.002265pt;}
.y21d{bottom:110.287202pt;}
.y19a{bottom:110.665722pt;}
.y315{bottom:113.848573pt;}
.y106{bottom:115.201117pt;}
.y124{bottom:115.202972pt;}
.y29e{bottom:115.809392pt;}
.yd1{bottom:116.037381pt;}
.y2cf{bottom:116.262979pt;}
.y1dd{bottom:116.486518pt;}
.y22b{bottom:116.487863pt;}
.y26b{bottom:116.488361pt;}
.y1b0{bottom:116.492546pt;}
.y17c{bottom:120.416996pt;}
.y32d{bottom:120.720062pt;}
.y21{bottom:123.790666pt;}
.y314{bottom:125.866763pt;}
.y199{bottom:126.689733pt;}
.y14f{bottom:126.691029pt;}
.y29d{bottom:127.828515pt;}
.y21c{bottom:128.050965pt;}
.y2ce{bottom:128.206504pt;}
.y105{bottom:131.150329pt;}
.y123{bottom:131.153318pt;}
.yd0{bottom:132.062526pt;}
.y1dc{bottom:132.511663pt;}
.y22a{bottom:132.513008pt;}
.y26a{bottom:132.513506pt;}
.y9d{bottom:132.517691pt;}
.y17b{bottom:136.442141pt;}
.y313{bottom:137.885887pt;}
.y32c{bottom:139.390376pt;}
.y29c{bottom:139.847638pt;}
.y21b{bottom:139.994805pt;}
.y2cd{bottom:140.224694pt;}
.y198{bottom:142.639733pt;}
.y14e{bottom:144.454792pt;}
.y104{bottom:147.175474pt;}
.y122{bottom:147.178462pt;}
.ycf{bottom:148.087671pt;}
.y1db{bottom:148.536808pt;}
.y229{bottom:148.538153pt;}
.y269{bottom:148.538651pt;}
.y9c{bottom:148.542835pt;}
.y312{bottom:149.905010pt;}
.y29b{bottom:151.790230pt;}
.y2cc{bottom:152.243817pt;}
.y17a{bottom:152.391353pt;}
.y21a{bottom:157.758569pt;}
.y32b{bottom:158.060690pt;}
.y311{bottom:161.847602pt;}
.y14d{bottom:162.142556pt;}
.y103{bottom:163.200619pt;}
.y121{bottom:163.203607pt;}
.y29a{bottom:163.809354pt;}
.yce{bottom:164.036883pt;}
.y2cb{bottom:164.262941pt;}
.y1da{bottom:164.486020pt;}
.y228{bottom:164.487365pt;}
.y268{bottom:164.487863pt;}
.y9b{bottom:164.492048pt;}
.y179{bottom:168.416498pt;}
.y310{bottom:173.866725pt;}
.y14c{bottom:174.161396pt;}
.y197{bottom:174.689333pt;}
.y18{bottom:175.052000pt;}
.y219{bottom:175.446333pt;}
.y299{bottom:175.827544pt;}
.y2ca{bottom:176.205533pt;}
.y32a{bottom:176.732137pt;}
.y102{bottom:179.149831pt;}
.y120{bottom:179.152820pt;}
.ycd{bottom:180.062028pt;}
.y1d9{bottom:180.511165pt;}
.y227{bottom:180.512510pt;}
.y267{bottom:180.513008pt;}
.y9a{bottom:180.517192pt;}
.y5c{bottom:182.175635pt;}
.y178{bottom:184.441643pt;}
.y1ad{bottom:185.422297pt;}
.y30f{bottom:185.884915pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y218{bottom:187.465172pt;}
.y298{bottom:187.846667pt;}
.y2c9{bottom:188.224656pt;}
.y14b{bottom:191.849160pt;}
.y243{bottom:194.644783pt;}
.y24b{bottom:194.646074pt;}
.y101{bottom:195.174976pt;}
.y11f{bottom:195.177964pt;}
.y329{bottom:195.402450pt;}
.ycc{bottom:196.087173pt;}
.y1d8{bottom:196.536310pt;}
.y226{bottom:196.537655pt;}
.y266{bottom:196.538153pt;}
.y99{bottom:196.542337pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y30e{bottom:197.904038pt;}
.y5b{bottom:198.200780pt;}
.y297{bottom:199.790192pt;}
.y2c8{bottom:200.243779pt;}
.y177{bottom:200.391989pt;}
.y242{bottom:203.412619pt;}
.y14a{bottom:203.868000pt;}
.y217{bottom:205.152937pt;}
.y196{bottom:206.667984pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y30d{bottom:209.847564pt;}
.y100{bottom:211.200121pt;}
.y11e{bottom:211.203109pt;}
.y296{bottom:211.808382pt;}
.ycb{bottom:212.036385pt;}
.y2c7{bottom:212.261969pt;}
.y1d7{bottom:212.486655pt;}
.y265{bottom:212.487365pt;}
.y98{bottom:212.491550pt;}
.y328{bottom:213.997965pt;}
.y5a{bottom:214.149992pt;}
.y1e4{bottom:215.356507pt;}
.y176{bottom:216.416000pt;}
.y149{bottom:221.556501pt;}
.y30c{bottom:221.865754pt;}
.y1ea{bottom:222.689409pt;}
.y1f0{bottom:222.690188pt;}
.y195{bottom:222.693129pt;}
.y216{bottom:222.916700pt;}
.y295{bottom:223.827505pt;}
.y2c6{bottom:224.205495pt;}
.yff{bottom:227.149333pt;}
.y11d{bottom:227.152322pt;}
.yca{bottom:228.061530pt;}
.y1d6{bottom:228.510667pt;}
.y225{bottom:228.512012pt;}
.y97{bottom:228.516694pt;}
.y59{bottom:230.175137pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1e3{bottom:231.380690pt;}
.y175{bottom:232.442000pt;}
.y327{bottom:232.668279pt;}
.y30b{bottom:233.884877pt;}
.y215{bottom:234.860541pt;}
.y294{bottom:235.846629pt;}
.y2c5{bottom:236.223685pt;}
.y241{bottom:236.822892pt;}
.y194{bottom:238.642341pt;}
.y148{bottom:241.512000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yfe{bottom:243.174667pt;}
.y11c{bottom:243.177466pt;}
.y1d5{bottom:244.534667pt;}
.y224{bottom:244.537157pt;}
.y264{bottom:244.537655pt;}
.y96{bottom:244.541839pt;}
.y30a{bottom:245.904000pt;}
.y58{bottom:246.200282pt;}
.y293{bottom:247.789221pt;}
.y2c4{bottom:248.242808pt;}
.y326{bottom:251.338592pt;}
.y214{bottom:252.624304pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y193{bottom:254.667486pt;}
.y309{bottom:257.846592pt;}
.y11b{bottom:259.202611pt;}
.y292{bottom:259.808344pt;}
.y1e2{bottom:260.028753pt;}
.yc9{bottom:260.035887pt;}
.y2c3{bottom:260.261931pt;}
.y223{bottom:260.486369pt;}
.y263{bottom:260.486867pt;}
.y95{bottom:260.491052pt;}
.y57{bottom:262.149494pt;}
.y174{bottom:264.416000pt;}
.y308{bottom:269.865716pt;}
.y325{bottom:270.010039pt;}
.y213{bottom:270.312068pt;}
.y192{bottom:270.692631pt;}
.y291{bottom:271.826534pt;}
.y2c2{bottom:272.204523pt;}
.y11a{bottom:275.151824pt;}
.yfd{bottom:275.155835pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc8{bottom:276.061032pt;}
.y1d4{bottom:276.511514pt;}
.y262{bottom:276.512012pt;}
.yd6{bottom:276.516196pt;}
.y56{bottom:278.174639pt;}
.y307{bottom:281.883906pt;}
.y212{bottom:282.330908pt;}
.y290{bottom:283.845657pt;}
.y2c1{bottom:284.223646pt;}
.y191{bottom:286.641843pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1e5{bottom:287.999539pt;}
.y324{bottom:288.680353pt;}
.y119{bottom:291.176968pt;}
.yfc{bottom:291.180980pt;}
.yc7{bottom:292.086176pt;}
.y1d3{bottom:292.536659pt;}
.y261{bottom:292.537157pt;}
.y94{bottom:292.541341pt;}
.y306{bottom:293.903029pt;}
.y55{bottom:294.199784pt;}
.y28f{bottom:295.789183pt;}
.y35{bottom:295.801334pt;}
.y2c0{bottom:296.242770pt;}
.y173{bottom:296.392538pt;}
.y146{bottom:297.902933pt;}
.y211{bottom:300.019672pt;}
.y190{bottom:302.666988pt;}
.y305{bottom:305.846554pt;}
.y147{bottom:306.368000pt;}
.y323{bottom:307.350667pt;}
.y28e{bottom:307.807373pt;}
.yc6{bottom:308.036522pt;}
.y2bf{bottom:308.260960pt;}
.y1d2{bottom:308.485871pt;}
.y260{bottom:308.486369pt;}
.y93{bottom:308.490554pt;}
.yf{bottom:309.452000pt;}
.y54{bottom:310.148996pt;}
.y172{bottom:312.417683pt;}
.y145{bottom:314.910800pt;}
.y210{bottom:317.783435pt;}
.y304{bottom:317.864744pt;}
.y28d{bottom:319.826496pt;}
.y2be{bottom:320.204485pt;}
.y118{bottom:323.151325pt;}
.yc5{bottom:324.060534pt;}
.y1d1{bottom:324.511016pt;}
.y25f{bottom:324.511514pt;}
.y92{bottom:324.515698pt;}
.y53{bottom:326.174141pt;}
.y171{bottom:328.442827pt;}
.y20f{bottom:329.726276pt;}
.y303{bottom:329.883867pt;}
.y28c{bottom:331.845619pt;}
.y2bd{bottom:332.222675pt;}
.y18f{bottom:334.641345pt;}
.y117{bottom:339.176470pt;}
.yc4{bottom:340.085678pt;}
.y144{bottom:340.535165pt;}
.y1d0{bottom:340.536161pt;}
.y25e{bottom:340.536659pt;}
.yfb{bottom:340.540466pt;}
.y91{bottom:340.540843pt;}
.y302{bottom:341.902991pt;}
.y52{bottom:342.199286pt;}
.y322{bottom:342.199294pt;}
.y28b{bottom:343.788211pt;}
.ye{bottom:343.809333pt;}
.y2bc{bottom:344.241798pt;}
.y170{bottom:344.392040pt;}
.y20e{bottom:347.490039pt;}
.y18e{bottom:350.666490pt;}
.y34{bottom:353.001334pt;}
.y301{bottom:353.845583pt;}
.y116{bottom:355.201615pt;}
.y28a{bottom:355.807334pt;}
.yc3{bottom:356.036024pt;}
.y2bb{bottom:356.260922pt;}
.y1cf{bottom:356.485373pt;}
.y143{bottom:356.485510pt;}
.y25d{bottom:356.485871pt;}
.yfa{bottom:356.489678pt;}
.y90{bottom:356.491189pt;}
.y51{bottom:358.148498pt;}
.y321{bottom:358.148572pt;}
.y16f{bottom:360.417185pt;}
.yd{bottom:362.706666pt;}
.y20d{bottom:365.178803pt;}
.y300{bottom:365.864706pt;}
.y18d{bottom:366.691635pt;}
.y289{bottom:367.825524pt;}
.y2ba{bottom:368.203514pt;}
.y320{bottom:370.167695pt;}
.y115{bottom:371.150827pt;}
.yc2{bottom:372.061169pt;}
.y1ce{bottom:372.510518pt;}
.y142{bottom:372.510655pt;}
.y25c{bottom:372.511016pt;}
.yf9{bottom:372.514823pt;}
.y8f{bottom:372.515200pt;}
.y50{bottom:374.173643pt;}
.y16e{bottom:376.442329pt;}
.y20c{bottom:377.197643pt;}
.y2ff{bottom:377.882896pt;}
.y245{bottom:378.481332pt;}
.y2b9{bottom:380.222637pt;}
.y31f{bottom:382.186818pt;}
.y18c{bottom:382.640847pt;}
.y244{bottom:384.906247pt;}
.y1e6{bottom:386.267228pt;}
.y114{bottom:387.175972pt;}
.yc1{bottom:388.086314pt;}
.y141{bottom:388.534667pt;}
.y1cd{bottom:388.535663pt;}
.y25b{bottom:388.536161pt;}
.yf8{bottom:388.539968pt;}
.y8e{bottom:388.540345pt;}
.y2fe{bottom:389.902019pt;}
.y4f{bottom:390.123989pt;}
.y288{bottom:391.788173pt;}
.y2b8{bottom:392.241760pt;}
.y16d{bottom:392.392675pt;}
.y1eb{bottom:393.599131pt;}
.y31e{bottom:394.129410pt;}
.y20b{bottom:394.885407pt;}
.y18b{bottom:398.665992pt;}
.y2fd{bottom:401.845545pt;}
.y113{bottom:403.201117pt;}
.y287{bottom:403.806363pt;}
.yc0{bottom:404.035526pt;}
.y2b7{bottom:404.259950pt;}
.y140{bottom:404.485333pt;}
.y1cc{bottom:404.486008pt;}
.yf7{bottom:404.490314pt;}
.y8d{bottom:404.490691pt;}
.y4e{bottom:406.148000pt;}
.y16c{bottom:408.416687pt;}
.y31d{bottom:410.154286pt;}
.y20a{bottom:412.649170pt;}
.y33{bottom:412.806667pt;}
.y2fc{bottom:413.863735pt;}
.y18a{bottom:414.691137pt;}
.y286{bottom:415.825486pt;}
.y2b6{bottom:416.203475pt;}
.y112{bottom:419.150329pt;}
.ybf{bottom:420.060671pt;}
.y1cb{bottom:420.510020pt;}
.y25a{bottom:420.510518pt;}
.yf6{bottom:420.514325pt;}
.y8c{bottom:420.515836pt;}
.y31c{bottom:422.173409pt;}
.y4d{bottom:422.173867pt;}
.y16b{bottom:424.441831pt;}
.y209{bottom:424.593011pt;}
.y2fb{bottom:425.882858pt;}
.y285{bottom:427.844610pt;}
.y2b5{bottom:428.221665pt;}
.y189{bottom:430.640349pt;}
.y31b{bottom:434.192532pt;}
.y111{bottom:435.175474pt;}
.ybe{bottom:436.085816pt;}
.y1ca{bottom:436.535165pt;}
.y259{bottom:436.535663pt;}
.yf5{bottom:436.539470pt;}
.y13f{bottom:436.539984pt;}
.y8b{bottom:436.540980pt;}
.y2fa{bottom:437.901981pt;}
.y284{bottom:439.787202pt;}
.y2b4{bottom:440.240789pt;}
.y16a{bottom:440.392177pt;}
.y208{bottom:442.356774pt;}
.y31a{bottom:446.135125pt;}
.y188{bottom:446.665494pt;}
.yc{bottom:446.990669pt;}
.y2f9{bottom:449.844573pt;}
.y110{bottom:451.200619pt;}
.y283{bottom:451.806325pt;}
.ybd{bottom:452.035028pt;}
.y2b3{bottom:452.259912pt;}
.y1c9{bottom:452.485510pt;}
.y258{bottom:452.486008pt;}
.y13e{bottom:452.489197pt;}
.yf4{bottom:452.489816pt;}
.y1af{bottom:452.490193pt;}
.y169{bottom:456.417322pt;}
.y1e7{bottom:458.909260pt;}
.y207{bottom:460.044538pt;}
.y4c{bottom:460.951867pt;}
.y2f8{bottom:461.863697pt;}
.y319{bottom:462.160000pt;}
.y187{bottom:462.690639pt;}
.yb{bottom:462.990669pt;}
.y2b2{bottom:464.202504pt;}
.y10f{bottom:467.149831pt;}
.y32{bottom:467.401334pt;}
.ybc{bottom:468.060173pt;}
.y257{bottom:468.510020pt;}
.y1c8{bottom:468.510655pt;}
.y13d{bottom:468.514341pt;}
.yf3{bottom:468.514960pt;}
.y8a{bottom:468.515338pt;}
.y206{bottom:472.063378pt;}
.y168{bottom:472.441333pt;}
.y2f7{bottom:473.881886pt;}
.y282{bottom:475.843638pt;}
.y2b1{bottom:476.221627pt;}
.y186{bottom:478.639851pt;}
.ya{bottom:478.990666pt;}
.y10e{bottom:483.174976pt;}
.ybb{bottom:484.085318pt;}
.y1c7{bottom:484.534667pt;}
.y256{bottom:484.535165pt;}
.yf2{bottom:484.538972pt;}
.y13c{bottom:484.539486pt;}
.y89{bottom:484.540482pt;}
.y2f6{bottom:485.901010pt;}
.y281{bottom:487.787164pt;}
.y2b0{bottom:488.240751pt;}
.y167{bottom:488.390667pt;}
.y205{bottom:489.751142pt;}
.y4b{bottom:491.566267pt;}
.y185{bottom:494.664996pt;}
.y9{bottom:494.990666pt;}
.y2f5{bottom:497.844535pt;}
.y10d{bottom:499.200121pt;}
.yba{bottom:500.034530pt;}
.y2af{bottom:500.258941pt;}
.y1c6{bottom:500.485333pt;}
.y255{bottom:500.485510pt;}
.y13b{bottom:500.488699pt;}
.yf1{bottom:500.489318pt;}
.y88{bottom:500.489695pt;}
.y204{bottom:507.514905pt;}
.y4a{bottom:507.591067pt;}
.y2f4{bottom:509.862725pt;}
.y184{bottom:510.690141pt;}
.y280{bottom:511.824477pt;}
.y2ae{bottom:512.202466pt;}
.y10c{bottom:515.149333pt;}
.yb9{bottom:516.059675pt;}
.y254{bottom:516.510655pt;}
.y13a{bottom:516.513843pt;}
.yf0{bottom:516.514462pt;}
.y87{bottom:516.514840pt;}
.y166{bottom:520.441831pt;}
.y2f3{bottom:521.881848pt;}
.y27f{bottom:523.842667pt;}
.y2ad{bottom:524.219722pt;}
.y203{bottom:525.203669pt;}
.y183{bottom:526.639353pt;}
.y31{bottom:527.206667pt;}
.y27e{bottom:528.000000pt;}
.y10b{bottom:531.174667pt;}
.yb8{bottom:532.084820pt;}
.y253{bottom:532.534667pt;}
.y222{bottom:532.535165pt;}
.y139{bottom:532.538988pt;}
.y1c5{bottom:532.539298pt;}
.yef{bottom:532.539607pt;}
.y86{bottom:532.539984pt;}
.y2f2{bottom:533.900972pt;}
.y49{bottom:534.954667pt;}
.y27d{bottom:535.785810pt;}
.y2ac{bottom:536.238846pt;}
.y165{bottom:536.392177pt;}
.y202{bottom:542.891433pt;}
.y2f1{bottom:545.843564pt;}
.y27c{bottom:547.804000pt;}
.y2ab{bottom:548.257969pt;}
.y252{bottom:548.485333pt;}
.y221{bottom:548.485510pt;}
.y138{bottom:548.488201pt;}
.y1c4{bottom:548.488510pt;}
.yee{bottom:548.488820pt;}
.y85{bottom:548.489197pt;}
.y48{bottom:549.618667pt;}
.y27b{bottom:551.962704pt;}
.y164{bottom:552.417322pt;}
.y30{bottom:557.740001pt;}
.y2f0{bottom:557.862687pt;}
.y182{bottom:558.689643pt;}
.y279{bottom:559.823618pt;}
.y2aa{bottom:560.200561pt;}
.y201{bottom:560.655197pt;}
.y10a{bottom:563.153224pt;}
.y27a{bottom:563.981333pt;}
.yb7{bottom:564.059177pt;}
.y220{bottom:564.510655pt;}
.y137{bottom:564.513345pt;}
.y1c3{bottom:564.513655pt;}
.y84{bottom:564.514341pt;}
.y248{bottom:566.778112pt;}
.y163{bottom:568.441333pt;}
.y2ef{bottom:569.880877pt;}
.y2f{bottom:571.073335pt;}
.y278{bottom:571.842741pt;}
.y2a9{bottom:572.219684pt;}
.y8{bottom:573.786667pt;}
.y181{bottom:574.639989pt;}
.y246{bottom:575.168000pt;}
.y47{bottom:576.909333pt;}
.y200{bottom:578.343961pt;}
.y109{bottom:579.178369pt;}
.yb6{bottom:580.084322pt;}
.y21f{bottom:580.534667pt;}
.y251{bottom:580.536619pt;}
.y136{bottom:580.538490pt;}
.y1c2{bottom:580.538800pt;}
.yed{bottom:580.539109pt;}
.y83{bottom:580.539486pt;}
.y2ee{bottom:581.900000pt;}
.y277{bottom:583.785333pt;}
.y2a8{bottom:584.238808pt;}
.y162{bottom:584.390667pt;}
.y2e{bottom:584.406667pt;}
.y1ed{bottom:586.809333pt;}
.y180{bottom:590.664000pt;}
.y7{bottom:592.685334pt;}
.y2ed{bottom:593.843526pt;}
.y46{bottom:595.580000pt;}
.y275{bottom:595.805810pt;}
.y1ff{bottom:596.031725pt;}
.yb5{bottom:596.033534pt;}
.y2a7{bottom:596.256998pt;}
.y250{bottom:596.485831pt;}
.y135{bottom:596.487703pt;}
.y1c1{bottom:596.488012pt;}
.yec{bottom:596.488322pt;}
.y82{bottom:596.488699pt;}
.y276{bottom:599.962667pt;}
.y2ec{bottom:605.861716pt;}
.y274{bottom:607.824000pt;}
.y2a6{bottom:608.200523pt;}
.yb4{bottom:612.058679pt;}
.y24f{bottom:612.510976pt;}
.y134{bottom:612.512847pt;}
.y1c0{bottom:612.513157pt;}
.yeb{bottom:612.513466pt;}
.y81{bottom:612.513843pt;}
.y1fe{bottom:613.795488pt;}
.y45{bottom:614.250667pt;}
.y161{bottom:616.441952pt;}
.y2eb{bottom:617.880839pt;}
.y272{bottom:619.842982pt;}
.y2a5{bottom:620.218713pt;}
.y273{bottom:624.000000pt;}
.y240{bottom:625.058172pt;}
.y6c{bottom:627.924063pt;}
.yb3{bottom:628.083824pt;}
.y24e{bottom:628.536121pt;}
.y133{bottom:628.537992pt;}
.y1bf{bottom:628.538302pt;}
.yea{bottom:628.538611pt;}
.y80{bottom:628.538988pt;}
.y2ea{bottom:629.899962pt;}
.y1fd{bottom:631.484252pt;}
.y2a4{bottom:632.237836pt;}
.y271{bottom:632.240095pt;}
.y160{bottom:632.391165pt;}
.y44{bottom:632.921333pt;}
.y6b{bottom:639.262806pt;}
.y23f{bottom:640.402667pt;}
.y2e9{bottom:641.842554pt;}
.yb2{bottom:644.033036pt;}
.y2a3{bottom:644.256959pt;}
.y24d{bottom:644.485333pt;}
.y1be{bottom:644.487514pt;}
.ye9{bottom:644.487824pt;}
.y7f{bottom:644.488201pt;}
.y6{bottom:645.598667pt;}
.y15f{bottom:648.416310pt;}
.y1fc{bottom:649.248015pt;}
.y43{bottom:651.592000pt;}
.y2e8{bottom:653.861677pt;}
.y1ab{bottom:655.521932pt;}
.y2a2{bottom:656.199552pt;}
.y270{bottom:656.201810pt;}
.y2d{bottom:656.726665pt;}
.y23e{bottom:657.940530pt;}
.yb1{bottom:660.058181pt;}
.y24c{bottom:660.510667pt;}
.y132{bottom:660.512349pt;}
.y1bd{bottom:660.512659pt;}
.ye8{bottom:660.512968pt;}
.y7e{bottom:660.513345pt;}
.y6a{bottom:661.939358pt;}
.y15e{bottom:664.441454pt;}
.y2e7{bottom:665.879867pt;}
.y1fb{bottom:666.935779pt;}
.y2a1{bottom:668.218675pt;}
.y26f{bottom:668.220000pt;}
.y3{bottom:668.977329pt;}
.y42{bottom:670.262667pt;}
.y1aa{bottom:673.209696pt;}
.y69{bottom:673.278101pt;}
.y23d{bottom:675.704293pt;}
.yb0{bottom:676.083325pt;}
.y131{bottom:676.537494pt;}
.y1bc{bottom:676.537804pt;}
.ye7{bottom:676.538113pt;}
.y7d{bottom:676.538490pt;}
.y2e6{bottom:677.898991pt;}
.y15d{bottom:680.390667pt;}
.y2c{bottom:683.393332pt;}
.y68{bottom:684.615910pt;}
.y1fa{bottom:684.623544pt;}
.y41{bottom:688.933333pt;}
.y2e5{bottom:689.842516pt;}
.y1a9{bottom:690.897460pt;}
.yaf{bottom:692.032538pt;}
.y130{bottom:692.486706pt;}
.y1bb{bottom:692.487016pt;}
.ye6{bottom:692.487325pt;}
.y7c{bottom:692.487703pt;}
.y23c{bottom:693.392057pt;}
.y67{bottom:695.954653pt;}
.y15c{bottom:696.416000pt;}
.y2b{bottom:699.393332pt;}
.y2e4{bottom:701.860706pt;}
.y1f9{bottom:702.387307pt;}
.y23b{bottom:705.410897pt;}
.y40{bottom:707.604000pt;}
.yae{bottom:708.057683pt;}
.y12f{bottom:708.511851pt;}
.y1ba{bottom:708.512161pt;}
.ye5{bottom:708.512470pt;}
.y7b{bottom:708.512847pt;}
.y1a8{bottom:708.661223pt;}
.y2e3{bottom:713.879829pt;}
.y2a{bottom:715.393332pt;}
.y66{bottom:718.631205pt;}
.y1f8{bottom:720.076071pt;}
.y23a{bottom:723.099661pt;}
.yad{bottom:724.082827pt;}
.y12e{bottom:724.536996pt;}
.y1b9{bottom:724.537306pt;}
.ye4{bottom:724.537615pt;}
.y7a{bottom:724.537992pt;}
.y2e2{bottom:725.898952pt;}
.y3f{bottom:726.274667pt;}
.y1a7{bottom:726.349987pt;}
.y15b{bottom:728.391165pt;}
.y65{bottom:729.969948pt;}
.y29{bottom:731.393332pt;}
.y1f7{bottom:737.763835pt;}
.y2e1{bottom:737.841545pt;}
.yac{bottom:740.032040pt;}
.y1b8{bottom:740.486518pt;}
.ye3{bottom:740.486827pt;}
.yd5{bottom:740.487205pt;}
.y12d{bottom:740.487342pt;}
.y239{bottom:740.787425pt;}
.y64{bottom:741.308690pt;}
.y1a6{bottom:744.113750pt;}
.y15a{bottom:744.416310pt;}
.y3e{bottom:744.945333pt;}
.y2e0{bottom:749.860668pt;}
.y63{bottom:752.571835pt;}
.y238{bottom:752.806265pt;}
.y1f6{bottom:755.527598pt;}
.yab{bottom:756.057185pt;}
.y12c{bottom:756.511353pt;}
.y1b7{bottom:756.511663pt;}
.ye2{bottom:756.511972pt;}
.y79{bottom:756.512349pt;}
.y159{bottom:760.441454pt;}
.y1a5{bottom:761.801515pt;}
.y2df{bottom:761.878858pt;}
.y3d{bottom:763.616000pt;}
.y62{bottom:763.909645pt;}
.y249{bottom:765.504462pt;}
.y24a{bottom:765.882457pt;}
.y237{bottom:770.495029pt;}
.yaa{bottom:772.082329pt;}
.y12b{bottom:772.536498pt;}
.y1b6{bottom:772.536808pt;}
.ye1{bottom:772.537117pt;}
.y78{bottom:772.537494pt;}
.y1e8{bottom:772.685076pt;}
.y1f5{bottom:773.216362pt;}
.y2de{bottom:773.897981pt;}
.y158{bottom:776.390667pt;}
.y28{bottom:778.034669pt;}
.y1a4{bottom:779.490279pt;}
.y1ef{bottom:780.017757pt;}
.y2{bottom:781.661334pt;}
.y3c{bottom:782.286667pt;}
.y2dd{bottom:785.841506pt;}
.y61{bottom:786.435934pt;}
.ya9{bottom:788.032675pt;}
.y236{bottom:788.258792pt;}
.y1b5{bottom:788.486020pt;}
.ye0{bottom:788.486329pt;}
.y77{bottom:788.486706pt;}
.y12a{bottom:788.486844pt;}
.y1f4{bottom:790.904127pt;}
.y157{bottom:792.416000pt;}
.y1a3{bottom:797.254042pt;}
.y2dc{bottom:797.859696pt;}
.y60{bottom:799.739288pt;}
.y235{bottom:800.277632pt;}
.y1f3{bottom:802.922966pt;}
.ya8{bottom:804.056687pt;}
.y1b4{bottom:804.511165pt;}
.ydf{bottom:804.511474pt;}
.y76{bottom:804.511851pt;}
.y129{bottom:804.511989pt;}
.y156{bottom:806.550667pt;}
.y2db{bottom:809.878820pt;}
.y3a{bottom:812.296000pt;}
.y1a2{bottom:814.941806pt;}
.y3b{bottom:817.588000pt;}
.y234{bottom:817.965396pt;}
.ya7{bottom:820.081831pt;}
.y128{bottom:820.536000pt;}
.y1b3{bottom:820.536310pt;}
.yde{bottom:820.536619pt;}
.y75{bottom:820.536996pt;}
.y1f2{bottom:820.686729pt;}
.y2da{bottom:821.897943pt;}
.y155{bottom:824.844267pt;}
.y1a1{bottom:832.629570pt;}
.y2d9{bottom:833.840535pt;}
.y27{bottom:834.625331pt;}
.y233{bottom:835.653160pt;}
.ya6{bottom:836.032177pt;}
.ydd{bottom:836.485831pt;}
.y127{bottom:836.486400pt;}
.y1b2{bottom:836.486655pt;}
.y74{bottom:836.487342pt;}
.y39{bottom:838.300690pt;}
.y1f1{bottom:838.374494pt;}
.y154{bottom:841.852267pt;}
.y1e9{bottom:845.404106pt;}
.y2d8{bottom:845.859658pt;}
.y232{bottom:847.672000pt;}
.y1a0{bottom:850.393333pt;}
.ya5{bottom:852.057322pt;}
.y1b1{bottom:852.510667pt;}
.ydc{bottom:852.510976pt;}
.y73{bottom:852.511353pt;}
.y2d7{bottom:857.877848pt;}
.y153{bottom:858.861345pt;}
.y1{bottom:859.312000pt;}
.y26{bottom:862.625331pt;}
.y38{bottom:864.906667pt;}
.ya4{bottom:868.081333pt;}
.y19f{bottom:868.082560pt;}
.y231{bottom:868.082725pt;}
.y126{bottom:868.536000pt;}
.ydb{bottom:868.536121pt;}
.y72{bottom:868.536498pt;}
.y2d6{bottom:869.896971pt;}
.y1ec{bottom:873.674730pt;}
.y2d5{bottom:881.840497pt;}
.ya3{bottom:884.031733pt;}
.yda{bottom:884.485333pt;}
.y71{bottom:884.486844pt;}
.y230{bottom:890.003400pt;}
.y19e{bottom:890.079168pt;}
.y2d4{bottom:893.858687pt;}
.y37{bottom:895.597756pt;}
.yd9{bottom:900.510667pt;}
.y70{bottom:900.511989pt;}
.y2d3{bottom:905.877810pt;}
.y19d{bottom:910.034667pt;}
.y22f{bottom:912.680000pt;}
.y36{bottom:914.268000pt;}
.ya2{bottom:916.081333pt;}
.y6f{bottom:916.536000pt;}
.y2d2{bottom:917.896000pt;}
.y25{bottom:920.485335pt;}
.y5e{bottom:989.178382pt;}
.y5d{bottom:1002.557333pt;}
.y24{bottom:1035.664002pt;}
.h23{height:19.460748pt;}
.h1b{height:27.109750pt;}
.h7{height:28.560000pt;}
.h19{height:29.193833pt;}
.h15{height:29.244100pt;}
.h1a{height:30.500462pt;}
.h20{height:31.279583pt;}
.hc{height:32.645833pt;}
.h22{height:34.121692pt;}
.h24{height:34.996922pt;}
.h21{height:35.127539pt;}
.h1e{height:35.131853pt;}
.h1d{height:35.132389pt;}
.ha{height:36.726562pt;}
.h1f{height:37.036898pt;}
.h1c{height:37.121333pt;}
.h17{height:39.216000pt;}
.h6{height:40.800000pt;}
.hf{height:40.807292pt;}
.h18{height:41.434179pt;}
.h3{height:42.840000pt;}
.h14{height:43.872000pt;}
.h16{height:48.746667pt;}
.h2{height:48.960000pt;}
.he{height:48.968750pt;}
.h12{height:52.287564pt;}
.hb{height:61.210938pt;}
.h5{height:69.360000pt;}
.hd{height:73.453125pt;}
.h13{height:82.868846pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x10{left:66.670800pt;}
.x74{left:74.683333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:129.466667pt;}
.x7{left:170.560000pt;}
.x9{left:175.733333pt;}
.x4{left:180.874667pt;}
.x6{left:203.327991pt;}
.xa{left:240.226667pt;}
.x16{left:241.889244pt;}
.x19{left:245.367948pt;}
.x18{left:246.652000pt;}
.x13{left:251.338667pt;}
.x1d{left:254.286667pt;}
.x15{left:255.344019pt;}
.x71{left:258.669936pt;}
.x5{left:260.969328pt;}
.x14{left:267.362878pt;}
.x2d{left:272.881048pt;}
.x1e{left:274.242165pt;}
.x2e{left:290.871370pt;}
.x1f{left:291.930667pt;}
.x70{left:305.840000pt;}
.x20{left:311.659404pt;}
.x2f{left:316.799465pt;}
.x21{left:329.347168pt;}
.x30{left:334.488000pt;}
.x3e{left:336.982667pt;}
.x22{left:347.110931pt;}
.x12{left:352.176000pt;}
.x3f{left:354.670431pt;}
.xb{left:363.514667pt;}
.x23{left:364.799695pt;}
.x63{left:366.689271pt;}
.xc{left:368.654667pt;}
.x1c{left:369.636486pt;}
.x40{left:372.358195pt;}
.x24{left:382.487459pt;}
.x4c{left:384.452379pt;}
.x53{left:387.703290pt;}
.x41{left:390.121958pt;}
.x25{left:400.251222pt;}
.x64{left:402.065799pt;}
.x3{left:404.408000pt;}
.x54{left:405.391055pt;}
.x42{left:407.810722pt;}
.x26{left:417.939987pt;}
.x65{left:419.829562pt;}
.x55{left:423.079819pt;}
.x43{left:425.498486pt;}
.x27{left:435.627751pt;}
.x66{left:437.517326pt;}
.x56{left:440.843582pt;}
.x44{left:443.262250pt;}
.x67{left:449.536166pt;}
.x28{left:453.391514pt;}
.x57{left:458.531346pt;}
.xd{left:461.329333pt;}
.xe{left:466.545333pt;}
.x29{left:471.079278pt;}
.x4f{left:474.027618pt;}
.x58{left:476.220110pt;}
.x45{left:478.714777pt;}
.x68{left:484.988693pt;}
.x2a{left:488.843041pt;}
.x59{left:493.983873pt;}
.x46{left:496.402541pt;}
.x73{left:500.632489pt;}
.x69{left:502.676457pt;}
.x2b{left:506.305333pt;}
.x5a{left:511.671638pt;}
.x47{left:514.090305pt;}
.x72{left:519.303289pt;}
.x6a{left:520.364222pt;}
.x31{left:523.690477pt;}
.x5b{left:529.435401pt;}
.x48{left:531.854068pt;}
.x6b{left:538.127985pt;}
.x32{left:541.378241pt;}
.x5c{left:547.123165pt;}
.x49{left:549.542832pt;}
.x6c{left:555.816749pt;}
.x33{left:559.142005pt;}
.x5d{left:564.811929pt;}
.x4a{left:567.080000pt;}
.x6d{left:573.580512pt;}
.x4d{left:575.243268pt;}
.x34{left:576.830769pt;}
.x4e{left:578.115230pt;}
.x4b{left:582.424495pt;}
.x6e{left:591.042667pt;}
.x35{left:594.518533pt;}
.x5e{left:600.263456pt;}
.x6f{left:606.387162pt;}
.x1a{left:610.921793pt;}
.x36{left:612.282296pt;}
.x1b{left:616.666716pt;}
.x5f{left:617.952220pt;}
.x37{left:629.971060pt;}
.x60{left:635.715984pt;}
.x38{left:647.734823pt;}
.x61{left:653.403748pt;}
.x39{left:665.422587pt;}
.xf{left:668.372000pt;}
.x62{left:671.167511pt;}
.x51{left:676.533918pt;}
.x50{left:679.406879pt;}
.x3a{left:683.111352pt;}
.x2c{left:684.541279pt;}
.x11{left:690.066667pt;}
.x52{left:695.431666pt;}
.x3b{left:700.875115pt;}
.x3c{left:718.562879pt;}
.x17{left:732.170667pt;}
.x3d{left:740.030593pt;}
}




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