
    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_5f43019fa1a904cbfe0f0fa4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c125e711ea744d31c187b68f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8bba52282254e1652fe11587.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6cfb7460cad510d808b84ac5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_9e5019a0fd6da2e6e1c66bac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_5635cf0383f3d85a25d8e26b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_0d1cf6c75c83fd58db7bb756.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_417e9a364adcc3ecd44457a1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1d99eb41535a4b55ed51fba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_10f83699a33636a40f105060.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_a9cedd552b4fd5795d80bb42.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_9ff6b5a3f33a202381d7be9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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;}
.m2{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);}
.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;}
.ls2d{letter-spacing:-1.380000px;}
.ls5b{letter-spacing:-0.702000px;}
.ls24{letter-spacing:-0.660000px;}
.ls32{letter-spacing:-0.648000px;}
.ls5c{letter-spacing:-0.587400px;}
.ls45{letter-spacing:-0.579600px;}
.ls47{letter-spacing:-0.544800px;}
.ls28{letter-spacing:-0.540000px;}
.ls5a{letter-spacing:-0.472200px;}
.ls41{letter-spacing:-0.432000px;}
.ls33{letter-spacing:-0.414000px;}
.ls34{letter-spacing:-0.303000px;}
.ls51{letter-spacing:-0.301200px;}
.ls1a{letter-spacing:-0.279600px;}
.ls53{letter-spacing:-0.274200px;}
.ls40{letter-spacing:-0.248400px;}
.ls44{letter-spacing:-0.240600px;}
.ls4a{letter-spacing:-0.234000px;}
.lsb{letter-spacing:-0.205800px;}
.ls7{letter-spacing:-0.181200px;}
.ls4c{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.175800px;}
.ls1e{letter-spacing:-0.172200px;}
.ls49{letter-spacing:-0.115200px;}
.lsc{letter-spacing:-0.112200px;}
.ls2e{letter-spacing:-0.109200px;}
.ls56{letter-spacing:-0.107400px;}
.ls46{letter-spacing:-0.078600px;}
.ls2a{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls4d{letter-spacing:-0.041040px;}
.lsa{letter-spacing:-0.036000px;}
.ls4b{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.022320px;}
.ls5d{letter-spacing:0.038880px;}
.ls5{letter-spacing:0.060480px;}
.ls27{letter-spacing:0.060600px;}
.ls58{letter-spacing:0.064200px;}
.ls9{letter-spacing:0.066000px;}
.lsd{letter-spacing:0.067200px;}
.lsf{letter-spacing:0.068400px;}
.ls57{letter-spacing:0.070560px;}
.lse{letter-spacing:0.093600px;}
.ls3c{letter-spacing:0.099360px;}
.ls2f{letter-spacing:0.100800px;}
.ls23{letter-spacing:0.140400px;}
.ls39{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.152400px;}
.ls11{letter-spacing:0.152640px;}
.ls48{letter-spacing:0.154800px;}
.ls18{letter-spacing:0.168600px;}
.ls3{letter-spacing:0.171120px;}
.ls4{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.174240px;}
.ls42{letter-spacing:0.175200px;}
.ls26{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.186600px;}
.ls21{letter-spacing:0.196320px;}
.ls5f{letter-spacing:0.198000px;}
.ls54{letter-spacing:0.209400px;}
.ls1{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.220200px;}
.ls20{letter-spacing:0.220320px;}
.ls52{letter-spacing:0.228960px;}
.ls16{letter-spacing:0.241200px;}
.ls60{letter-spacing:0.256200px;}
.ls17{letter-spacing:0.279360px;}
.ls5e{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.300000px;}
.ls55{letter-spacing:0.305400px;}
.ls37{letter-spacing:0.306000px;}
.ls50{letter-spacing:0.314400px;}
.ls4f{letter-spacing:0.314640px;}
.ls2b{letter-spacing:0.340320px;}
.ls19{letter-spacing:0.342000px;}
.ls2{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.393600px;}
.ls29{letter-spacing:0.547800px;}
.ls25{letter-spacing:0.660000px;}
.ls35{letter-spacing:0.780000px;}
.ls3d{letter-spacing:0.894240px;}
.ls43{letter-spacing:0.900000px;}
.ls3b{letter-spacing:2.592000px;}
.ls3f{letter-spacing:6.779520px;}
.ls2c{letter-spacing:15.066720px;}
.ls22{letter-spacing:46.002720px;}
.ls1d{letter-spacing:51.989760px;}
.ls3a{letter-spacing:55.386720px;}
.ls30{letter-spacing:63.701280px;}
.ls38{letter-spacing:64.002720px;}
.ls1c{letter-spacing:98.789760px;}
.ls31{letter-spacing:100.200000px;}
.ls12{letter-spacing:847.542720px;}
.ls4e{letter-spacing:1911.077760px;}
.ls10{letter-spacing:1911.257760px;}
.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;}
}
.ws24{word-spacing:-59.760000px;}
.ws3{word-spacing:-24.372000px;}
.ws36{word-spacing:-21.340920px;}
.ws35{word-spacing:-21.244920px;}
.wsf{word-spacing:-21.188160px;}
.wse{word-spacing:-21.187920px;}
.ws33{word-spacing:-21.035520px;}
.ws34{word-spacing:-20.761320px;}
.ws10{word-spacing:-20.437920px;}
.ws1e{word-spacing:-19.038240px;}
.ws13{word-spacing:-17.322480px;}
.ws15{word-spacing:-17.167080px;}
.ws12{word-spacing:-17.149080px;}
.ws11{word-spacing:-16.980480px;}
.ws14{word-spacing:-16.700880px;}
.ws1f{word-spacing:-16.488000px;}
.ws20{word-spacing:-15.624000px;}
.ws3d{word-spacing:-15.226440px;}
.ws38{word-spacing:-14.970240px;}
.ws3a{word-spacing:-14.861040px;}
.ws39{word-spacing:-14.382840px;}
.ws18{word-spacing:-14.165760px;}
.ws1a{word-spacing:-14.053560px;}
.ws25{word-spacing:-13.899360px;}
.ws31{word-spacing:-13.820160px;}
.ws23{word-spacing:-13.811760px;}
.ws19{word-spacing:-13.692360px;}
.ws2a{word-spacing:-13.660560px;}
.ws17{word-spacing:-13.646160px;}
.ws1d{word-spacing:-13.606560px;}
.ws9{word-spacing:-13.599360px;}
.ws8{word-spacing:-13.572960px;}
.ws37{word-spacing:-13.569960px;}
.ws2b{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws30{word-spacing:-13.464720px;}
.ws1{word-spacing:-13.447440px;}
.ws1b{word-spacing:-13.440960px;}
.ws29{word-spacing:-13.427160px;}
.ws1c{word-spacing:-13.396560px;}
.ws5{word-spacing:-13.393560px;}
.ws2c{word-spacing:-13.390560px;}
.ws16{word-spacing:-13.333560px;}
.ws4{word-spacing:-13.299960px;}
.ws28{word-spacing:-13.265160px;}
.ws26{word-spacing:-13.257360px;}
.ws32{word-spacing:-13.204560px;}
.ws22{word-spacing:-13.202760px;}
.ws21{word-spacing:-13.091760px;}
.ws27{word-spacing:-12.926160px;}
.ws3c{word-spacing:-12.546000px;}
.ws3b{word-spacing:-12.402000px;}
.ws7{word-spacing:-12.204000px;}
.ws2e{word-spacing:-12.186000px;}
.ws2f{word-spacing:-12.024000px;}
.ws2d{word-spacing:-11.970000px;}
.wsb{word-spacing:-10.970640px;}
.wsd{word-spacing:-10.924560px;}
.wsc{word-spacing:-10.902240px;}
.ws2{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws0{word-spacing:0.132960px;}
._22{margin-left:-3.398400px;}
._1f{margin-left:-2.364480px;}
._0{margin-left:-1.261680px;}
._1{width:1.525680px;}
._c{width:3.037200px;}
._1b{width:4.123440px;}
._1c{width:5.225280px;}
._20{width:6.274800px;}
._23{width:7.374720px;}
._4{width:8.714880px;}
._3{width:10.274400px;}
._24{width:11.728800px;}
._21{width:14.912640px;}
._29{width:18.852480px;}
._28{width:20.139120px;}
._27{width:27.190800px;}
._1d{width:34.868160px;}
._1e{width:36.218160px;}
._2a{width:45.864000px;}
._2b{width:97.852080px;}
._26{width:153.497520px;}
._2{width:177.977520px;}
._19{width:588.773760px;}
._15{width:649.206000px;}
._1a{width:753.258240px;}
._e{width:803.957760px;}
._d{width:805.434240px;}
._25{width:850.650240px;}
._13{width:1012.698000px;}
._14{width:1030.147920px;}
._12{width:1135.578720px;}
._18{width:1173.641760px;}
._b{width:1222.696080px;}
._11{width:1314.936000px;}
._f{width:1485.371520px;}
._10{width:1551.710160px;}
._a{width:1762.783920px;}
._9{width:1911.194640px;}
._7{width:1931.737920px;}
._8{width:1937.010960px;}
._17{width:1993.248720px;}
._6{width:2216.095200px;}
._16{width:2227.957920px;}
._5{width:2240.454240px;}
.fc8{color:transparent;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(249,176,0);}
.fc5{color:rgb(21,103,164);}
.fc4{color:rgb(255,192,0);}
.fc9{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(0,52,112);}
.fc1{color:rgb(16,13,12);}
.fc0{color:rgb(109,209,39);}
.fsa{font-size:2.880000px;}
.fs5{font-size:5.760000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.060000px;}
.y1a{bottom:3.240000px;}
.y12d{bottom:3.600000px;}
.y133{bottom:3.645000px;}
.ye{bottom:3.960000px;}
.y11{bottom:4.005000px;}
.y25{bottom:4.140000px;}
.y19{bottom:4.320000px;}
.y201{bottom:4.500000px;}
.y224{bottom:4.530000px;}
.y21{bottom:4.680000px;}
.y2a9{bottom:5.220000px;}
.y2cc{bottom:5.250000px;}
.y27{bottom:5.400000px;}
.y4e{bottom:5.445000px;}
.y48{bottom:5.580000px;}
.y5a{bottom:5.625000px;}
.y46{bottom:5.940000px;}
.y162{bottom:6.120000px;}
.y16a{bottom:6.300000px;}
.y2ab{bottom:6.660000px;}
.y1a6{bottom:6.840000px;}
.yaa{bottom:7.020000px;}
.yb1{bottom:7.200000px;}
.y1b{bottom:8.100000px;}
.y1f{bottom:8.820000px;}
.y271{bottom:9.000000px;}
.y1d{bottom:9.540000px;}
.y4c{bottom:10.620000px;}
.y163{bottom:10.800000px;}
.y16b{bottom:10.980000px;}
.y12b{bottom:11.160000px;}
.y1f6{bottom:11.340000px;}
.y1e1{bottom:11.700000px;}
.y17d{bottom:11.880000px;}
.y1a2{bottom:11.910000px;}
.y1a1{bottom:12.810000px;}
.ybd{bottom:13.140000px;}
.y1e{bottom:13.680000px;}
.y292{bottom:14.040000px;}
.y1e9{bottom:14.265000px;}
.y1a4{bottom:16.020000px;}
.y1c0{bottom:16.065000px;}
.ya8{bottom:16.200000px;}
.y1ab{bottom:16.245000px;}
.yaf{bottom:16.380000px;}
.y186{bottom:16.560000px;}
.y182{bottom:16.605000px;}
.y166{bottom:17.100000px;}
.y1e6{bottom:17.145000px;}
.ye0{bottom:17.460000px;}
.y146{bottom:19.980000px;}
.y141{bottom:20.010000px;}
.y130{bottom:20.160000px;}
.y181{bottom:20.205000px;}
.y1ca{bottom:21.234000px;}
.y1a7{bottom:21.240000px;}
.y1b3{bottom:21.276000px;}
.y1ac{bottom:21.285000px;}
.y1af{bottom:21.420000px;}
.y168{bottom:21.780000px;}
.ybe{bottom:22.320000px;}
.y20{bottom:22.680000px;}
.y1c5{bottom:24.480000px;}
.y226{bottom:24.510000px;}
.y20f{bottom:24.525000px;}
.y1df{bottom:24.660000px;}
.y209{bottom:24.690000px;}
.y22d{bottom:24.705000px;}
.y184{bottom:24.840000px;}
.y1a5{bottom:25.200000px;}
.y1b2{bottom:25.236000px;}
.ya9{bottom:25.380000px;}
.y1e7{bottom:25.425000px;}
.yb0{bottom:25.560000px;}
.y3e{bottom:27.180000px;}
.y12a{bottom:27.720000px;}
.y160{bottom:28.260000px;}
.y17b{bottom:28.440000px;}
.y1e4{bottom:30.600000px;}
.y1e8{bottom:30.645000px;}
.ye1{bottom:30.960000px;}
.y1c7{bottom:31.134000px;}
.y1dd{bottom:32.760000px;}
.y1bc{bottom:34.020000px;}
.y1c1{bottom:34.065000px;}
.y1c3{bottom:34.200000px;}
.y17a{bottom:36.360000px;}
.y1cb{bottom:36.534000px;}
.y15c{bottom:36.540000px;}
.y2a2{bottom:36.720000px;}
.y28f{bottom:36.765000px;}
.ya{bottom:37.980000px;}
.y1c9{bottom:39.414000px;}
.y1cc{bottom:39.774000px;}
.y1de{bottom:41.040000px;}
.y129{bottom:44.100000px;}
.ye4{bottom:44.460000px;}
.y21b{bottom:44.640000px;}
.y225{bottom:44.670000px;}
.y20e{bottom:44.685000px;}
.y15f{bottom:44.820000px;}
.y217{bottom:44.850000px;}
.y202{bottom:44.865000px;}
.y3{bottom:45.720000px;}
.y15d{bottom:52.920000px;}
.y17f{bottom:53.100000px;}
.y28e{bottom:53.145000px;}
.y1c8{bottom:57.774000px;}
.ye6{bottom:57.960000px;}
.ye9{bottom:57.990000px;}
.y128{bottom:60.660000px;}
.y18e{bottom:60.840000px;}
.y2b{bottom:61.020000px;}
.y17c{bottom:61.380000px;}
.y2{bottom:63.720000px;}
.y9{bottom:64.980000px;}
.y15e{bottom:69.480000px;}
.y17e{bottom:69.660000px;}
.y28d{bottom:69.705000px;}
.ye5{bottom:84.960000px;}
.y21d{bottom:85.140000px;}
.y26c{bottom:86.085000px;}
.y8{bottom:91.980000px;}
.y193{bottom:95.040000px;}
.y26f{bottom:102.645000px;}
.yb9{bottom:109.800000px;}
.y289{bottom:112.860000px;}
.y17{bottom:113.040000px;}
.y218{bottom:115.020000px;}
.y4a{bottom:116.280000px;}
.y1f2{bottom:117.180000px;}
.yd7{bottom:117.360000px;}
.y7{bottom:118.980000px;}
.y26e{bottom:119.025000px;}
.y1b1{bottom:119.520000px;}
.y15b{bottom:123.840000px;}
.y195{bottom:124.020000px;}
.y198{bottom:124.560000px;}
.yb8{bottom:126.360000px;}
.y19f{bottom:128.160000px;}
.y199{bottom:129.420000px;}
.y97{bottom:129.600000px;}
.y19a{bottom:129.780000px;}
.yb7{bottom:130.140000px;}
.y26d{bottom:135.585000px;}
.y23{bottom:136.080000px;}
.y288{bottom:136.800000px;}
.y237{bottom:138.600000px;}
.y49{bottom:138.780000px;}
.y1c6{bottom:142.416000px;}
.y194{bottom:142.605000px;}
.yb6{bottom:142.740000px;}
.y1f1{bottom:144.180000px;}
.yd6{bottom:144.360000px;}
.y25c{bottom:146.340000px;}
.y196{bottom:150.525000px;}
.y15a{bottom:150.840000px;}
.y2ce{bottom:154.080000px;}
.y6{bottom:155.880000px;}
.y96{bottom:156.600000px;}
.yb5{bottom:159.300000px;}
.y236{bottom:160.380000px;}
.y287{bottom:160.920000px;}
.y1b0{bottom:162.750000px;}
.yb4{bottom:163.800000px;}
.y19d{bottom:167.985000px;}
.y25b{bottom:168.120000px;}
.y47{bottom:169.200000px;}
.y197{bottom:169.425000px;}
.y1f0{bottom:171.180000px;}
.yd5{bottom:171.360000px;}
.y18c{bottom:174.240000px;}
.y22{bottom:174.420000px;}
.y216{bottom:175.500000px;}
.yb3{bottom:176.040000px;}
.y159{bottom:177.840000px;}
.y19c{bottom:178.785000px;}
.y19b{bottom:180.765000px;}
.y2cd{bottom:181.080000px;}
.y235{bottom:181.980000px;}
.y19e{bottom:182.205000px;}
.y5{bottom:182.925000px;}
.y95{bottom:183.600000px;}
.y286{bottom:184.860000px;}
.y25a{bottom:189.900000px;}
.y2a7{bottom:192.960000px;}
.y126{bottom:194.940000px;}
.y1ef{bottom:198.180000px;}
.yd4{bottom:198.360000px;}
.y45{bottom:199.800000px;}
.y18b{bottom:201.240000px;}
.y234{bottom:203.760000px;}
.y158{bottom:204.840000px;}
.y1ae{bottom:205.950000px;}
.y285{bottom:208.800000px;}
.y94{bottom:210.630000px;}
.y259{bottom:211.710000px;}
.yb2{bottom:211.890000px;}
.y1c{bottom:212.610000px;}
.y1c4{bottom:216.030000px;}
.yfa{bottom:216.570000px;}
.y2a6{bottom:216.930000px;}
.yd9{bottom:219.270000px;}
.y125{bottom:221.970000px;}
.y73{bottom:223.950000px;}
.yd3{bottom:225.390000px;}
.y233{bottom:225.570000px;}
.y2cb{bottom:227.370000px;}
.y18a{bottom:228.270000px;}
.y157{bottom:231.870000px;}
.y284{bottom:232.950000px;}
.y258{bottom:233.310000px;}
.yae{bottom:234.210000px;}
.yf7{bottom:234.570000px;}
.y215{bottom:236.010000px;}
.y93{bottom:237.630000px;}
.y2a5{bottom:243.930000px;}
.y1ee{bottom:244.470000px;}
.y44{bottom:245.730000px;}
.y232{bottom:247.350000px;}
.y124{bottom:248.970000px;}
.y1ad{bottom:249.330000px;}
.y2ca{bottom:249.870000px;}
.y18{bottom:250.950000px;}
.yd2{bottom:252.390000px;}
.y283{bottom:254.550000px;}
.y257{bottom:255.090000px;}
.y189{bottom:255.270000px;}
.y156{bottom:255.630000px;}
.y214{bottom:257.790000px;}
.y1c2{bottom:259.230000px;}
.yf6{bottom:261.570000px;}
.y92{bottom:264.630000px;}
.y2a4{bottom:267.690000px;}
.y43{bottom:268.950000px;}
.y155{bottom:272.190000px;}
.y2c9{bottom:272.370000px;}
.y72{bottom:274.890000px;}
.y123{bottom:275.970000px;}
.y256{bottom:276.870000px;}
.y282{bottom:277.050000px;}
.yad{bottom:277.950000px;}
.y1ed{bottom:278.130000px;}
.y188{bottom:279.030000px;}
.yd1{bottom:279.390000px;}
.y231{bottom:287.670000px;}
.yf5{bottom:288.570000px;}
.y2a3{bottom:290.190000px;}
.y91{bottom:291.630000px;}
.y1aa{bottom:292.530000px;}
.y2c8{bottom:294.870000px;}
.y255{bottom:298.650000px;}
.yac{bottom:300.270000px;}
.y1ec{bottom:300.630000px;}
.y213{bottom:301.170000px;}
.y1bf{bottom:302.610000px;}
.y122{bottom:302.970000px;}
.y16{bottom:303.690000px;}
.yd0{bottom:306.390000px;}
.y5d{bottom:310.530000px;}
.y187{bottom:312.870000px;}
.yf4{bottom:315.570000px;}
.y2c7{bottom:317.370000px;}
.y90{bottom:318.630000px;}
.y254{bottom:320.430000px;}
.y154{bottom:321.510000px;}
.yab{bottom:322.590000px;}
.y2a1{bottom:323.850000px;}
.y71{bottom:325.830000px;}
.y281{bottom:327.270000px;}
.y230{bottom:327.990000px;}
.y121{bottom:329.970000px;}
.ycf{bottom:333.390000px;}
.y1eb{bottom:334.290000px;}
.y15{bottom:335.730000px;}
.y1a9{bottom:335.955000px;}
.y153{bottom:338.070000px;}
.y2c6{bottom:339.870000px;}
.y212{bottom:341.490000px;}
.y253{bottom:342.210000px;}
.yf3{bottom:342.570000px;}
.ya7{bottom:344.910000px;}
.y8f{bottom:345.630000px;}
.y1be{bottom:345.855000px;}
.y185{bottom:346.530000px;}
.y22f{bottom:349.590000px;}
.y5c{bottom:353.910000px;}
.y152{bottom:354.450000px;}
.y120{bottom:356.970000px;}
.yce{bottom:360.390000px;}
.y2c5{bottom:362.370000px;}
.y14{bottom:362.730000px;}
.y211{bottom:363.270000px;}
.y252{bottom:363.810000px;}
.y109{bottom:369.390000px;}
.yf2{bottom:369.570000px;}
.y151{bottom:371.010000px;}
.y22e{bottom:371.370000px;}
.y8e{bottom:372.630000px;}
.y2a0{bottom:374.070000px;}
.y70{bottom:376.950000px;}
.y280{bottom:377.310000px;}
.y1a8{bottom:379.155000px;}
.y183{bottom:380.190000px;}
.y11f{bottom:383.970000px;}
.y2c4{bottom:384.870000px;}
.y210{bottom:385.050000px;}
.y251{bottom:385.590000px;}
.ycd{bottom:387.390000px;}
.y150{bottom:387.570000px;}
.ya6{bottom:388.650000px;}
.y1bd{bottom:389.235000px;}
.y13{bottom:389.730000px;}
.yf1{bottom:396.570000px;}
.y5b{bottom:397.110000px;}
.y8d{bottom:399.630000px;}
.y27f{bottom:399.810000px;}
.y1ea{bottom:401.070000px;}
.y14f{bottom:403.950000px;}
.y250{bottom:407.370000px;}
.ya5{bottom:410.970000px;}
.ycc{bottom:414.390000px;}
.y12{bottom:416.730000px;}
.y29f{bottom:419.070000px;}
.y14e{bottom:420.510000px;}
.y1a3{bottom:422.535000px;}
.yf0{bottom:423.570000px;}
.y108{bottom:424.110000px;}
.y20d{bottom:425.370000px;}
.y8c{bottom:426.630000px;}
.y6f{bottom:427.890000px;}
.y24f{bottom:429.150000px;}
.y180{bottom:430.410000px;}
.y22c{bottom:431.850000px;}
.y1bb{bottom:432.435000px;}
.y27e{bottom:433.650000px;}
.y1e5{bottom:434.730000px;}
.y2c3{bottom:435.450000px;}
.y11e{bottom:437.970000px;}
.y59{bottom:440.310000px;}
.ya4{bottom:440.670000px;}
.ycb{bottom:441.390000px;}
.y29e{bottom:441.570000px;}
.y10{bottom:443.730000px;}
.yef{bottom:450.615000px;}
.y24e{bottom:450.975000px;}
.y107{bottom:452.055000px;}
.y14d{bottom:453.495000px;}
.y8b{bottom:453.675000px;}
.ya3{bottom:455.835000px;}
.y27d{bottom:456.195000px;}
.y179{bottom:464.115000px;}
.y11d{bottom:465.015000px;}
.y2c2{bottom:465.375000px;}
.y1a0{bottom:465.735000px;}
.yca{bottom:468.435000px;}
.y14c{bottom:469.875000px;}
.yf{bottom:470.775000px;}
.y22b{bottom:472.215000px;}
.y24d{bottom:472.755000px;}
.y29d{bottom:475.455000px;}
.y1ba{bottom:475.665000px;}
.yee{bottom:477.615000px;}
.y27c{bottom:478.695000px;}
.y6e{bottom:478.875000px;}
.y1e3{bottom:479.055000px;}
.y106{bottom:479.775000px;}
.ya2{bottom:479.955000px;}
.y8a{bottom:480.675000px;}
.y9e{bottom:482.115000px;}
.y58{bottom:483.735000px;}
.y20c{bottom:485.715000px;}
.y14b{bottom:486.435000px;}
.y2c1{bottom:490.395000px;}
.y11c{bottom:492.015000px;}
.yc9{bottom:492.195000px;}
.y24c{bottom:494.355000px;}
.yd{bottom:497.775000px;}
.y29c{bottom:497.955000px;}
.yed{bottom:501.555000px;}
.y192{bottom:502.305000px;}
.y14a{bottom:502.815000px;}
.y89{bottom:507.675000px;}
.yf9{bottom:509.115000px;}
.y6d{bottom:510.375000px;}
.y27b{bottom:512.355000px;}
.y2c0{bottom:514.155000px;}
.y24b{bottom:516.135000px;}
.y11b{bottom:519.015000px;}
.y1b9{bottom:519.045000px;}
.y149{bottom:519.375000px;}
.y29b{bottom:520.455000px;}
.y1e2{bottom:523.335000px;}
.y29{bottom:524.775000px;}
.y57{bottom:526.935000px;}
.yec{bottom:529.275000px;}
.yc8{bottom:529.635000px;}
.y22a{bottom:532.515000px;}
.y105{bottom:534.495000px;}
.y88{bottom:534.675000px;}
.y27a{bottom:534.855000px;}
.y148{bottom:535.935000px;}
.y2bf{bottom:536.655000px;}
.y24a{bottom:537.915000px;}
.y6c{bottom:541.875000px;}
.y41{bottom:543.675000px;}
.y1e0{bottom:545.835000px;}
.y11a{bottom:546.015000px;}
.yc7{bottom:551.775000px;}
.y147{bottom:552.315000px;}
.y28{bottom:554.655000px;}
.y178{bottom:554.835000px;}
.y279{bottom:557.355000px;}
.y2be{bottom:559.155000px;}
.y249{bottom:559.695000px;}
.y87{bottom:561.675000px;}
.y1b8{bottom:562.245000px;}
.y40{bottom:562.755000px;}
.y9c{bottom:563.115000px;}
.y20b{bottom:566.355000px;}
.y145{bottom:568.875000px;}
.y177{bottom:569.955000px;}
.y56{bottom:570.315000px;}
.y29a{bottom:570.495000px;}
.y119{bottom:573.015000px;}
.y6b{bottom:573.375000px;}
.yc6{bottom:574.095000px;}
.y26{bottom:578.775000px;}
.y1dc{bottom:579.495000px;}
.y278{bottom:579.855000px;}
.y248{bottom:581.475000px;}
.y2bd{bottom:581.655000px;}
.yeb{bottom:583.995000px;}
.y3f{bottom:585.795000px;}
.y86{bottom:588.675000px;}
.y104{bottom:589.215000px;}
.y229{bottom:592.995000px;}
.y176{bottom:594.795000px;}
.y118{bottom:600.015000px;}
.y144{bottom:601.815000px;}
.y247{bottom:603.255000px;}
.y2bc{bottom:604.155000px;}
.y299{bottom:604.335000px;}
.y6a{bottom:604.875000px;}
.y1b7{bottom:605.625000px;}
.y24{bottom:608.655000px;}
.y3d{bottom:609.735000px;}
.yea{bottom:611.715000px;}
.y55{bottom:613.515000px;}
.y228{bottom:614.775000px;}
.y85{bottom:615.675000px;}
.y103{bottom:616.935000px;}
.yc5{bottom:618.015000px;}
.y143{bottom:618.195000px;}
.y175{bottom:621.795000px;}
.y2e0{bottom:623.235000px;}
.y246{bottom:624.855000px;}
.y2bb{bottom:626.655000px;}
.y298{bottom:626.835000px;}
.y117{bottom:628.455000px;}
.y277{bottom:636.015000px;}
.y69{bottom:636.375000px;}
.y227{bottom:636.555000px;}
.ye8{bottom:639.435000px;}
.yc4{bottom:640.155000px;}
.y84{bottom:642.675000px;}
.y102{bottom:644.655000px;}
.y245{bottom:646.635000px;}
.y20a{bottom:646.815000px;}
.y174{bottom:648.795000px;}
.y1b6{bottom:648.870000px;}
.y2ba{bottom:649.155000px;}
.y297{bottom:649.335000px;}
.y2df{bottom:650.235000px;}
.y142{bottom:651.135000px;}
.y54{bottom:656.715000px;}
.y3c{bottom:657.795000px;}
.yc3{bottom:662.475000px;}
.y1db{bottom:662.655000px;}
.yc{bottom:662.835000px;}
.y140{bottom:667.695000px;}
.y244{bottom:668.415000px;}
.y208{bottom:668.595000px;}
.y83{bottom:669.675000px;}
.y276{bottom:669.855000px;}
.y2b9{bottom:671.655000px;}
.y296{bottom:671.835000px;}
.y173{bottom:675.795000px;}
.y223{bottom:676.875000px;}
.y2de{bottom:677.235000px;}
.y116{bottom:681.045000px;}
.y3b{bottom:681.765000px;}
.yc2{bottom:684.825000px;}
.y68{bottom:687.345000px;}
.y1da{bottom:687.705000px;}
.y243{bottom:690.225000px;}
.y1f4{bottom:691.125000px;}
.y1b5{bottom:692.070000px;}
.y275{bottom:692.385000px;}
.y2b8{bottom:694.185000px;}
.y295{bottom:694.365000px;}
.y82{bottom:696.705000px;}
.y101{bottom:699.585000px;}
.y53{bottom:700.125000px;}
.y13f{bottom:700.665000px;}
.ya1{bottom:701.925000px;}
.y172{bottom:702.825000px;}
.y2dd{bottom:704.265000px;}
.y115{bottom:704.805000px;}
.yb{bottom:705.705000px;}
.yc1{bottom:707.145000px;}
.y207{bottom:708.945000px;}
.y1f3{bottom:709.485000px;}
.y191{bottom:710.970000px;}
.y3a{bottom:711.285000px;}
.y242{bottom:712.005000px;}
.y1d9{bottom:714.705000px;}
.y274{bottom:714.885000px;}
.y2b7{bottom:716.685000px;}
.y67{bottom:718.845000px;}
.ye7{bottom:721.185000px;}
.y81{bottom:723.705000px;}
.y9b{bottom:725.145000px;}
.y100{bottom:727.305000px;}
.y294{bottom:728.025000px;}
.yc0{bottom:729.285000px;}
.y171{bottom:729.825000px;}
.y206{bottom:730.725000px;}
.y2dc{bottom:731.265000px;}
.y114{bottom:732.525000px;}
.y1fe{bottom:733.245000px;}
.y13e{bottom:733.605000px;}
.y39{bottom:734.325000px;}
.y1b4{bottom:735.450000px;}
.y190{bottom:735.990000px;}
.y222{bottom:737.205000px;}
.y2b6{bottom:740.985000px;}
.y1d8{bottom:741.705000px;}
.y52{bottom:743.325000px;}
.y13d{bottom:750.165000px;}
.y66{bottom:750.345000px;}
.y293{bottom:750.525000px;}
.y80{bottom:750.705000px;}
.ybf{bottom:751.605000px;}
.ya0{bottom:752.145000px;}
.y241{bottom:752.325000px;}
.y170{bottom:753.585000px;}
.yff{bottom:755.025000px;}
.y4{bottom:757.725000px;}
.y2db{bottom:758.265000px;}
.y38{bottom:758.445000px;}
.y18f{bottom:762.990000px;}
.y273{bottom:764.925000px;}
.y1fd{bottom:765.645000px;}
.y13c{bottom:766.545000px;}
.y1d7{bottom:768.705000px;}
.y2b5{bottom:770.865000px;}
.y205{bottom:771.045000px;}
.ybc{bottom:773.925000px;}
.y16f{bottom:776.085000px;}
.y221{bottom:777.525000px;}
.y7f{bottom:777.705000px;}
.y9d{bottom:779.145000px;}
.y65{bottom:781.845000px;}
.y36{bottom:782.385000px;}
.yfe{bottom:782.745000px;}
.y13b{bottom:783.105000px;}
.y2da{bottom:785.265000px;}
.y51{bottom:786.705000px;}
.y113{bottom:787.245000px;}
.y272{bottom:787.425000px;}
.y2b4{bottom:794.985000px;}
.y1d6{bottom:795.705000px;}
.y1fc{bottom:798.045000px;}
.y16e{bottom:798.585000px;}
.y220{bottom:799.305000px;}
.y13a{bottom:799.485000px;}
.y291{bottom:800.745000px;}
.ye3{bottom:803.085000px;}
.y7e{bottom:804.705000px;}
.y35{bottom:806.325000px;}
.y270{bottom:809.925000px;}
.yfd{bottom:810.465000px;}
.y204{bottom:811.185000px;}
.y2d9{bottom:812.265000px;}
.y64{bottom:813.525000px;}
.y18d{bottom:813.960000px;}
.y112{bottom:814.965000px;}
.y139{bottom:816.045000px;}
.y2b3{bottom:816.765000px;}
.ybb{bottom:818.745000px;}
.y16d{bottom:821.085000px;}
.y1d5{bottom:822.705000px;}
.y268{bottom:826.305000px;}
.y50{bottom:829.905000px;}
.y1fb{bottom:830.445000px;}
.y7d{bottom:831.705000px;}
.y138{bottom:832.425000px;}
.yba{bottom:833.865000px;}
.y34{bottom:835.845000px;}
.y2d8{bottom:836.025000px;}
.y2b2{bottom:839.265000px;}
.y16c{bottom:843.585000px;}
.y267{bottom:844.665000px;}
.y290{bottom:845.025000px;}
.yfc{bottom:845.745000px;}
.y137{bottom:848.985000px;}
.y1d4{bottom:849.705000px;}
.y203{bottom:851.505000px;}
.y240{bottom:854.565000px;}
.y2d7{bottom:858.525000px;}
.y7c{bottom:858.705000px;}
.yf8{bottom:860.145000px;}
.yfb{bottom:860.865000px;}
.y21f{bottom:861.225000px;}
.y2b1{bottom:861.765000px;}
.y33{bottom:862.845000px;}
.y9f{bottom:863.925000px;}
.y63{bottom:864.465000px;}
.y136{bottom:865.545000px;}
.y169{bottom:866.085000px;}
.y111{bottom:869.685000px;}
.y266{bottom:871.665000px;}
.y4f{bottom:873.285000px;}
.y23f{bottom:876.345000px;}
.y1d3{bottom:876.705000px;}
.y2d6{bottom:881.025000px;}
.y135{bottom:881.925000px;}
.y2b0{bottom:884.265000px;}
.y7b{bottom:885.705000px;}
.y167{bottom:888.585000px;}
.y32{bottom:889.845000px;}
.y200{bottom:891.825000px;}
.y28c{bottom:895.065000px;}
.y1fa{bottom:895.245000px;}
.y62{bottom:895.965000px;}
.y110{bottom:897.585000px;}
.y134{bottom:898.485000px;}
.y265{bottom:898.665000px;}
.y21e{bottom:901.545000px;}
.y2d5{bottom:903.525000px;}
.y1d2{bottom:903.705000px;}
.y23e{bottom:905.505000px;}
.y2af{bottom:906.765000px;}
.ye2{bottom:911.805000px;}
.y7a{bottom:912.705000px;}
.y132{bottom:914.865000px;}
.y4d{bottom:916.485000px;}
.y31{bottom:916.890000px;}
.y21c{bottom:923.370000px;}
.y10f{bottom:925.350000px;}
.y264{bottom:925.710000px;}
.y2d4{bottom:926.070000px;}
.y61{bottom:927.510000px;}
.y1f9{bottom:927.690000px;}
.y2ae{bottom:929.310000px;}
.y23d{bottom:930.570000px;}
.y1d1{bottom:930.750000px;}
.y131{bottom:931.470000px;}
.y165{bottom:932.910000px;}
.ydf{bottom:939.570000px;}
.y79{bottom:939.750000px;}
.y30{bottom:943.890000px;}
.y12f{bottom:947.850000px;}
.y2d3{bottom:948.570000px;}
.y2ad{bottom:951.810000px;}
.y263{bottom:952.710000px;}
.y10e{bottom:953.070000px;}
.y23c{bottom:957.570000px;}
.y1d0{bottom:957.750000px;}
.y60{bottom:959.010000px;}
.y4b{bottom:959.730000px;}
.y1f8{bottom:960.090000px;}
.y78{bottom:966.750000px;}
.y2f{bottom:969.990000px;}
.y2d2{bottom:971.070000px;}
.y2ac{bottom:974.310000px;}
.y262{bottom:975.750000px;}
.y164{bottom:977.190000px;}
.y23b{bottom:980.610000px;}
.y10d{bottom:980.790000px;}
.y26b{bottom:981.510000px;}
.y1cf{bottom:984.750000px;}
.y1f7{bottom:992.490000px;}
.y2d1{bottom:993.570000px;}
.y77{bottom:993.750000px;}
.yde{bottom:994.290000px;}
.y2e{bottom:995.010000px;}
.y2aa{bottom:996.810000px;}
.y12e{bottom:997.350000px;}
.y161{bottom:999.690000px;}
.y5f{bottom:1009.950000px;}
.y1ce{bottom:1011.750000px;}
.y12c{bottom:1013.910000px;}
.y261{bottom:1016.070000px;}
.y2a8{bottom:1019.850000px;}
.y76{bottom:1020.750000px;}
.y23a{bottom:1020.930000px;}
.ydd{bottom:1022.010000px;}
.yd8{bottom:1022.190000px;}
.y26a{bottom:1022.730000px;}
.y21a{bottom:1024.170000px;}
.y1f5{bottom:1024.890000px;}
.y127{bottom:1031.010000px;}
.y10c{bottom:1035.510000px;}
.y260{bottom:1037.850000px;}
.y2d0{bottom:1038.570000px;}
.y1ff{bottom:1038.750000px;}
.y239{bottom:1042.710000px;}
.y28b{bottom:1044.330000px;}
.y2d{bottom:1045.050000px;}
.y75{bottom:1047.750000px;}
.y9a{bottom:1049.190000px;}
.ydc{bottom:1049.730000px;}
.y25f{bottom:1059.630000px;}
.y238{bottom:1064.310000px;}
.y1cd{bottom:1067.190000px;}
.y2c{bottom:1069.890000px;}
.y5e{bottom:1071.330000px;}
.y99{bottom:1074.750000px;}
.y269{bottom:1076.190000px;}
.y42{bottom:1076.370000px;}
.ydb{bottom:1077.630000px;}
.y25e{bottom:1081.230000px;}
.y2cf{bottom:1082.850000px;}
.y219{bottom:1084.470000px;}
.y28a{bottom:1088.790000px;}
.y10b{bottom:1097.790000px;}
.y98{bottom:1101.750000px;}
.y25d{bottom:1103.010000px;}
.y74{bottom:1103.190000px;}
.yda{bottom:1112.730000px;}
.y10a{bottom:1112.910000px;}
.y1{bottom:1174.320000px;}
.y2a{bottom:1184.580000px;}
.h9{height:4.404375px;}
.h31{height:16.380000px;}
.h32{height:16.560000px;}
.h34{height:16.596000px;}
.h23{height:21.420000px;}
.h25{height:21.600000px;}
.h29{height:21.636000px;}
.h37{height:21.780000px;}
.h57{height:21.816000px;}
.h5c{height:22.320000px;}
.h5d{height:23.580000px;}
.h15{height:23.940000px;}
.h16{height:23.976000px;}
.h10{height:24.120000px;}
.h13{height:25.560000px;}
.ha{height:27.000000px;}
.hb{height:27.036000px;}
.h5e{height:27.360000px;}
.h26{height:27.527344px;}
.h1c{height:29.700000px;}
.h1a{height:29.736000px;}
.h11{height:29.880000px;}
.h1e{height:29.916000px;}
.h4b{height:31.680000px;}
.h4c{height:31.716000px;}
.h33{height:32.940000px;}
.h35{height:32.976000px;}
.h3d{height:33.120000px;}
.h27{height:35.806641px;}
.h41{height:35.856000px;}
.h5a{height:36.180000px;}
.h28{height:36.540000px;}
.h2a{height:36.720000px;}
.h1b{height:36.886641px;}
.hf{height:38.196000px;}
.he{height:38.340000px;}
.h22{height:38.671172px;}
.h4f{height:40.140000px;}
.h4e{height:40.320000px;}
.h50{height:40.356000px;}
.h42{height:42.480000px;}
.h46{height:42.516000px;}
.h45{height:42.660000px;}
.h44{height:42.696000px;}
.h24{height:43.020000px;}
.h49{height:43.380000px;}
.h38{height:43.560000px;}
.h39{height:43.596000px;}
.h43{height:45.637031px;}
.h12{height:45.695391px;}
.h3{height:47.980898px;}
.h17{height:48.060000px;}
.h59{height:49.320000px;}
.h2{height:49.394180px;}
.h3b{height:49.500000px;}
.h19{height:50.650312px;}
.hd{height:53.709961px;}
.h2b{height:54.000000px;}
.h2f{height:54.036000px;}
.h3a{height:54.421875px;}
.hc{height:55.291992px;}
.h3c{height:55.503491px;}
.h4{height:59.439023px;}
.h55{height:60.300000px;}
.h53{height:60.336000px;}
.h54{height:60.480000px;}
.h4d{height:60.516000px;}
.h7{height:61.189805px;}
.h18{height:61.423863px;}
.h14{height:64.413984px;}
.h1f{height:65.884219px;}
.h4a{height:66.060000px;}
.h5b{height:67.824844px;}
.h47{height:72.900000px;}
.h30{height:73.620000px;}
.h6{height:73.722656px;}
.h21{height:74.953125px;}
.h48{height:75.060000px;}
.h51{height:80.460000px;}
.h52{height:80.640000px;}
.h2d{height:81.000000px;}
.h2e{height:81.036000px;}
.h36{height:82.440000px;}
.h1d{height:86.255508px;}
.h20{height:87.695156px;}
.h56{height:100.800000px;}
.h2c{height:108.000000px;}
.h8{height:110.583984px;}
.h58{height:148.356000px;}
.h40{height:200.550000px;}
.h5{height:214.050000px;}
.h3e{height:892.440000px;}
.h3f{height:892.500000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w48{width:26.460000px;}
.w49{width:27.180000px;}
.w4a{width:27.360000px;}
.w4b{width:27.396000px;}
.w24{width:29.880000px;}
.w21{width:30.780000px;}
.w2f{width:31.140000px;}
.w27{width:31.176000px;}
.w56{width:31.320000px;}
.w4c{width:31.680000px;}
.w46{width:32.040000px;}
.w45{width:32.076000px;}
.wa{width:35.640000px;}
.w42{width:37.116000px;}
.w7{width:38.160000px;}
.w37{width:39.240000px;}
.w6d{width:41.400000px;}
.w47{width:44.280000px;}
.w31{width:46.620000px;}
.w3d{width:48.240000px;}
.w39{width:48.276000px;}
.w1e{width:52.020000px;}
.w4d{width:57.240000px;}
.w1b{width:57.600000px;}
.w3a{width:58.140000px;}
.wb{width:59.040000px;}
.w36{width:61.956000px;}
.w18{width:62.460000px;}
.w34{width:63.000000px;}
.w32{width:64.980000px;}
.w8{width:67.140000px;}
.w63{width:68.076000px;}
.w5c{width:68.796000px;}
.w1a{width:71.676000px;}
.w33{width:71.856000px;}
.w64{width:72.360000px;}
.w23{width:72.396000px;}
.w5d{width:72.900000px;}
.w66{width:73.620000px;}
.w26{width:73.656000px;}
.w67{width:73.836000px;}
.w61{width:74.016000px;}
.w5e{width:74.340000px;}
.w2b{width:74.376000px;}
.w52{width:74.520000px;}
.w5f{width:74.556000px;}
.w3b{width:77.760000px;}
.w3c{width:77.796000px;}
.w12{width:81.360000px;}
.w68{width:84.240000px;}
.w35{width:84.420000px;}
.w62{width:84.600000px;}
.w60{width:85.140000px;}
.w2d{width:94.896000px;}
.w2e{width:95.436000px;}
.w54{width:95.580000px;}
.w29{width:95.796000px;}
.w14{width:104.616000px;}
.w6b{width:105.300000px;}
.w65{width:105.516000px;}
.w59{width:105.876000px;}
.w2c{width:106.380000px;}
.w38{width:107.100000px;}
.w4e{width:116.136000px;}
.w2a{width:117.000000px;}
.w1d{width:119.556000px;}
.w50{width:126.000000px;}
.w69{width:141.336000px;}
.w58{width:142.236000px;}
.w57{width:144.396000px;}
.w6f{width:147.816000px;}
.w5b{width:158.610000px;}
.w30{width:164.550000px;}
.w3e{width:173.910000px;}
.w10{width:191.010000px;}
.w4{width:191.370000px;}
.w22{width:211.890000px;}
.w5{width:212.610000px;}
.w9{width:224.355000px;}
.w15{width:232.770000px;}
.w6a{width:233.130000px;}
.w5a{width:234.030000px;}
.w20{width:243.795000px;}
.w25{width:254.370000px;}
.w28{width:254.910000px;}
.wc{width:266.115000px;}
.wf{width:274.575000px;}
.w6{width:275.115000px;}
.w11{width:276.015000px;}
.wd{width:291.495000px;}
.w43{width:293.070000px;}
.w70{width:307.650000px;}
.w4f{width:318.315000px;}
.w6c{width:350.175000px;}
.w1f{width:382.035000px;}
.w44{width:386.490000px;}
.we{width:403.995000px;}
.w6e{width:414.075000px;}
.w16{width:444.885000px;}
.w13{width:490.785000px;}
.w1c{width:500.505000px;}
.w19{width:542.625000px;}
.w51{width:552.030000px;}
.w55{width:584.250000px;}
.w53{width:605.310000px;}
.w3{width:678.750000px;}
.w17{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w40{width:1263.000000px;}
.w41{width:1263.059981px;}
.w3f{width:1263.060000px;}
.x5d{left:-15.480000px;}
.x0{left:0.000000px;}
.x49{left:1.800000px;}
.x34{left:4.320000px;}
.x2b{left:6.480000px;}
.x13{left:7.740000px;}
.x38{left:9.360000px;}
.x2e{left:10.980000px;}
.x32{left:12.240000px;}
.x3b{left:13.500000px;}
.x10{left:14.580000px;}
.x4d{left:16.020000px;}
.x46{left:17.100000px;}
.xc{left:18.360000px;}
.x29{left:19.620000px;}
.x56{left:21.090000px;}
.x5c{left:22.140000px;}
.x36{left:23.220000px;}
.x3a{left:25.200000px;}
.x2d{left:27.180000px;}
.x2f{left:29.160000px;}
.x35{left:30.780000px;}
.x30{left:32.760000px;}
.x7a{left:33.885000px;}
.x65{left:34.920000px;}
.x4a{left:36.030000px;}
.x58{left:37.620000px;}
.x40{left:38.880000px;}
.x3f{left:40.710000px;}
.x4b{left:42.120000px;}
.x3d{left:44.100000px;}
.x4c{left:47.385000px;}
.x75{left:49.320000px;}
.x31{left:53.460000px;}
.x3e{left:55.080000px;}
.x6d{left:57.780000px;}
.x6c{left:60.300000px;}
.x57{left:63.360000px;}
.x3{left:71.634000px;}
.x33{left:84.996000px;}
.x71{left:86.580000px;}
.x67{left:92.160000px;}
.x41{left:96.156000px;}
.x69{left:100.620000px;}
.x2{left:106.415987px;}
.x23{left:110.915987px;}
.x22{left:112.175987px;}
.x6a{left:117.540000px;}
.x6b{left:123.885000px;}
.x4e{left:125.496000px;}
.x42{left:128.016000px;}
.x68{left:131.445000px;}
.x18{left:133.415987px;}
.x27{left:138.636000px;}
.x17{left:142.595987px;}
.xd{left:144.576000px;}
.x79{left:149.256000px;}
.x19{left:160.409987px;}
.x24{left:165.450000px;}
.x1{left:167.069987px;}
.x6{left:170.679000px;}
.x7{left:175.179000px;}
.x6e{left:180.930000px;}
.x1a{left:187.409987px;}
.x14{left:189.210000px;}
.x6f{left:201.990000px;}
.x70{left:208.830000px;}
.xe{left:211.710000px;}
.x77{left:213.150000px;}
.x1b{left:214.409987px;}
.x9{left:220.889987px;}
.x4f{left:233.490000px;}
.x5{left:252.039000px;}
.x7b{left:255.675000px;}
.x8{left:275.259000px;}
.x73{left:277.635000px;}
.x50{left:282.495000px;}
.x43{left:293.295000px;}
.xa{left:297.795000px;}
.x4{left:308.559000px;}
.x1c{left:316.154973px;}
.x1d{left:321.014987px;}
.x21{left:322.454987px;}
.x16{left:340.635000px;}
.x28{left:351.435000px;}
.x51{left:400.215000px;}
.x44{left:406.335000px;}
.x2a{left:427.065000px;}
.xf{left:436.065000px;}
.x52{left:449.205000px;}
.x2c{left:457.665000px;}
.x66{left:468.285000px;}
.x11{left:471.705000px;}
.x45{left:478.905000px;}
.xb{left:510.405000px;}
.x53{left:527.685000px;}
.x12{left:530.745000px;}
.x76{left:532.005000px;}
.x26{left:542.805000px;}
.x37{left:553.065000px;}
.x78{left:564.045000px;}
.x54{left:606.210000px;}
.x39{left:627.450000px;}
.x47{left:638.430000px;}
.x55{left:655.170000px;}
.x25{left:666.690000px;}
.x15{left:680.910000px;}
.x72{left:691.710000px;}
.x1e{left:698.729973px;}
.x1f{left:703.589987px;}
.x20{left:713.850000px;}
.x48{left:723.570000px;}
.x3c{left:734.190000px;}
.x74{left:765.720000px;}
.x59{left:814.965000px;}
.x5a{left:847.770000px;}
.x5b{left:880.530000px;}
.x5e{left:925.530000px;}
.x5f{left:952.710000px;}
.x60{left:980.610000px;}
.x61{left:1008.690000px;}
.x62{left:1036.590000px;}
.x63{left:1064.700000px;}
.x64{left:1092.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-1.226667pt;}
.ls5b{letter-spacing:-0.624000pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls32{letter-spacing:-0.576000pt;}
.ls5c{letter-spacing:-0.522133pt;}
.ls45{letter-spacing:-0.515200pt;}
.ls47{letter-spacing:-0.484267pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls5a{letter-spacing:-0.419733pt;}
.ls41{letter-spacing:-0.384000pt;}
.ls33{letter-spacing:-0.368000pt;}
.ls34{letter-spacing:-0.269333pt;}
.ls51{letter-spacing:-0.267733pt;}
.ls1a{letter-spacing:-0.248533pt;}
.ls53{letter-spacing:-0.243733pt;}
.ls40{letter-spacing:-0.220800pt;}
.ls44{letter-spacing:-0.213867pt;}
.ls4a{letter-spacing:-0.208000pt;}
.lsb{letter-spacing:-0.182933pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.156267pt;}
.ls1e{letter-spacing:-0.153067pt;}
.ls49{letter-spacing:-0.102400pt;}
.lsc{letter-spacing:-0.099733pt;}
.ls2e{letter-spacing:-0.097067pt;}
.ls56{letter-spacing:-0.095467pt;}
.ls46{letter-spacing:-0.069867pt;}
.ls2a{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls4d{letter-spacing:-0.036480pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls4b{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.019840pt;}
.ls5d{letter-spacing:0.034560pt;}
.ls5{letter-spacing:0.053760pt;}
.ls27{letter-spacing:0.053867pt;}
.ls58{letter-spacing:0.057067pt;}
.ls9{letter-spacing:0.058667pt;}
.lsd{letter-spacing:0.059733pt;}
.lsf{letter-spacing:0.060800pt;}
.ls57{letter-spacing:0.062720pt;}
.lse{letter-spacing:0.083200pt;}
.ls3c{letter-spacing:0.088320pt;}
.ls2f{letter-spacing:0.089600pt;}
.ls23{letter-spacing:0.124800pt;}
.ls39{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.135467pt;}
.ls11{letter-spacing:0.135680pt;}
.ls48{letter-spacing:0.137600pt;}
.ls18{letter-spacing:0.149867pt;}
.ls3{letter-spacing:0.152107pt;}
.ls4{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.154880pt;}
.ls42{letter-spacing:0.155733pt;}
.ls26{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.165867pt;}
.ls21{letter-spacing:0.174507pt;}
.ls5f{letter-spacing:0.176000pt;}
.ls54{letter-spacing:0.186133pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.195733pt;}
.ls20{letter-spacing:0.195840pt;}
.ls52{letter-spacing:0.203520pt;}
.ls16{letter-spacing:0.214400pt;}
.ls60{letter-spacing:0.227733pt;}
.ls17{letter-spacing:0.248320pt;}
.ls5e{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls55{letter-spacing:0.271467pt;}
.ls37{letter-spacing:0.272000pt;}
.ls50{letter-spacing:0.279467pt;}
.ls4f{letter-spacing:0.279680pt;}
.ls2b{letter-spacing:0.302507pt;}
.ls19{letter-spacing:0.304000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.349867pt;}
.ls29{letter-spacing:0.486933pt;}
.ls25{letter-spacing:0.586667pt;}
.ls35{letter-spacing:0.693333pt;}
.ls3d{letter-spacing:0.794880pt;}
.ls43{letter-spacing:0.800000pt;}
.ls3b{letter-spacing:2.304000pt;}
.ls3f{letter-spacing:6.026240pt;}
.ls2c{letter-spacing:13.392640pt;}
.ls22{letter-spacing:40.891307pt;}
.ls1d{letter-spacing:46.213120pt;}
.ls3a{letter-spacing:49.232640pt;}
.ls30{letter-spacing:56.623360pt;}
.ls38{letter-spacing:56.891307pt;}
.ls1c{letter-spacing:87.813120pt;}
.ls31{letter-spacing:89.066667pt;}
.ls12{letter-spacing:753.371307pt;}
.ls4e{letter-spacing:1698.735787pt;}
.ls10{letter-spacing:1698.895787pt;}
.ws24{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.664000pt;}
.ws36{word-spacing:-18.969707pt;}
.ws35{word-spacing:-18.884373pt;}
.wsf{word-spacing:-18.833920pt;}
.wse{word-spacing:-18.833707pt;}
.ws33{word-spacing:-18.698240pt;}
.ws34{word-spacing:-18.454507pt;}
.ws10{word-spacing:-18.167040pt;}
.ws1e{word-spacing:-16.922880pt;}
.ws13{word-spacing:-15.397760pt;}
.ws15{word-spacing:-15.259627pt;}
.ws12{word-spacing:-15.243627pt;}
.ws11{word-spacing:-15.093760pt;}
.ws14{word-spacing:-14.845227pt;}
.ws1f{word-spacing:-14.656000pt;}
.ws20{word-spacing:-13.888000pt;}
.ws3d{word-spacing:-13.534613pt;}
.ws38{word-spacing:-13.306880pt;}
.ws3a{word-spacing:-13.209813pt;}
.ws39{word-spacing:-12.784747pt;}
.ws18{word-spacing:-12.591787pt;}
.ws1a{word-spacing:-12.492053pt;}
.ws25{word-spacing:-12.354987pt;}
.ws31{word-spacing:-12.284587pt;}
.ws23{word-spacing:-12.277120pt;}
.ws19{word-spacing:-12.170987pt;}
.ws2a{word-spacing:-12.142720pt;}
.ws17{word-spacing:-12.129920pt;}
.ws1d{word-spacing:-12.094720pt;}
.ws9{word-spacing:-12.088320pt;}
.ws8{word-spacing:-12.064853pt;}
.ws37{word-spacing:-12.062187pt;}
.ws2b{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws30{word-spacing:-11.968640pt;}
.ws1{word-spacing:-11.953280pt;}
.ws1b{word-spacing:-11.947520pt;}
.ws29{word-spacing:-11.935253pt;}
.ws1c{word-spacing:-11.908053pt;}
.ws5{word-spacing:-11.905387pt;}
.ws2c{word-spacing:-11.902720pt;}
.ws16{word-spacing:-11.852053pt;}
.ws4{word-spacing:-11.822187pt;}
.ws28{word-spacing:-11.791253pt;}
.ws26{word-spacing:-11.784320pt;}
.ws32{word-spacing:-11.737387pt;}
.ws22{word-spacing:-11.735787pt;}
.ws21{word-spacing:-11.637120pt;}
.ws27{word-spacing:-11.489920pt;}
.ws3c{word-spacing:-11.152000pt;}
.ws3b{word-spacing:-11.024000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws2e{word-spacing:-10.832000pt;}
.ws2f{word-spacing:-10.688000pt;}
.ws2d{word-spacing:-10.640000pt;}
.wsb{word-spacing:-9.751680pt;}
.wsd{word-spacing:-9.710720pt;}
.wsc{word-spacing:-9.690880pt;}
.ws2{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws0{word-spacing:0.118187pt;}
._22{margin-left:-3.020800pt;}
._1f{margin-left:-2.101760pt;}
._0{margin-left:-1.121493pt;}
._1{width:1.356160pt;}
._c{width:2.699733pt;}
._1b{width:3.665280pt;}
._1c{width:4.644693pt;}
._20{width:5.577600pt;}
._23{width:6.555307pt;}
._4{width:7.746560pt;}
._3{width:9.132800pt;}
._24{width:10.425600pt;}
._21{width:13.255680pt;}
._29{width:16.757760pt;}
._28{width:17.901440pt;}
._27{width:24.169600pt;}
._1d{width:30.993920pt;}
._1e{width:32.193920pt;}
._2a{width:40.768000pt;}
._2b{width:86.979627pt;}
._26{width:136.442240pt;}
._2{width:158.202240pt;}
._19{width:523.354453pt;}
._15{width:577.072000pt;}
._1a{width:669.562880pt;}
._e{width:714.629120pt;}
._d{width:715.941547pt;}
._25{width:756.133547pt;}
._13{width:900.176000pt;}
._14{width:915.687040pt;}
._12{width:1009.403307pt;}
._18{width:1043.237120pt;}
._b{width:1086.840960pt;}
._11{width:1168.832000pt;}
._f{width:1320.330240pt;}
._10{width:1379.297920pt;}
._a{width:1566.919040pt;}
._9{width:1698.839680pt;}
._7{width:1717.100373pt;}
._8{width:1721.787520pt;}
._17{width:1771.776640pt;}
._6{width:1969.862400pt;}
._16{width:1980.407040pt;}
._5{width:1991.514880pt;}
.fsa{font-size:2.560000pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.720000pt;}
.y1a{bottom:2.880000pt;}
.y12d{bottom:3.200000pt;}
.y133{bottom:3.240000pt;}
.ye{bottom:3.520000pt;}
.y11{bottom:3.560000pt;}
.y25{bottom:3.680000pt;}
.y19{bottom:3.840000pt;}
.y201{bottom:4.000000pt;}
.y224{bottom:4.026667pt;}
.y21{bottom:4.160000pt;}
.y2a9{bottom:4.640000pt;}
.y2cc{bottom:4.666667pt;}
.y27{bottom:4.800000pt;}
.y4e{bottom:4.840000pt;}
.y48{bottom:4.960000pt;}
.y5a{bottom:5.000000pt;}
.y46{bottom:5.280000pt;}
.y162{bottom:5.440000pt;}
.y16a{bottom:5.600000pt;}
.y2ab{bottom:5.920000pt;}
.y1a6{bottom:6.080000pt;}
.yaa{bottom:6.240000pt;}
.yb1{bottom:6.400000pt;}
.y1b{bottom:7.200000pt;}
.y1f{bottom:7.840000pt;}
.y271{bottom:8.000000pt;}
.y1d{bottom:8.480000pt;}
.y4c{bottom:9.440000pt;}
.y163{bottom:9.600000pt;}
.y16b{bottom:9.760000pt;}
.y12b{bottom:9.920000pt;}
.y1f6{bottom:10.080000pt;}
.y1e1{bottom:10.400000pt;}
.y17d{bottom:10.560000pt;}
.y1a2{bottom:10.586667pt;}
.y1a1{bottom:11.386667pt;}
.ybd{bottom:11.680000pt;}
.y1e{bottom:12.160000pt;}
.y292{bottom:12.480000pt;}
.y1e9{bottom:12.680000pt;}
.y1a4{bottom:14.240000pt;}
.y1c0{bottom:14.280000pt;}
.ya8{bottom:14.400000pt;}
.y1ab{bottom:14.440000pt;}
.yaf{bottom:14.560000pt;}
.y186{bottom:14.720000pt;}
.y182{bottom:14.760000pt;}
.y166{bottom:15.200000pt;}
.y1e6{bottom:15.240000pt;}
.ye0{bottom:15.520000pt;}
.y146{bottom:17.760000pt;}
.y141{bottom:17.786667pt;}
.y130{bottom:17.920000pt;}
.y181{bottom:17.960000pt;}
.y1ca{bottom:18.874667pt;}
.y1a7{bottom:18.880000pt;}
.y1b3{bottom:18.912000pt;}
.y1ac{bottom:18.920000pt;}
.y1af{bottom:19.040000pt;}
.y168{bottom:19.360000pt;}
.ybe{bottom:19.840000pt;}
.y20{bottom:20.160000pt;}
.y1c5{bottom:21.760000pt;}
.y226{bottom:21.786667pt;}
.y20f{bottom:21.800000pt;}
.y1df{bottom:21.920000pt;}
.y209{bottom:21.946667pt;}
.y22d{bottom:21.960000pt;}
.y184{bottom:22.080000pt;}
.y1a5{bottom:22.400000pt;}
.y1b2{bottom:22.432000pt;}
.ya9{bottom:22.560000pt;}
.y1e7{bottom:22.600000pt;}
.yb0{bottom:22.720000pt;}
.y3e{bottom:24.160000pt;}
.y12a{bottom:24.640000pt;}
.y160{bottom:25.120000pt;}
.y17b{bottom:25.280000pt;}
.y1e4{bottom:27.200000pt;}
.y1e8{bottom:27.240000pt;}
.ye1{bottom:27.520000pt;}
.y1c7{bottom:27.674667pt;}
.y1dd{bottom:29.120000pt;}
.y1bc{bottom:30.240000pt;}
.y1c1{bottom:30.280000pt;}
.y1c3{bottom:30.400000pt;}
.y17a{bottom:32.320000pt;}
.y1cb{bottom:32.474667pt;}
.y15c{bottom:32.480000pt;}
.y2a2{bottom:32.640000pt;}
.y28f{bottom:32.680000pt;}
.ya{bottom:33.760000pt;}
.y1c9{bottom:35.034667pt;}
.y1cc{bottom:35.354667pt;}
.y1de{bottom:36.480000pt;}
.y129{bottom:39.200000pt;}
.ye4{bottom:39.520000pt;}
.y21b{bottom:39.680000pt;}
.y225{bottom:39.706667pt;}
.y20e{bottom:39.720000pt;}
.y15f{bottom:39.840000pt;}
.y217{bottom:39.866667pt;}
.y202{bottom:39.880000pt;}
.y3{bottom:40.640000pt;}
.y15d{bottom:47.040000pt;}
.y17f{bottom:47.200000pt;}
.y28e{bottom:47.240000pt;}
.y1c8{bottom:51.354667pt;}
.ye6{bottom:51.520000pt;}
.ye9{bottom:51.546667pt;}
.y128{bottom:53.920000pt;}
.y18e{bottom:54.080000pt;}
.y2b{bottom:54.240000pt;}
.y17c{bottom:54.560000pt;}
.y2{bottom:56.640000pt;}
.y9{bottom:57.760000pt;}
.y15e{bottom:61.760000pt;}
.y17e{bottom:61.920000pt;}
.y28d{bottom:61.960000pt;}
.ye5{bottom:75.520000pt;}
.y21d{bottom:75.680000pt;}
.y26c{bottom:76.520000pt;}
.y8{bottom:81.760000pt;}
.y193{bottom:84.480000pt;}
.y26f{bottom:91.240000pt;}
.yb9{bottom:97.600000pt;}
.y289{bottom:100.320000pt;}
.y17{bottom:100.480000pt;}
.y218{bottom:102.240000pt;}
.y4a{bottom:103.360000pt;}
.y1f2{bottom:104.160000pt;}
.yd7{bottom:104.320000pt;}
.y7{bottom:105.760000pt;}
.y26e{bottom:105.800000pt;}
.y1b1{bottom:106.240000pt;}
.y15b{bottom:110.080000pt;}
.y195{bottom:110.240000pt;}
.y198{bottom:110.720000pt;}
.yb8{bottom:112.320000pt;}
.y19f{bottom:113.920000pt;}
.y199{bottom:115.040000pt;}
.y97{bottom:115.200000pt;}
.y19a{bottom:115.360000pt;}
.yb7{bottom:115.680000pt;}
.y26d{bottom:120.520000pt;}
.y23{bottom:120.960000pt;}
.y288{bottom:121.600000pt;}
.y237{bottom:123.200000pt;}
.y49{bottom:123.360000pt;}
.y1c6{bottom:126.592000pt;}
.y194{bottom:126.760000pt;}
.yb6{bottom:126.880000pt;}
.y1f1{bottom:128.160000pt;}
.yd6{bottom:128.320000pt;}
.y25c{bottom:130.080000pt;}
.y196{bottom:133.800000pt;}
.y15a{bottom:134.080000pt;}
.y2ce{bottom:136.960000pt;}
.y6{bottom:138.560000pt;}
.y96{bottom:139.200000pt;}
.yb5{bottom:141.600000pt;}
.y236{bottom:142.560000pt;}
.y287{bottom:143.040000pt;}
.y1b0{bottom:144.666667pt;}
.yb4{bottom:145.600000pt;}
.y19d{bottom:149.320000pt;}
.y25b{bottom:149.440000pt;}
.y47{bottom:150.400000pt;}
.y197{bottom:150.600000pt;}
.y1f0{bottom:152.160000pt;}
.yd5{bottom:152.320000pt;}
.y18c{bottom:154.880000pt;}
.y22{bottom:155.040000pt;}
.y216{bottom:156.000000pt;}
.yb3{bottom:156.480000pt;}
.y159{bottom:158.080000pt;}
.y19c{bottom:158.920000pt;}
.y19b{bottom:160.680000pt;}
.y2cd{bottom:160.960000pt;}
.y235{bottom:161.760000pt;}
.y19e{bottom:161.960000pt;}
.y5{bottom:162.600000pt;}
.y95{bottom:163.200000pt;}
.y286{bottom:164.320000pt;}
.y25a{bottom:168.800000pt;}
.y2a7{bottom:171.520000pt;}
.y126{bottom:173.280000pt;}
.y1ef{bottom:176.160000pt;}
.yd4{bottom:176.320000pt;}
.y45{bottom:177.600000pt;}
.y18b{bottom:178.880000pt;}
.y234{bottom:181.120000pt;}
.y158{bottom:182.080000pt;}
.y1ae{bottom:183.066667pt;}
.y285{bottom:185.600000pt;}
.y94{bottom:187.226667pt;}
.y259{bottom:188.186667pt;}
.yb2{bottom:188.346667pt;}
.y1c{bottom:188.986667pt;}
.y1c4{bottom:192.026667pt;}
.yfa{bottom:192.506667pt;}
.y2a6{bottom:192.826667pt;}
.yd9{bottom:194.906667pt;}
.y125{bottom:197.306667pt;}
.y73{bottom:199.066667pt;}
.yd3{bottom:200.346667pt;}
.y233{bottom:200.506667pt;}
.y2cb{bottom:202.106667pt;}
.y18a{bottom:202.906667pt;}
.y157{bottom:206.106667pt;}
.y284{bottom:207.066667pt;}
.y258{bottom:207.386667pt;}
.yae{bottom:208.186667pt;}
.yf7{bottom:208.506667pt;}
.y215{bottom:209.786667pt;}
.y93{bottom:211.226667pt;}
.y2a5{bottom:216.826667pt;}
.y1ee{bottom:217.306667pt;}
.y44{bottom:218.426667pt;}
.y232{bottom:219.866667pt;}
.y124{bottom:221.306667pt;}
.y1ad{bottom:221.626667pt;}
.y2ca{bottom:222.106667pt;}
.y18{bottom:223.066667pt;}
.yd2{bottom:224.346667pt;}
.y283{bottom:226.266667pt;}
.y257{bottom:226.746667pt;}
.y189{bottom:226.906667pt;}
.y156{bottom:227.226667pt;}
.y214{bottom:229.146667pt;}
.y1c2{bottom:230.426667pt;}
.yf6{bottom:232.506667pt;}
.y92{bottom:235.226667pt;}
.y2a4{bottom:237.946667pt;}
.y43{bottom:239.066667pt;}
.y155{bottom:241.946667pt;}
.y2c9{bottom:242.106667pt;}
.y72{bottom:244.346667pt;}
.y123{bottom:245.306667pt;}
.y256{bottom:246.106667pt;}
.y282{bottom:246.266667pt;}
.yad{bottom:247.066667pt;}
.y1ed{bottom:247.226667pt;}
.y188{bottom:248.026667pt;}
.yd1{bottom:248.346667pt;}
.y231{bottom:255.706667pt;}
.yf5{bottom:256.506667pt;}
.y2a3{bottom:257.946667pt;}
.y91{bottom:259.226667pt;}
.y1aa{bottom:260.026667pt;}
.y2c8{bottom:262.106667pt;}
.y255{bottom:265.466667pt;}
.yac{bottom:266.906667pt;}
.y1ec{bottom:267.226667pt;}
.y213{bottom:267.706667pt;}
.y1bf{bottom:268.986667pt;}
.y122{bottom:269.306667pt;}
.y16{bottom:269.946667pt;}
.yd0{bottom:272.346667pt;}
.y5d{bottom:276.026667pt;}
.y187{bottom:278.106667pt;}
.yf4{bottom:280.506667pt;}
.y2c7{bottom:282.106667pt;}
.y90{bottom:283.226667pt;}
.y254{bottom:284.826667pt;}
.y154{bottom:285.786667pt;}
.yab{bottom:286.746667pt;}
.y2a1{bottom:287.866667pt;}
.y71{bottom:289.626667pt;}
.y281{bottom:290.906667pt;}
.y230{bottom:291.546667pt;}
.y121{bottom:293.306667pt;}
.ycf{bottom:296.346667pt;}
.y1eb{bottom:297.146667pt;}
.y15{bottom:298.426667pt;}
.y1a9{bottom:298.626667pt;}
.y153{bottom:300.506667pt;}
.y2c6{bottom:302.106667pt;}
.y212{bottom:303.546667pt;}
.y253{bottom:304.186667pt;}
.yf3{bottom:304.506667pt;}
.ya7{bottom:306.586667pt;}
.y8f{bottom:307.226667pt;}
.y1be{bottom:307.426667pt;}
.y185{bottom:308.026667pt;}
.y22f{bottom:310.746667pt;}
.y5c{bottom:314.586667pt;}
.y152{bottom:315.066667pt;}
.y120{bottom:317.306667pt;}
.yce{bottom:320.346667pt;}
.y2c5{bottom:322.106667pt;}
.y14{bottom:322.426667pt;}
.y211{bottom:322.906667pt;}
.y252{bottom:323.386667pt;}
.y109{bottom:328.346667pt;}
.yf2{bottom:328.506667pt;}
.y151{bottom:329.786667pt;}
.y22e{bottom:330.106667pt;}
.y8e{bottom:331.226667pt;}
.y2a0{bottom:332.506667pt;}
.y70{bottom:335.066667pt;}
.y280{bottom:335.386667pt;}
.y1a8{bottom:337.026667pt;}
.y183{bottom:337.946667pt;}
.y11f{bottom:341.306667pt;}
.y2c4{bottom:342.106667pt;}
.y210{bottom:342.266667pt;}
.y251{bottom:342.746667pt;}
.ycd{bottom:344.346667pt;}
.y150{bottom:344.506667pt;}
.ya6{bottom:345.466667pt;}
.y1bd{bottom:345.986667pt;}
.y13{bottom:346.426667pt;}
.yf1{bottom:352.506667pt;}
.y5b{bottom:352.986667pt;}
.y8d{bottom:355.226667pt;}
.y27f{bottom:355.386667pt;}
.y1ea{bottom:356.506667pt;}
.y14f{bottom:359.066667pt;}
.y250{bottom:362.106667pt;}
.ya5{bottom:365.306667pt;}
.ycc{bottom:368.346667pt;}
.y12{bottom:370.426667pt;}
.y29f{bottom:372.506667pt;}
.y14e{bottom:373.786667pt;}
.y1a3{bottom:375.586667pt;}
.yf0{bottom:376.506667pt;}
.y108{bottom:376.986667pt;}
.y20d{bottom:378.106667pt;}
.y8c{bottom:379.226667pt;}
.y6f{bottom:380.346667pt;}
.y24f{bottom:381.466667pt;}
.y180{bottom:382.586667pt;}
.y22c{bottom:383.866667pt;}
.y1bb{bottom:384.386667pt;}
.y27e{bottom:385.466667pt;}
.y1e5{bottom:386.426667pt;}
.y2c3{bottom:387.066667pt;}
.y11e{bottom:389.306667pt;}
.y59{bottom:391.386667pt;}
.ya4{bottom:391.706667pt;}
.ycb{bottom:392.346667pt;}
.y29e{bottom:392.506667pt;}
.y10{bottom:394.426667pt;}
.yef{bottom:400.546667pt;}
.y24e{bottom:400.866667pt;}
.y107{bottom:401.826667pt;}
.y14d{bottom:403.106667pt;}
.y8b{bottom:403.266667pt;}
.ya3{bottom:405.186667pt;}
.y27d{bottom:405.506667pt;}
.y179{bottom:412.546667pt;}
.y11d{bottom:413.346667pt;}
.y2c2{bottom:413.666667pt;}
.y1a0{bottom:413.986667pt;}
.yca{bottom:416.386667pt;}
.y14c{bottom:417.666667pt;}
.yf{bottom:418.466667pt;}
.y22b{bottom:419.746667pt;}
.y24d{bottom:420.226667pt;}
.y29d{bottom:422.626667pt;}
.y1ba{bottom:422.813333pt;}
.yee{bottom:424.546667pt;}
.y27c{bottom:425.506667pt;}
.y6e{bottom:425.666667pt;}
.y1e3{bottom:425.826667pt;}
.y106{bottom:426.466667pt;}
.ya2{bottom:426.626667pt;}
.y8a{bottom:427.266667pt;}
.y9e{bottom:428.546667pt;}
.y58{bottom:429.986667pt;}
.y20c{bottom:431.746667pt;}
.y14b{bottom:432.386667pt;}
.y2c1{bottom:435.906667pt;}
.y11c{bottom:437.346667pt;}
.yc9{bottom:437.506667pt;}
.y24c{bottom:439.426667pt;}
.yd{bottom:442.466667pt;}
.y29c{bottom:442.626667pt;}
.yed{bottom:445.826667pt;}
.y192{bottom:446.493333pt;}
.y14a{bottom:446.946667pt;}
.y89{bottom:451.266667pt;}
.yf9{bottom:452.546667pt;}
.y6d{bottom:453.666667pt;}
.y27b{bottom:455.426667pt;}
.y2c0{bottom:457.026667pt;}
.y24b{bottom:458.786667pt;}
.y11b{bottom:461.346667pt;}
.y1b9{bottom:461.373333pt;}
.y149{bottom:461.666667pt;}
.y29b{bottom:462.626667pt;}
.y1e2{bottom:465.186667pt;}
.y29{bottom:466.466667pt;}
.y57{bottom:468.386667pt;}
.yec{bottom:470.466667pt;}
.yc8{bottom:470.786667pt;}
.y22a{bottom:473.346667pt;}
.y105{bottom:475.106667pt;}
.y88{bottom:475.266667pt;}
.y27a{bottom:475.426667pt;}
.y148{bottom:476.386667pt;}
.y2bf{bottom:477.026667pt;}
.y24a{bottom:478.146667pt;}
.y6c{bottom:481.666667pt;}
.y41{bottom:483.266667pt;}
.y1e0{bottom:485.186667pt;}
.y11a{bottom:485.346667pt;}
.yc7{bottom:490.466667pt;}
.y147{bottom:490.946667pt;}
.y28{bottom:493.026667pt;}
.y178{bottom:493.186667pt;}
.y279{bottom:495.426667pt;}
.y2be{bottom:497.026667pt;}
.y249{bottom:497.506667pt;}
.y87{bottom:499.266667pt;}
.y1b8{bottom:499.773333pt;}
.y40{bottom:500.226667pt;}
.y9c{bottom:500.546667pt;}
.y20b{bottom:503.426667pt;}
.y145{bottom:505.666667pt;}
.y177{bottom:506.626667pt;}
.y56{bottom:506.946667pt;}
.y29a{bottom:507.106667pt;}
.y119{bottom:509.346667pt;}
.y6b{bottom:509.666667pt;}
.yc6{bottom:510.306667pt;}
.y26{bottom:514.466667pt;}
.y1dc{bottom:515.106667pt;}
.y278{bottom:515.426667pt;}
.y248{bottom:516.866667pt;}
.y2bd{bottom:517.026667pt;}
.yeb{bottom:519.106667pt;}
.y3f{bottom:520.706667pt;}
.y86{bottom:523.266667pt;}
.y104{bottom:523.746667pt;}
.y229{bottom:527.106667pt;}
.y176{bottom:528.706667pt;}
.y118{bottom:533.346667pt;}
.y144{bottom:534.946667pt;}
.y247{bottom:536.226667pt;}
.y2bc{bottom:537.026667pt;}
.y299{bottom:537.186667pt;}
.y6a{bottom:537.666667pt;}
.y1b7{bottom:538.333333pt;}
.y24{bottom:541.026667pt;}
.y3d{bottom:541.986667pt;}
.yea{bottom:543.746667pt;}
.y55{bottom:545.346667pt;}
.y228{bottom:546.466667pt;}
.y85{bottom:547.266667pt;}
.y103{bottom:548.386667pt;}
.yc5{bottom:549.346667pt;}
.y143{bottom:549.506667pt;}
.y175{bottom:552.706667pt;}
.y2e0{bottom:553.986667pt;}
.y246{bottom:555.426667pt;}
.y2bb{bottom:557.026667pt;}
.y298{bottom:557.186667pt;}
.y117{bottom:558.626667pt;}
.y277{bottom:565.346667pt;}
.y69{bottom:565.666667pt;}
.y227{bottom:565.826667pt;}
.ye8{bottom:568.386667pt;}
.yc4{bottom:569.026667pt;}
.y84{bottom:571.266667pt;}
.y102{bottom:573.026667pt;}
.y245{bottom:574.786667pt;}
.y20a{bottom:574.946667pt;}
.y174{bottom:576.706667pt;}
.y1b6{bottom:576.773333pt;}
.y2ba{bottom:577.026667pt;}
.y297{bottom:577.186667pt;}
.y2df{bottom:577.986667pt;}
.y142{bottom:578.786667pt;}
.y54{bottom:583.746667pt;}
.y3c{bottom:584.706667pt;}
.yc3{bottom:588.866667pt;}
.y1db{bottom:589.026667pt;}
.yc{bottom:589.186667pt;}
.y140{bottom:593.506667pt;}
.y244{bottom:594.146667pt;}
.y208{bottom:594.306667pt;}
.y83{bottom:595.266667pt;}
.y276{bottom:595.426667pt;}
.y2b9{bottom:597.026667pt;}
.y296{bottom:597.186667pt;}
.y173{bottom:600.706667pt;}
.y223{bottom:601.666667pt;}
.y2de{bottom:601.986667pt;}
.y116{bottom:605.373333pt;}
.y3b{bottom:606.013333pt;}
.yc2{bottom:608.733333pt;}
.y68{bottom:610.973333pt;}
.y1da{bottom:611.293333pt;}
.y243{bottom:613.533333pt;}
.y1f4{bottom:614.333333pt;}
.y1b5{bottom:615.173333pt;}
.y275{bottom:615.453333pt;}
.y2b8{bottom:617.053333pt;}
.y295{bottom:617.213333pt;}
.y82{bottom:619.293333pt;}
.y101{bottom:621.853333pt;}
.y53{bottom:622.333333pt;}
.y13f{bottom:622.813333pt;}
.ya1{bottom:623.933333pt;}
.y172{bottom:624.733333pt;}
.y2dd{bottom:626.013333pt;}
.y115{bottom:626.493333pt;}
.yb{bottom:627.293333pt;}
.yc1{bottom:628.573333pt;}
.y207{bottom:630.173333pt;}
.y1f3{bottom:630.653333pt;}
.y191{bottom:631.973333pt;}
.y3a{bottom:632.253333pt;}
.y242{bottom:632.893333pt;}
.y1d9{bottom:635.293333pt;}
.y274{bottom:635.453333pt;}
.y2b7{bottom:637.053333pt;}
.y67{bottom:638.973333pt;}
.ye7{bottom:641.053333pt;}
.y81{bottom:643.293333pt;}
.y9b{bottom:644.573333pt;}
.y100{bottom:646.493333pt;}
.y294{bottom:647.133333pt;}
.yc0{bottom:648.253333pt;}
.y171{bottom:648.733333pt;}
.y206{bottom:649.533333pt;}
.y2dc{bottom:650.013333pt;}
.y114{bottom:651.133333pt;}
.y1fe{bottom:651.773333pt;}
.y13e{bottom:652.093333pt;}
.y39{bottom:652.733333pt;}
.y1b4{bottom:653.733333pt;}
.y190{bottom:654.213333pt;}
.y222{bottom:655.293333pt;}
.y2b6{bottom:658.653333pt;}
.y1d8{bottom:659.293333pt;}
.y52{bottom:660.733333pt;}
.y13d{bottom:666.813333pt;}
.y66{bottom:666.973333pt;}
.y293{bottom:667.133333pt;}
.y80{bottom:667.293333pt;}
.ybf{bottom:668.093333pt;}
.ya0{bottom:668.573333pt;}
.y241{bottom:668.733333pt;}
.y170{bottom:669.853333pt;}
.yff{bottom:671.133333pt;}
.y4{bottom:673.533333pt;}
.y2db{bottom:674.013333pt;}
.y38{bottom:674.173333pt;}
.y18f{bottom:678.213333pt;}
.y273{bottom:679.933333pt;}
.y1fd{bottom:680.573333pt;}
.y13c{bottom:681.373333pt;}
.y1d7{bottom:683.293333pt;}
.y2b5{bottom:685.213333pt;}
.y205{bottom:685.373333pt;}
.ybc{bottom:687.933333pt;}
.y16f{bottom:689.853333pt;}
.y221{bottom:691.133333pt;}
.y7f{bottom:691.293333pt;}
.y9d{bottom:692.573333pt;}
.y65{bottom:694.973333pt;}
.y36{bottom:695.453333pt;}
.yfe{bottom:695.773333pt;}
.y13b{bottom:696.093333pt;}
.y2da{bottom:698.013333pt;}
.y51{bottom:699.293333pt;}
.y113{bottom:699.773333pt;}
.y272{bottom:699.933333pt;}
.y2b4{bottom:706.653333pt;}
.y1d6{bottom:707.293333pt;}
.y1fc{bottom:709.373333pt;}
.y16e{bottom:709.853333pt;}
.y220{bottom:710.493333pt;}
.y13a{bottom:710.653333pt;}
.y291{bottom:711.773333pt;}
.ye3{bottom:713.853333pt;}
.y7e{bottom:715.293333pt;}
.y35{bottom:716.733333pt;}
.y270{bottom:719.933333pt;}
.yfd{bottom:720.413333pt;}
.y204{bottom:721.053333pt;}
.y2d9{bottom:722.013333pt;}
.y64{bottom:723.133333pt;}
.y18d{bottom:723.520000pt;}
.y112{bottom:724.413333pt;}
.y139{bottom:725.373333pt;}
.y2b3{bottom:726.013333pt;}
.ybb{bottom:727.773333pt;}
.y16d{bottom:729.853333pt;}
.y1d5{bottom:731.293333pt;}
.y268{bottom:734.493333pt;}
.y50{bottom:737.693333pt;}
.y1fb{bottom:738.173333pt;}
.y7d{bottom:739.293333pt;}
.y138{bottom:739.933333pt;}
.yba{bottom:741.213333pt;}
.y34{bottom:742.973333pt;}
.y2d8{bottom:743.133333pt;}
.y2b2{bottom:746.013333pt;}
.y16c{bottom:749.853333pt;}
.y267{bottom:750.813333pt;}
.y290{bottom:751.133333pt;}
.yfc{bottom:751.773333pt;}
.y137{bottom:754.653333pt;}
.y1d4{bottom:755.293333pt;}
.y203{bottom:756.893333pt;}
.y240{bottom:759.613333pt;}
.y2d7{bottom:763.133333pt;}
.y7c{bottom:763.293333pt;}
.yf8{bottom:764.573333pt;}
.yfb{bottom:765.213333pt;}
.y21f{bottom:765.533333pt;}
.y2b1{bottom:766.013333pt;}
.y33{bottom:766.973333pt;}
.y9f{bottom:767.933333pt;}
.y63{bottom:768.413333pt;}
.y136{bottom:769.373333pt;}
.y169{bottom:769.853333pt;}
.y111{bottom:773.053333pt;}
.y266{bottom:774.813333pt;}
.y4f{bottom:776.253333pt;}
.y23f{bottom:778.973333pt;}
.y1d3{bottom:779.293333pt;}
.y2d6{bottom:783.133333pt;}
.y135{bottom:783.933333pt;}
.y2b0{bottom:786.013333pt;}
.y7b{bottom:787.293333pt;}
.y167{bottom:789.853333pt;}
.y32{bottom:790.973333pt;}
.y200{bottom:792.733333pt;}
.y28c{bottom:795.613333pt;}
.y1fa{bottom:795.773333pt;}
.y62{bottom:796.413333pt;}
.y110{bottom:797.853333pt;}
.y134{bottom:798.653333pt;}
.y265{bottom:798.813333pt;}
.y21e{bottom:801.373333pt;}
.y2d5{bottom:803.133333pt;}
.y1d2{bottom:803.293333pt;}
.y23e{bottom:804.893333pt;}
.y2af{bottom:806.013333pt;}
.ye2{bottom:810.493333pt;}
.y7a{bottom:811.293333pt;}
.y132{bottom:813.213333pt;}
.y4d{bottom:814.653333pt;}
.y31{bottom:815.013333pt;}
.y21c{bottom:820.773333pt;}
.y10f{bottom:822.533333pt;}
.y264{bottom:822.853333pt;}
.y2d4{bottom:823.173333pt;}
.y61{bottom:824.453333pt;}
.y1f9{bottom:824.613333pt;}
.y2ae{bottom:826.053333pt;}
.y23d{bottom:827.173333pt;}
.y1d1{bottom:827.333333pt;}
.y131{bottom:827.973333pt;}
.y165{bottom:829.253333pt;}
.ydf{bottom:835.173333pt;}
.y79{bottom:835.333333pt;}
.y30{bottom:839.013333pt;}
.y12f{bottom:842.533333pt;}
.y2d3{bottom:843.173333pt;}
.y2ad{bottom:846.053333pt;}
.y263{bottom:846.853333pt;}
.y10e{bottom:847.173333pt;}
.y23c{bottom:851.173333pt;}
.y1d0{bottom:851.333333pt;}
.y60{bottom:852.453333pt;}
.y4b{bottom:853.093333pt;}
.y1f8{bottom:853.413333pt;}
.y78{bottom:859.333333pt;}
.y2f{bottom:862.213333pt;}
.y2d2{bottom:863.173333pt;}
.y2ac{bottom:866.053333pt;}
.y262{bottom:867.333333pt;}
.y164{bottom:868.613333pt;}
.y23b{bottom:871.653333pt;}
.y10d{bottom:871.813333pt;}
.y26b{bottom:872.453333pt;}
.y1cf{bottom:875.333333pt;}
.y1f7{bottom:882.213333pt;}
.y2d1{bottom:883.173333pt;}
.y77{bottom:883.333333pt;}
.yde{bottom:883.813333pt;}
.y2e{bottom:884.453333pt;}
.y2aa{bottom:886.053333pt;}
.y12e{bottom:886.533333pt;}
.y161{bottom:888.613333pt;}
.y5f{bottom:897.733333pt;}
.y1ce{bottom:899.333333pt;}
.y12c{bottom:901.253333pt;}
.y261{bottom:903.173333pt;}
.y2a8{bottom:906.533333pt;}
.y76{bottom:907.333333pt;}
.y23a{bottom:907.493333pt;}
.ydd{bottom:908.453333pt;}
.yd8{bottom:908.613333pt;}
.y26a{bottom:909.093333pt;}
.y21a{bottom:910.373333pt;}
.y1f5{bottom:911.013333pt;}
.y127{bottom:916.453333pt;}
.y10c{bottom:920.453333pt;}
.y260{bottom:922.533333pt;}
.y2d0{bottom:923.173333pt;}
.y1ff{bottom:923.333333pt;}
.y239{bottom:926.853333pt;}
.y28b{bottom:928.293333pt;}
.y2d{bottom:928.933333pt;}
.y75{bottom:931.333333pt;}
.y9a{bottom:932.613333pt;}
.ydc{bottom:933.093333pt;}
.y25f{bottom:941.893333pt;}
.y238{bottom:946.053333pt;}
.y1cd{bottom:948.613333pt;}
.y2c{bottom:951.013333pt;}
.y5e{bottom:952.293333pt;}
.y99{bottom:955.333333pt;}
.y269{bottom:956.613333pt;}
.y42{bottom:956.773333pt;}
.ydb{bottom:957.893333pt;}
.y25e{bottom:961.093333pt;}
.y2cf{bottom:962.533333pt;}
.y219{bottom:963.973333pt;}
.y28a{bottom:967.813333pt;}
.y10b{bottom:975.813333pt;}
.y98{bottom:979.333333pt;}
.y25d{bottom:980.453333pt;}
.y74{bottom:980.613333pt;}
.yda{bottom:989.093333pt;}
.y10a{bottom:989.253333pt;}
.y1{bottom:1043.840000pt;}
.y2a{bottom:1052.960000pt;}
.h9{height:3.915000pt;}
.h31{height:14.560000pt;}
.h32{height:14.720000pt;}
.h34{height:14.752000pt;}
.h23{height:19.040000pt;}
.h25{height:19.200000pt;}
.h29{height:19.232000pt;}
.h37{height:19.360000pt;}
.h57{height:19.392000pt;}
.h5c{height:19.840000pt;}
.h5d{height:20.960000pt;}
.h15{height:21.280000pt;}
.h16{height:21.312000pt;}
.h10{height:21.440000pt;}
.h13{height:22.720000pt;}
.ha{height:24.000000pt;}
.hb{height:24.032000pt;}
.h5e{height:24.320000pt;}
.h26{height:24.468750pt;}
.h1c{height:26.400000pt;}
.h1a{height:26.432000pt;}
.h11{height:26.560000pt;}
.h1e{height:26.592000pt;}
.h4b{height:28.160000pt;}
.h4c{height:28.192000pt;}
.h33{height:29.280000pt;}
.h35{height:29.312000pt;}
.h3d{height:29.440000pt;}
.h27{height:31.828125pt;}
.h41{height:31.872000pt;}
.h5a{height:32.160000pt;}
.h28{height:32.480000pt;}
.h2a{height:32.640000pt;}
.h1b{height:32.788125pt;}
.hf{height:33.952000pt;}
.he{height:34.080000pt;}
.h22{height:34.374375pt;}
.h4f{height:35.680000pt;}
.h4e{height:35.840000pt;}
.h50{height:35.872000pt;}
.h42{height:37.760000pt;}
.h46{height:37.792000pt;}
.h45{height:37.920000pt;}
.h44{height:37.952000pt;}
.h24{height:38.240000pt;}
.h49{height:38.560000pt;}
.h38{height:38.720000pt;}
.h39{height:38.752000pt;}
.h43{height:40.566250pt;}
.h12{height:40.618125pt;}
.h3{height:42.649687pt;}
.h17{height:42.720000pt;}
.h59{height:43.840000pt;}
.h2{height:43.905937pt;}
.h3b{height:44.000000pt;}
.h19{height:45.022500pt;}
.hd{height:47.742188pt;}
.h2b{height:48.000000pt;}
.h2f{height:48.032000pt;}
.h3a{height:48.375000pt;}
.hc{height:49.148438pt;}
.h3c{height:49.336436pt;}
.h4{height:52.834688pt;}
.h55{height:53.600000pt;}
.h53{height:53.632000pt;}
.h54{height:53.760000pt;}
.h4d{height:53.792000pt;}
.h7{height:54.390938pt;}
.h18{height:54.598989pt;}
.h14{height:57.256875pt;}
.h1f{height:58.563750pt;}
.h4a{height:58.720000pt;}
.h5b{height:60.288750pt;}
.h47{height:64.800000pt;}
.h30{height:65.440000pt;}
.h6{height:65.531250pt;}
.h21{height:66.625000pt;}
.h48{height:66.720000pt;}
.h51{height:71.520000pt;}
.h52{height:71.680000pt;}
.h2d{height:72.000000pt;}
.h2e{height:72.032000pt;}
.h36{height:73.280000pt;}
.h1d{height:76.671562pt;}
.h20{height:77.951250pt;}
.h56{height:89.600000pt;}
.h2c{height:96.000000pt;}
.h8{height:98.296875pt;}
.h58{height:131.872000pt;}
.h40{height:178.266667pt;}
.h5{height:190.266667pt;}
.h3e{height:793.280000pt;}
.h3f{height:793.333333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w48{width:23.520000pt;}
.w49{width:24.160000pt;}
.w4a{width:24.320000pt;}
.w4b{width:24.352000pt;}
.w24{width:26.560000pt;}
.w21{width:27.360000pt;}
.w2f{width:27.680000pt;}
.w27{width:27.712000pt;}
.w56{width:27.840000pt;}
.w4c{width:28.160000pt;}
.w46{width:28.480000pt;}
.w45{width:28.512000pt;}
.wa{width:31.680000pt;}
.w42{width:32.992000pt;}
.w7{width:33.920000pt;}
.w37{width:34.880000pt;}
.w6d{width:36.800000pt;}
.w47{width:39.360000pt;}
.w31{width:41.440000pt;}
.w3d{width:42.880000pt;}
.w39{width:42.912000pt;}
.w1e{width:46.240000pt;}
.w4d{width:50.880000pt;}
.w1b{width:51.200000pt;}
.w3a{width:51.680000pt;}
.wb{width:52.480000pt;}
.w36{width:55.072000pt;}
.w18{width:55.520000pt;}
.w34{width:56.000000pt;}
.w32{width:57.760000pt;}
.w8{width:59.680000pt;}
.w63{width:60.512000pt;}
.w5c{width:61.152000pt;}
.w1a{width:63.712000pt;}
.w33{width:63.872000pt;}
.w64{width:64.320000pt;}
.w23{width:64.352000pt;}
.w5d{width:64.800000pt;}
.w66{width:65.440000pt;}
.w26{width:65.472000pt;}
.w67{width:65.632000pt;}
.w61{width:65.792000pt;}
.w5e{width:66.080000pt;}
.w2b{width:66.112000pt;}
.w52{width:66.240000pt;}
.w5f{width:66.272000pt;}
.w3b{width:69.120000pt;}
.w3c{width:69.152000pt;}
.w12{width:72.320000pt;}
.w68{width:74.880000pt;}
.w35{width:75.040000pt;}
.w62{width:75.200000pt;}
.w60{width:75.680000pt;}
.w2d{width:84.352000pt;}
.w2e{width:84.832000pt;}
.w54{width:84.960000pt;}
.w29{width:85.152000pt;}
.w14{width:92.992000pt;}
.w6b{width:93.600000pt;}
.w65{width:93.792000pt;}
.w59{width:94.112000pt;}
.w2c{width:94.560000pt;}
.w38{width:95.200000pt;}
.w4e{width:103.232000pt;}
.w2a{width:104.000000pt;}
.w1d{width:106.272000pt;}
.w50{width:112.000000pt;}
.w69{width:125.632000pt;}
.w58{width:126.432000pt;}
.w57{width:128.352000pt;}
.w6f{width:131.392000pt;}
.w5b{width:140.986667pt;}
.w30{width:146.266667pt;}
.w3e{width:154.586667pt;}
.w10{width:169.786667pt;}
.w4{width:170.106667pt;}
.w22{width:188.346667pt;}
.w5{width:188.986667pt;}
.w9{width:199.426667pt;}
.w15{width:206.906667pt;}
.w6a{width:207.226667pt;}
.w5a{width:208.026667pt;}
.w20{width:216.706667pt;}
.w25{width:226.106667pt;}
.w28{width:226.586667pt;}
.wc{width:236.546667pt;}
.wf{width:244.066667pt;}
.w6{width:244.546667pt;}
.w11{width:245.346667pt;}
.wd{width:259.106667pt;}
.w43{width:260.506667pt;}
.w70{width:273.466667pt;}
.w4f{width:282.946667pt;}
.w6c{width:311.266667pt;}
.w1f{width:339.586667pt;}
.w44{width:343.546667pt;}
.we{width:359.106667pt;}
.w6e{width:368.066667pt;}
.w16{width:395.453333pt;}
.w13{width:436.253333pt;}
.w1c{width:444.893333pt;}
.w19{width:482.333333pt;}
.w51{width:490.693333pt;}
.w55{width:519.333333pt;}
.w53{width:538.053333pt;}
.w3{width:603.333333pt;}
.w17{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w40{width:1122.666667pt;}
.w41{width:1122.719983pt;}
.w3f{width:1122.720000pt;}
.x5d{left:-13.760000pt;}
.x0{left:0.000000pt;}
.x49{left:1.600000pt;}
.x34{left:3.840000pt;}
.x2b{left:5.760000pt;}
.x13{left:6.880000pt;}
.x38{left:8.320000pt;}
.x2e{left:9.760000pt;}
.x32{left:10.880000pt;}
.x3b{left:12.000000pt;}
.x10{left:12.960000pt;}
.x4d{left:14.240000pt;}
.x46{left:15.200000pt;}
.xc{left:16.320000pt;}
.x29{left:17.440000pt;}
.x56{left:18.746667pt;}
.x5c{left:19.680000pt;}
.x36{left:20.640000pt;}
.x3a{left:22.400000pt;}
.x2d{left:24.160000pt;}
.x2f{left:25.920000pt;}
.x35{left:27.360000pt;}
.x30{left:29.120000pt;}
.x7a{left:30.120000pt;}
.x65{left:31.040000pt;}
.x4a{left:32.026667pt;}
.x58{left:33.440000pt;}
.x40{left:34.560000pt;}
.x3f{left:36.186667pt;}
.x4b{left:37.440000pt;}
.x3d{left:39.200000pt;}
.x4c{left:42.120000pt;}
.x75{left:43.840000pt;}
.x31{left:47.520000pt;}
.x3e{left:48.960000pt;}
.x6d{left:51.360000pt;}
.x6c{left:53.600000pt;}
.x57{left:56.320000pt;}
.x3{left:63.674667pt;}
.x33{left:75.552000pt;}
.x71{left:76.960000pt;}
.x67{left:81.920000pt;}
.x41{left:85.472000pt;}
.x69{left:89.440000pt;}
.x2{left:94.591988pt;}
.x23{left:98.591988pt;}
.x22{left:99.711988pt;}
.x6a{left:104.480000pt;}
.x6b{left:110.120000pt;}
.x4e{left:111.552000pt;}
.x42{left:113.792000pt;}
.x68{left:116.840000pt;}
.x18{left:118.591988pt;}
.x27{left:123.232000pt;}
.x17{left:126.751988pt;}
.xd{left:128.512000pt;}
.x79{left:132.672000pt;}
.x19{left:142.586655pt;}
.x24{left:147.066667pt;}
.x1{left:148.506655pt;}
.x6{left:151.714667pt;}
.x7{left:155.714667pt;}
.x6e{left:160.826667pt;}
.x1a{left:166.586655pt;}
.x14{left:168.186667pt;}
.x6f{left:179.546667pt;}
.x70{left:185.626667pt;}
.xe{left:188.186667pt;}
.x77{left:189.466667pt;}
.x1b{left:190.586655pt;}
.x9{left:196.346655pt;}
.x4f{left:207.546667pt;}
.x5{left:224.034667pt;}
.x7b{left:227.266667pt;}
.x8{left:244.674667pt;}
.x73{left:246.786667pt;}
.x50{left:251.106667pt;}
.x43{left:260.706667pt;}
.xa{left:264.706667pt;}
.x4{left:274.274667pt;}
.x1c{left:281.026643pt;}
.x1d{left:285.346655pt;}
.x21{left:286.626655pt;}
.x16{left:302.786667pt;}
.x28{left:312.386667pt;}
.x51{left:355.746667pt;}
.x44{left:361.186667pt;}
.x2a{left:379.613333pt;}
.xf{left:387.613333pt;}
.x52{left:399.293333pt;}
.x2c{left:406.813333pt;}
.x66{left:416.253333pt;}
.x11{left:419.293333pt;}
.x45{left:425.693333pt;}
.xb{left:453.693333pt;}
.x53{left:469.053333pt;}
.x12{left:471.773333pt;}
.x76{left:472.893333pt;}
.x26{left:482.493333pt;}
.x37{left:491.613333pt;}
.x78{left:501.373333pt;}
.x54{left:538.853333pt;}
.x39{left:557.733333pt;}
.x47{left:567.493333pt;}
.x55{left:582.373333pt;}
.x25{left:592.613333pt;}
.x15{left:605.253333pt;}
.x72{left:614.853333pt;}
.x1e{left:621.093310pt;}
.x1f{left:625.413322pt;}
.x20{left:634.533333pt;}
.x48{left:643.173333pt;}
.x3c{left:652.613333pt;}
.x74{left:680.640000pt;}
.x59{left:724.413333pt;}
.x5a{left:753.573333pt;}
.x5b{left:782.693333pt;}
.x5e{left:822.693333pt;}
.x5f{left:846.853333pt;}
.x60{left:871.653333pt;}
.x61{left:896.613333pt;}
.x62{left:921.413333pt;}
.x63{left:946.400000pt;}
.x64{left:971.200000pt;}
}




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