
    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_9952c43a55ed287b10d03989.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_5b5a0bf270ef5fd19c21151e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_2d03f0560df339a93f72fe6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_8918b0d5659df55c8c6d9aa5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_f4b82b0eea9545e46bf49ce2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.102539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000033px;}
.ls5{letter-spacing:16.476540px;}
.ls9{letter-spacing:16.476562px;}
.ls3{letter-spacing:16.476585px;}
.ls4{letter-spacing:20.976540px;}
.ls7{letter-spacing:25.476540px;}
.ls8{letter-spacing:25.476585px;}
.ls6{letter-spacing:29.976540px;}
.lsa{letter-spacing:40.500000px;}
.ls1{letter-spacing:64.511718px;}
.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;}
}
.ws1{word-spacing:-29.999999px;}
.ws42{word-spacing:-20.999999px;}
.wsd{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.500000px;}
.ws27{word-spacing:-0.066000px;}
.ws55{word-spacing:-0.048101px;}
.ws95{word-spacing:-0.035284px;}
.wsa6{word-spacing:-0.035243px;}
.wscb{word-spacing:-0.035205px;}
.wsc7{word-spacing:-0.035194px;}
.ws9b{word-spacing:-0.035191px;}
.wscc{word-spacing:-0.035172px;}
.wsbe{word-spacing:-0.035159px;}
.wsaa{word-spacing:-0.035154px;}
.wsc5{word-spacing:-0.035131px;}
.wsc2{word-spacing:-0.035075px;}
.wsaf{word-spacing:-0.034941px;}
.wsa9{word-spacing:-0.032608px;}
.wsc3{word-spacing:-0.032569px;}
.wsc1{word-spacing:-0.032537px;}
.wsc9{word-spacing:-0.027407px;}
.ws9c{word-spacing:-0.023508px;}
.wsc8{word-spacing:-0.023461px;}
.ws9a{word-spacing:-0.023441px;}
.wsce{word-spacing:-0.023439px;}
.wsb{word-spacing:-0.023436px;}
.ws47{word-spacing:-0.000034px;}
.ws16{word-spacing:-0.000023px;}
.wsc{word-spacing:-0.000012px;}
.ws3b{word-spacing:-0.000002px;}
.ws5b{word-spacing:-0.000001px;}
.ws0{word-spacing:0.000000px;}
.ws3a{word-spacing:0.000002px;}
.ws2c{word-spacing:0.000003px;}
.ws4e{word-spacing:0.000011px;}
.ws10{word-spacing:0.000022px;}
.wsc0{word-spacing:4.454308px;}
.ws12{word-spacing:4.454334px;}
.wsbc{word-spacing:4.464689px;}
.wsac{word-spacing:4.464828px;}
.wsc4{word-spacing:4.464842px;}
.wsbf{word-spacing:4.464845px;}
.ws99{word-spacing:4.467476px;}
.ws98{word-spacing:4.467701px;}
.wsae{word-spacing:4.472673px;}
.wsbd{word-spacing:4.476550px;}
.ws9f{word-spacing:4.476560px;}
.ws96{word-spacing:4.476562px;}
.wsa0{word-spacing:4.476564px;}
.ws7{word-spacing:4.499977px;}
.ws38{word-spacing:4.499987px;}
.ws8{word-spacing:4.499988px;}
.ws63{word-spacing:4.499997px;}
.ws37{word-spacing:4.499998px;}
.ws3{word-spacing:4.500000px;}
.ws51{word-spacing:4.500002px;}
.ws3c{word-spacing:4.500011px;}
.wse{word-spacing:4.500022px;}
.ws4f{word-spacing:4.500033px;}
.wsc6{word-spacing:8.964842px;}
.ws97{word-spacing:8.964853px;}
.wsba{word-spacing:8.964959px;}
.wsab{word-spacing:8.970039px;}
.wsa8{word-spacing:8.970084px;}
.wsb6{word-spacing:8.970110px;}
.wsbb{word-spacing:8.976561px;}
.wsad{word-spacing:8.976564px;}
.wsb1{word-spacing:8.976645px;}
.ws4d{word-spacing:8.999966px;}
.ws40{word-spacing:8.999977px;}
.ws4c{word-spacing:8.999986px;}
.ws4{word-spacing:8.999988px;}
.ws2d{word-spacing:8.999995px;}
.ws7b{word-spacing:8.999997px;}
.ws43{word-spacing:8.999999px;}
.ws2{word-spacing:9.000000px;}
.ws3f{word-spacing:9.000011px;}
.ws19{word-spacing:9.000022px;}
.wsa5{word-spacing:9.000033px;}
.wsb7{word-spacing:13.464831px;}
.wsb2{word-spacing:13.464843px;}
.ws94{word-spacing:13.464947px;}
.wsb5{word-spacing:13.467476px;}
.wsb3{word-spacing:13.467521px;}
.wsb9{word-spacing:13.470043px;}
.wsca{word-spacing:13.476561px;}
.wsa7{word-spacing:13.476564px;}
.wsf{word-spacing:13.499966px;}
.ws45{word-spacing:13.499976px;}
.ws20{word-spacing:13.499977px;}
.ws31{word-spacing:13.499988px;}
.ws52{word-spacing:13.499997px;}
.ws6{word-spacing:13.500000px;}
.ws1e{word-spacing:13.500011px;}
.ws4a{word-spacing:13.500022px;}
.wsb4{word-spacing:17.967473px;}
.wsa{word-spacing:17.967524px;}
.ws93{word-spacing:17.976560px;}
.wsa1{word-spacing:17.976564px;}
.wsb0{word-spacing:17.976577px;}
.wsa4{word-spacing:17.999966px;}
.ws1d{word-spacing:17.999977px;}
.ws1f{word-spacing:17.999988px;}
.ws50{word-spacing:17.999997px;}
.ws5{word-spacing:18.000000px;}
.ws49{word-spacing:18.000003px;}
.ws48{word-spacing:18.000011px;}
.ws1b{word-spacing:18.000022px;}
.ws2f{word-spacing:18.000033px;}
.ws9e{word-spacing:22.464854px;}
.ws9{word-spacing:22.499977px;}
.ws1a{word-spacing:22.499988px;}
.ws83{word-spacing:22.499996px;}
.ws7f{word-spacing:22.499998px;}
.ws1c{word-spacing:22.499999px;}
.ws22{word-spacing:22.500000px;}
.ws32{word-spacing:22.500010px;}
.wsa2{word-spacing:22.500022px;}
.ws35{word-spacing:22.500033px;}
.wscd{word-spacing:26.976561px;}
.ws9d{word-spacing:26.976565px;}
.ws54{word-spacing:26.999977px;}
.ws44{word-spacing:26.999988px;}
.ws6d{word-spacing:26.999997px;}
.ws15{word-spacing:26.999999px;}
.ws3d{word-spacing:27.000000px;}
.ws3e{word-spacing:27.000003px;}
.ws56{word-spacing:27.000011px;}
.ws13{word-spacing:31.476564px;}
.ws4b{word-spacing:31.499988px;}
.ws14{word-spacing:31.500000px;}
.wsa3{word-spacing:31.500011px;}
.wsb8{word-spacing:35.976561px;}
.ws53{word-spacing:35.999965px;}
.ws25{word-spacing:35.999978px;}
.ws24{word-spacing:35.999988px;}
.ws87{word-spacing:35.999997px;}
.ws17{word-spacing:36.000000px;}
.ws41{word-spacing:40.451737px;}
.ws18{word-spacing:40.499977px;}
.ws39{word-spacing:40.499988px;}
.ws26{word-spacing:40.499997px;}
.ws92{word-spacing:40.499999px;}
.ws21{word-spacing:40.500000px;}
.ws57{word-spacing:44.962198px;}
.wsd0{word-spacing:44.999986px;}
.ws8d{word-spacing:44.999997px;}
.ws2b{word-spacing:45.000000px;}
.ws60{word-spacing:45.000002px;}
.ws46{word-spacing:45.000011px;}
.wscf{word-spacing:46.511718px;}
.ws33{word-spacing:49.499988px;}
.ws66{word-spacing:49.499999px;}
.ws34{word-spacing:53.999999px;}
.ws29{word-spacing:58.499986px;}
.ws88{word-spacing:58.499997px;}
.ws71{word-spacing:58.499999px;}
.ws28{word-spacing:58.500000px;}
.ws5a{word-spacing:62.999985px;}
.ws82{word-spacing:62.999999px;}
.ws6c{word-spacing:63.000002px;}
.ws36{word-spacing:67.499985px;}
.ws69{word-spacing:67.499997px;}
.ws6a{word-spacing:67.500000px;}
.ws84{word-spacing:71.999997px;}
.ws70{word-spacing:71.999999px;}
.ws7d{word-spacing:72.000000px;}
.ws2a{word-spacing:72.000022px;}
.ws58{word-spacing:76.499999px;}
.ws5c{word-spacing:81.000000px;}
.ws75{word-spacing:85.500000px;}
.ws6e{word-spacing:94.499999px;}
.ws62{word-spacing:94.500002px;}
.ws6f{word-spacing:99.000000px;}
.ws30{word-spacing:103.500000px;}
.ws76{word-spacing:103.500002px;}
.ws6b{word-spacing:108.000000px;}
.wsd2{word-spacing:112.499998px;}
.ws77{word-spacing:112.500000px;}
.ws64{word-spacing:116.999997px;}
.ws8c{word-spacing:121.499997px;}
.ws5f{word-spacing:121.499999px;}
.ws61{word-spacing:130.499997px;}
.ws8a{word-spacing:130.500001px;}
.ws74{word-spacing:135.000000px;}
.ws8b{word-spacing:143.999999px;}
.ws5d{word-spacing:144.000001px;}
.ws7e{word-spacing:148.499997px;}
.ws91{word-spacing:148.499999px;}
.ws7a{word-spacing:162.000000px;}
.ws23{word-spacing:166.500000px;}
.ws81{word-spacing:170.999999px;}
.ws67{word-spacing:171.000000px;}
.ws7c{word-spacing:180.000002px;}
.ws8e{word-spacing:184.500001px;}
.ws68{word-spacing:198.000000px;}
.ws78{word-spacing:216.000001px;}
.ws90{word-spacing:220.500000px;}
.ws79{word-spacing:225.000001px;}
.ws85{word-spacing:229.499999px;}
.ws86{word-spacing:229.500000px;}
.ws2e{word-spacing:242.999997px;}
.ws8f{word-spacing:243.000000px;}
.ws89{word-spacing:274.500002px;}
.ws80{word-spacing:278.999999px;}
.ws72{word-spacing:279.000001px;}
.ws73{word-spacing:315.000002px;}
.ws5e{word-spacing:324.000000px;}
.ws59{word-spacing:364.500000px;}
.ws65{word-spacing:369.000002px;}
.wsd1{word-spacing:386.999986px;}
._c{margin-left:-15.803497px;}
._2{margin-left:-10.687479px;}
._b{margin-left:-8.934904px;}
._1{margin-left:-7.843772px;}
._0{margin-left:-6.263029px;}
._4{margin-left:-4.805317px;}
._10{margin-left:-3.723658px;}
._3{margin-left:-2.601561px;}
._e{margin-left:-1.022129px;}
._32{width:8.528963px;}
._2b{width:15.496354px;}
._2c{width:16.609505px;}
._9{width:18.000133px;}
._2a{width:20.601842px;}
._5{width:22.499986px;}
._21{width:25.417976px;}
._6{width:27.000000px;}
._2d{width:28.987023px;}
._29{width:30.003552px;}
._7{width:31.500002px;}
._2e{width:34.364634px;}
._8{width:36.000000px;}
._d{width:38.819221px;}
._a{width:40.500002px;}
._2f{width:43.299585px;}
._f{width:44.941399px;}
._33{width:45.954434px;}
._31{width:46.996040px;}
._30{width:48.044103px;}
._11{width:49.499999px;}
._12{width:54.000189px;}
._15{width:58.500002px;}
._13{width:63.000003px;}
._23{width:64.511718px;}
._1e{width:65.917976px;}
._19{width:67.500001px;}
._16{width:72.000009px;}
._17{width:80.999999px;}
._1f{width:84.023438px;}
._22{width:85.500002px;}
._1d{width:90.000000px;}
._18{width:94.500001px;}
._20{width:99.000002px;}
._24{width:103.500003px;}
._26{width:108.000000px;}
._25{width:116.999998px;}
._1b{width:125.999999px;}
._1c{width:139.500011px;}
._28{width:152.999999px;}
._27{width:166.500002px;}
._14{width:189.000000px;}
._1a{width:265.500001px;}
.fc6{color:rgb(255,255,0);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(96,74,123);}
.fc3{color:rgb(119,147,60);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:83.999997px;}
.fs3{font-size:119.999997px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y262{bottom:11.765611px;}
.y1a0{bottom:11.765616px;}
.y1b6{bottom:11.765617px;}
.y260{bottom:11.765619px;}
.y1df{bottom:11.765622px;}
.y1f4{bottom:11.765624px;}
.y196{bottom:11.765625px;}
.y264{bottom:11.765627px;}
.y1d4{bottom:11.765628px;}
.y1ff{bottom:11.765630px;}
.y27e{bottom:11.765634px;}
.y220{bottom:11.765637px;}
.y162{bottom:11.768554px;}
.y279{bottom:11.771477px;}
.y1c6{bottom:11.771479px;}
.y1c2{bottom:11.771483px;}
.y25c{bottom:11.771484px;}
.y222{bottom:11.771485px;}
.y1ef{bottom:11.771487px;}
.y1cf{bottom:11.771489px;}
.y274{bottom:11.771492px;}
.y269{bottom:11.771495px;}
.y31a{bottom:14.882810px;}
.y17f{bottom:22.116207px;}
.y228{bottom:22.116208px;}
.yc0{bottom:22.117671px;}
.yae{bottom:22.117672px;}
.yb4{bottom:22.117674px;}
.ya3{bottom:22.117676px;}
.yb7{bottom:22.117679px;}
.yc4{bottom:22.117680px;}
.yd1{bottom:22.117683px;}
.yd3{bottom:22.117686px;}
.y164{bottom:22.119141px;}
.y177{bottom:22.119142px;}
.y257{bottom:22.119155px;}
.y31f{bottom:32.460939px;}
.y26c{bottom:32.466785px;}
.y25f{bottom:32.466789px;}
.y1de{bottom:32.466792px;}
.y1ce{bottom:32.466793px;}
.y199{bottom:32.466796px;}
.y1d3{bottom:32.466798px;}
.y1c5{bottom:32.466799px;}
.y19f{bottom:32.466801px;}
.y1b5{bottom:32.466802px;}
.y27b{bottom:32.466804px;}
.y21f{bottom:32.466807px;}
.y323{bottom:32.472650px;}
.y328{bottom:32.472665px;}
.y319{bottom:38.683595px;}
.y16d{bottom:50.469727px;}
.y30b{bottom:53.162103px;}
.y1fe{bottom:53.162104px;}
.y19e{bottom:53.162106px;}
.y1b4{bottom:53.162107px;}
.y198{bottom:53.162109px;}
.y1d2{bottom:53.162111px;}
.y1dd{bottom:53.162112px;}
.y1f3{bottom:53.162114px;}
.ycc{bottom:53.165031px;}
.yad{bottom:53.165033px;}
.yb3{bottom:53.165034px;}
.y17e{bottom:53.165037px;}
.yb6{bottom:53.165039px;}
.yc3{bottom:53.165040px;}
.yd0{bottom:53.165043px;}
.ybf{bottom:53.165046px;}
.y20e{bottom:53.167962px;}
.y1cd{bottom:53.167963px;}
.y1c4{bottom:53.167969px;}
.y1c1{bottom:53.167973px;}
.y1ee{bottom:53.167977px;}
.y176{bottom:53.206051px;}
.y8f{bottom:59.967044px;}
.ya{bottom:59.967584px;}
.y23{bottom:59.967779px;}
.y11b{bottom:59.968499px;}
.y318{bottom:62.490229px;}
.y1fd{bottom:73.863274px;}
.y19d{bottom:73.863276px;}
.y1b3{bottom:73.863277px;}
.y1d1{bottom:73.863282px;}
.y1cc{bottom:73.863283px;}
.y30a{bottom:73.863288px;}
.y1c0{bottom:73.863293px;}
.y16c{bottom:81.556636px;}
.y22b{bottom:84.210938px;}
.ycb{bottom:84.212391px;}
.yac{bottom:84.212393px;}
.yb2{bottom:84.212394px;}
.yc2{bottom:84.212400px;}
.ycf{bottom:84.212403px;}
.ybe{bottom:84.212406px;}
.y17d{bottom:84.213867px;}
.y175{bottom:84.372076px;}
.y317{bottom:86.291014px;}
.y1fa{bottom:94.558582px;}
.y1dc{bottom:94.558587px;}
.y1fc{bottom:94.558594px;}
.y19c{bottom:94.558596px;}
.y1b2{bottom:94.558598px;}
.y21e{bottom:94.558602px;}
.y1ed{bottom:94.564452px;}
.y1cb{bottom:94.564453px;}
.y1bf{bottom:94.564463px;}
.y316{bottom:110.091800px;}
.y16b{bottom:112.684567px;}
.y6a{bottom:112.957028px;}
.y281{bottom:114.263676px;}
.yab{bottom:115.259752px;}
.yb1{bottom:115.259754px;}
.ybd{bottom:115.259766px;}
.y1b1{bottom:115.259767px;}
.y17c{bottom:115.259772px;}
.y174{bottom:115.499992px;}
.y2e5{bottom:117.287113px;}
.y2a9{bottom:123.304687px;}
.yd4{bottom:124.668463px;}
.yb5{bottom:127.776849px;}
.y137{bottom:128.478517px;}
.y24f{bottom:128.484367px;}
.y18f{bottom:130.538092px;}
.y11a{bottom:133.652347px;}
.ye8{bottom:133.653802px;}
.y96{bottom:133.655272px;}
.y307{bottom:133.658197px;}
.y315{bottom:133.892570px;}
.y1b0{bottom:135.955072px;}
.y1db{bottom:135.955077px;}
.y1be{bottom:135.960938px;}
.y1ec{bottom:135.960942px;}
.y2cc{bottom:137.642578px;}
.y16a{bottom:143.733397px;}
.y2b6{bottom:143.999992px;}
.y14c{bottom:144.002933px;}
.y69{bottom:144.004387px;}
.y2e4{bottom:145.751953px;}
.y17b{bottom:146.305662px;}
.y22a{bottom:146.305665px;}
.ybc{bottom:146.307126px;}
.yaa{bottom:146.307127px;}
.yb0{bottom:146.307129px;}
.y173{bottom:146.586916px;}
.y296{bottom:153.996088px;}
.y110{bottom:154.352048px;}
.y159{bottom:154.353517px;}
.y1c9{bottom:156.656242px;}
.y1da{bottom:156.656247px;}
.y1f1{bottom:156.656250px;}
.y1bd{bottom:156.656258px;}
.y21d{bottom:156.656262px;}
.y178{bottom:156.820312px;}
.y314{bottom:157.699220px;}
.y136{bottom:159.527348px;}
.y18e{bottom:161.583983px;}
.ye7{bottom:164.701178px;}
.y95{bottom:164.702633px;}
.y2cb{bottom:166.101568px;}
.y280{bottom:172.535151px;}
.y16e{bottom:174.750000px;}
.y169{bottom:174.779288px;}
.y14b{bottom:175.048823px;}
.y68{bottom:175.051762px;}
.y1d9{bottom:177.351560px;}
.y1af{bottom:177.351562px;}
.y21c{bottom:177.351567px;}
.ya9{bottom:177.354488px;}
.ybb{bottom:177.354492px;}
.y1eb{bottom:177.357417px;}
.y1bc{bottom:177.357428px;}
.y165{bottom:177.682620px;}
.y172{bottom:177.711907px;}
.y313{bottom:181.499989px;}
.y295{bottom:182.455078px;}
.y1c8{bottom:182.671875px;}
.y10f{bottom:185.399408px;}
.y2a8{bottom:185.402347px;}
.y9{bottom:185.711246px;}
.y2f6{bottom:189.386713px;}
.y135{bottom:190.573238px;}
.y24e{bottom:190.576178px;}
.y18d{bottom:192.632812px;}
.y23f{bottom:194.929688px;}
.ye6{bottom:195.748537px;}
.y8e{bottom:195.749992px;}
.y1d8{bottom:198.052731px;}
.y1ae{bottom:198.052732px;}
.y20d{bottom:198.052737px;}
.y32b{bottom:200.191403px;}
.y2e3{bottom:202.669918px;}
.y312{bottom:205.300774px;}
.y168{bottom:205.866211px;}
.y14a{bottom:206.097652px;}
.y67{bottom:206.099123px;}
.ya4{bottom:206.746590px;}
.ya8{bottom:208.401848px;}
.yba{bottom:208.401855px;}
.y171{bottom:208.798831px;}
.y270{bottom:213.597652px;}
.y2a7{bottom:216.445312px;}
.y32a{bottom:218.121097px;}
.y1f9{bottom:218.748037px;}
.y1d7{bottom:218.748043px;}
.y1ad{bottom:218.748052px;}
.y21b{bottom:218.748057px;}
.y1f7{bottom:218.753902px;}
.y1ea{bottom:218.753907px;}
.y1bb{bottom:218.753918px;}
.y134{bottom:221.622067px;}
.y24d{bottom:221.624992px;}
.y8{bottom:221.933171px;}
.y2ca{bottom:223.025383px;}
.y2fb{bottom:226.792973px;}
.ye5{bottom:226.795898px;}
.y8d{bottom:226.797367px;}
.y311{bottom:229.101560px;}
.y27f{bottom:230.806638px;}
.y2e2{bottom:231.128908px;}
.y167{bottom:236.991203px;}
.y149{bottom:237.146483px;}
.y294{bottom:239.373043px;}
.ya7{bottom:239.449208px;}
.y20c{bottom:239.449212px;}
.y1d6{bottom:239.449215px;}
.y1ac{bottom:239.449223px;}
.y1e9{bottom:239.449227px;}
.y170{bottom:239.923823px;}
.y26f{bottom:244.640617px;}
.y2f5{bottom:246.304693px;}
.y10e{bottom:247.494142px;}
.y2c9{bottom:251.484373px;}
.y133{bottom:252.667973px;}
.y194{bottom:252.670898px;}
.y310{bottom:252.914060px;}
.y18c{bottom:254.727533px;}
.y327{bottom:255.691398px;}
.y23e{bottom:257.027348px;}
.y11e{bottom:257.841803px;}
.y114{bottom:257.843257px;}
.y8c{bottom:257.844727px;}
.y303{bottom:257.847652px;}
.y1ab{bottom:260.144527px;}
.y21a{bottom:260.144532px;}
.y20b{bottom:260.150382px;}
.y1ba{bottom:260.150393px;}
.y1e8{bottom:260.150397px;}
.y40{bottom:267.006598px;}
.y293{bottom:267.837883px;}
.y166{bottom:268.078126px;}
.y148{bottom:268.192387px;}
.y66{bottom:268.193842px;}
.y2b5{bottom:268.195312px;}
.ya6{bottom:270.496567px;}
.y16f{bottom:271.010746px;}
.y2f4{bottom:274.769533px;}
.y30f{bottom:276.714845px;}
.y10d{bottom:278.541502px;}
.y1c{bottom:278.542238px;}
.y158{bottom:278.542973px;}
.y1aa{bottom:280.845698px;}
.y1e7{bottom:280.845702px;}
.y1b9{bottom:280.845713px;}
.y1f5{bottom:282.292965px;}
.y193{bottom:283.716803px;}
.y18b{bottom:285.773438px;}
.y2e1{bottom:288.052738px;}
.y23d{bottom:288.073238px;}
.ye4{bottom:288.890617px;}
.y8b{bottom:288.892088px;}
.y3f{bottom:295.466668px;}
.yd2{bottom:296.780267px;}
.y329{bottom:297.093742px;}
.y147{bottom:299.238278px;}
.y65{bottom:299.241217px;}
.y26e{bottom:299.496098px;}
.y30e{bottom:300.515622px;}
.y1a9{bottom:301.541018px;}
.y219{bottom:301.541022px;}
.ya5{bottom:301.543943px;}
.y1e6{bottom:301.546872px;}
.y1b8{bottom:301.546883px;}
.y22{bottom:304.415033px;}
.y2c8{bottom:308.402338px;}
.y2a6{bottom:309.585938px;}
.y10c{bottom:309.588863px;}
.y1b{bottom:309.589597px;}
.y27d{bottom:309.779293px;}
.y132{bottom:314.762693px;}
.y192{bottom:314.765617px;}
.y2e0{bottom:316.505863px;}
.y18a{bottom:316.822267px;}
.y26d{bottom:317.425783px;}
.y23c{bottom:319.119142px;}
.ye3{bottom:319.937992px;}
.y94{bottom:319.939447px;}
.y306{bottom:319.945312px;}
.y1a8{bottom:322.242188px;}
.y20a{bottom:322.242192px;}
.y3e{bottom:323.926753px;}
.y30d{bottom:324.316402px;}
.y292{bottom:324.755863px;}
.yce{bottom:327.827630px;}
.y2b4{bottom:330.287107px;}
.y64{bottom:330.288577px;}
.y7{bottom:330.598931px;}
.y2f3{bottom:331.687498px;}
.y326{bottom:334.664062px;}
.y21{bottom:335.462408px;}
.y2c7{bottom:336.861328px;}
.y25a{bottom:337.845698px;}
.y157{bottom:340.634767px;}
.y10b{bottom:340.636237px;}
.y227{bottom:342.231444px;}
.y1a7{bottom:342.937492px;}
.y218{bottom:342.937512px;}
.y1f6{bottom:342.943357px;}
.y1e5{bottom:342.943362px;}
.y131{bottom:345.811523px;}
.y191{bottom:345.814447px;}
.y189{bottom:347.871098px;}
.ye2{bottom:350.985353px;}
.y8a{bottom:350.986823px;}
.y2f9{bottom:350.988278px;}
.y3d{bottom:352.386838px;}
.y291{bottom:353.214838px;}
.y2f2{bottom:360.146488px;}
.y63{bottom:361.335938px;}
.yaf{bottom:361.983404px;}
.y209{bottom:363.638667px;}
.y1e4{bottom:363.638674px;}
.y1a6{bottom:363.638677px;}
.y6{bottom:366.820856px;}
.y259{bottom:368.894528px;}
.y1c7{bottom:368.953125px;}
.y10a{bottom:371.683598px;}
.y226{bottom:373.277342px;}
.y2df{bottom:373.429693px;}
.y20{bottom:376.004886px;}
.y130{bottom:376.857428px;}
.y325{bottom:378.539062px;}
.y3c{bottom:380.846923px;}
.y1a{bottom:381.179436px;}
.y23b{bottom:381.216803px;}
.y119{bottom:382.031242px;}
.yf6{bottom:382.032712px;}
.y89{bottom:382.034183px;}
.y308{bottom:382.037107px;}
.y1a5{bottom:384.333983px;}
.y217{bottom:384.333987px;}
.y208{bottom:384.339837px;}
.y1e3{bottom:384.339846px;}
.y1f8{bottom:385.787115px;}
.y2f1{bottom:388.611328px;}
.y27c{bottom:388.746093px;}
.y2b3{bottom:392.378902px;}
.y146{bottom:392.381842px;}
.y2c6{bottom:393.779293px;}
.y26b{bottom:396.392583px;}
.y2de{bottom:401.888668px;}
.y2a5{bottom:402.732428px;}
.y1a4{bottom:405.035152px;}
.y207{bottom:405.035157px;}
.y1e2{bottom:405.035158px;}
.y12f{bottom:407.906242px;}
.y3b{bottom:409.307008px;}
.y188{bottom:409.962892px;}
.y290{bottom:410.132818px;}
.y190{bottom:410.279291px;}
.y1ca{bottom:410.349609px;}
.y23a{bottom:412.262693px;}
.ye1{bottom:413.080073px;}
.y88{bottom:413.081543px;}
.y322{bottom:416.109378px;}
.y258{bottom:416.496098px;}
.y2f0{bottom:417.070318px;}
.y2c5{bottom:422.244133px;}
.y145{bottom:423.427733px;}
.y62{bottom:423.430657px;}
.y1a3{bottom:425.730473px;}
.y216{bottom:425.730477px;}
.y206{bottom:425.736327px;}
.y1e1{bottom:425.736330px;}
.y225{bottom:428.197268px;}
.y109{bottom:433.778317px;}
.y2a4{bottom:433.781242px;}
.y256{bottom:434.425773px;}
.ycd{bottom:437.844733px;}
.y28f{bottom:438.597658px;}
.y12e{bottom:438.952148px;}
.y3a{bottom:438.953978px;}
.y24c{bottom:438.955073px;}
.y187{bottom:441.011722px;}
.y239{bottom:443.308598px;}
.ye0{bottom:444.127448px;}
.y87{bottom:444.128902px;}
.y1a2{bottom:446.431642px;}
.y215{bottom:446.431647px;}
.y2c4{bottom:450.703123px;}
.y2b2{bottom:454.476563px;}
.y61{bottom:454.478033px;}
.y324{bottom:457.511722px;}
.y2dd{bottom:458.806633px;}
.y224{bottom:461.619146px;}
.y156{bottom:464.824223px;}
.y108{bottom:464.825677px;}
.y5{bottom:465.191160px;}
.y255{bottom:465.474602px;}
.y28e{bottom:467.056633px;}
.y214{bottom:467.126959px;}
.y205{bottom:467.132811px;}
.y27a{bottom:467.718748px;}
.y39{bottom:468.814453px;}
.yca{bottom:468.892096px;}
.y24b{bottom:470.003903px;}
.y163{bottom:471.644537px;}
.y186{bottom:472.060552px;}
.y2ef{bottom:473.988283px;}
.y31e{bottom:474.386713px;}
.y2fa{bottom:475.171867px;}
.ydf{bottom:475.174807px;}
.y93{bottom:475.176263px;}
.y26a{bottom:475.365239px;}
.y161{bottom:481.995123px;}
.y60{bottom:485.525392px;}
.y2dc{bottom:487.271488px;}
.y204{bottom:487.828123px;}
.y213{bottom:487.828131px;}
.y320{bottom:495.082026px;}
.y107{bottom:495.873052px;}
.y38{bottom:498.461063px;}
.y12d{bottom:501.046867px;}
.y238{bottom:505.406242px;}
.y118{bottom:506.220698px;}
.yde{bottom:506.222168px;}
.y86{bottom:506.223637px;}
.y305{bottom:506.226562px;}
.y2c3{bottom:507.621088px;}
.y212{bottom:508.523443px;}
.y203{bottom:508.529295px;}
.y1f2{bottom:509.976564px;}
.y254{bottom:513.398432px;}
.y2db{bottom:515.730463px;}
.y321{bottom:515.777338px;}
.y144{bottom:516.571283px;}
.y5f{bottom:516.572752px;}
.y2b1{bottom:516.574223px;}
.y28d{bottom:523.974613px;}
.y160{bottom:526.564448px;}
.y106{bottom:526.920412px;}
.y155{bottom:526.921867px;}
.y4{bottom:527.285850px;}
.y202{bottom:529.224607px;}
.y211{bottom:529.224615px;}
.y37{bottom:529.508423px;}
.y1a1{bottom:530.718750px;}
.y2ee{bottom:530.912113px;}
.y12c{bottom:532.095698px;}
.ya2{bottom:534.095217px;}
.y185{bottom:534.152348px;}
.y2c2{bottom:536.080078px;}
.y237{bottom:536.452148px;}
.ydd{bottom:537.269527px;}
.y85{bottom:537.270998px;}
.y278{bottom:546.685551px;}
.y143{bottom:547.617188px;}
.y19{bottom:547.619378px;}
.y210{bottom:549.919927px;}
.y223{bottom:550.318358px;}
.y1fb{bottom:551.373048px;}
.y28c{bottom:552.439453px;}
.y31d{bottom:553.353516px;}
.y268{bottom:554.332023px;}
.y2a3{bottom:557.964848px;}
.y105{bottom:557.967773px;}
.y2ed{bottom:559.365238px;}
.y36{bottom:560.555783px;}
.y12b{bottom:563.141602px;}
.y24a{bottom:563.144527px;}
.y184{bottom:565.201178px;}
.y236{bottom:567.498052px;}
.y20f{bottom:568.248041px;}
.ydc{bottom:568.316888px;}
.y84{bottom:568.318358px;}
.y302{bottom:568.324223px;}
.y2da{bottom:572.648443px;}
.y142{bottom:578.666018px;}
.y18{bottom:578.666753px;}
.y5e{bottom:578.667488px;}
.y15f{bottom:588.659182px;}
.y201{bottom:588.943361px;}
.y154{bottom:589.013678px;}
.y104{bottom:589.015133px;}
.ya1{bottom:589.016602px;}
.y3{bottom:589.380570px;}
.y35{bottom:591.603142px;}
.y2c1{bottom:593.003908px;}
.y12a{bottom:594.190432px;}
.y249{bottom:594.193357px;}
.y183{bottom:596.249992px;}
.y235{bottom:598.546867px;}
.y113{bottom:599.364262px;}
.y92{bottom:599.365718px;}
.y2f8{bottom:599.367188px;}
.y2d9{bottom:601.113283px;}
.y277{bottom:604.957030px;}
.y28b{bottom:609.357418px;}
.y17{bottom:609.714112px;}
.y5d{bottom:609.714848px;}
.yc9{bottom:609.956547px;}
.y2ec{bottom:616.289068px;}
.y31c{bottom:618.621098px;}
.y153{bottom:620.062492px;}
.y34{bottom:621.463618px;}
.y248{bottom:625.239262px;}
.y182{bottom:627.295898px;}
.y234{bottom:629.595698px;}
.y117{bottom:630.410152px;}
.ydb{bottom:630.411623px;}
.y83{bottom:630.413092px;}
.y304{bottom:630.416018px;}
.y267{bottom:633.304686px;}
.y28a{bottom:637.816408px;}
.y2b0{bottom:640.757812px;}
.y141{bottom:640.760738px;}
.y16{bottom:640.761472px;}
.y5c{bottom:640.762207px;}
.y2eb{bottom:644.748043px;}
.y4f{bottom:644.749513px;}
.y2c0{bottom:649.921873px;}
.y33{bottom:649.923703px;}
.y15e{bottom:650.753902px;}
.y103{bottom:651.109868px;}
.ya0{bottom:651.111322px;}
.y2{bottom:651.475290px;}
.y129{bottom:656.285152px;}
.y2d8{bottom:658.031248px;}
.y233{bottom:660.641602px;}
.yda{bottom:661.458982px;}
.y82{bottom:661.460452px;}
.yc8{bottom:664.876463px;}
.y77{bottom:666.634282px;}
.y1e0{bottom:671.736326px;}
.y2af{bottom:671.806643px;}
.y5b{bottom:671.809568px;}
.y2ea{bottom:673.207033px;}
.y4e{bottom:673.209598px;}
.y1b7{bottom:675.603510px;}
.y337{bottom:675.949222px;}
.y32{bottom:678.383788px;}
.y2bf{bottom:678.386713px;}
.y15d{bottom:681.840826px;}
.y102{bottom:682.157228px;}
.y9f{bottom:682.158698px;}
.y2a2{bottom:682.160152px;}
.y2d7{bottom:686.490238px;}
.y128{bottom:687.331058px;}
.y31b{bottom:690.035152px;}
.y266{bottom:691.576176px;}
.y232{bottom:691.687492px;}
.yf5{bottom:692.506342px;}
.y81{bottom:692.507812px;}
.y181{bottom:693.123041px;}
.y289{bottom:694.740238px;}
.y76{bottom:697.681642px;}
.y2e9{bottom:701.666008px;}
.y4d{bottom:701.669683px;}
.y140{bottom:702.855473px;}
.y15{bottom:702.856208px;}
.y5a{bottom:702.856928px;}
.y276{bottom:704.625003px;}
.y31{bottom:706.843873px;}
.y336{bottom:706.992188px;}
.y30c{bottom:707.953128px;}
.y15c{bottom:713.006836px;}
.y152{bottom:713.203118px;}
.y101{bottom:713.204588px;}
.y127{bottom:718.379887px;}
.y247{bottom:718.382812px;}
.y231{bottom:722.736322px;}
.y253{bottom:723.550777px;}
.yf4{bottom:723.553718px;}
.y80{bottom:723.555173px;}
.yc7{bottom:726.971197px;}
.y75{bottom:728.729002px;}
.y4c{bottom:730.129768px;}
.y14{bottom:733.903568px;}
.y59{bottom:733.904303px;}
.y30{bottom:735.303958px;}
.y2be{bottom:735.304693px;}
.y335{bottom:738.046867px;}
.y2d6{bottom:743.408203px;}
.y15b{bottom:744.134768px;}
.y100{bottom:744.251948px;}
.y126{bottom:749.425777px;}
.y9e{bottom:749.427248px;}
.y246{bottom:749.428717px;}
.y265{bottom:749.847651px;}
.y288{bottom:751.658203px;}
.y116{bottom:754.599608px;}
.yf3{bottom:754.601077px;}
.y7f{bottom:754.602533px;}
.y301{bottom:754.605473px;}
.yc6{bottom:758.018558px;}
.y4b{bottom:758.589838px;}
.y2bd{bottom:763.763668px;}
.y2f{bottom:763.764043px;}
.y13f{bottom:764.950192px;}
.y13{bottom:764.950928px;}
.yd8{bottom:764.951662px;}
.y2ae{bottom:764.953118px;}
.y334{bottom:769.089848px;}
.y2d5{bottom:771.873043px;}
.y15a{bottom:775.221676px;}
.y151{bottom:775.300777px;}
.y9d{bottom:780.474608px;}
.y1{bottom:780.526931px;}
.y230{bottom:782.138678px;}
.y275{bottom:783.597659px;}
.yf2{bottom:785.648438px;}
.y7e{bottom:785.649908px;}
.y2e8{bottom:787.048828px;}
.y4a{bottom:787.049923px;}
.y180{bottom:789.067387px;}
.y74{bottom:790.823738px;}
.y2e{bottom:792.224128px;}
.y13e{bottom:795.996098px;}
.y58{bottom:795.999022px;}
.y2a1{bottom:806.343742px;}
.yff{bottom:806.346683px;}
.y17a{bottom:806.997071px;}
.y263{bottom:808.119141px;}
.y287{bottom:808.576168px;}
.y125{bottom:811.520512px;}
.y9c{bottom:811.521968px;}
.y245{bottom:811.523438px;}
.yc5{bottom:812.869627px;}
.y22f{bottom:813.184567px;}
.y49{bottom:815.510008px;}
.y112{bottom:816.695798px;}
.y91{bottom:816.697268px;}
.y300{bottom:816.703118px;}
.y2bc{bottom:820.681633px;}
.y2d{bottom:820.684198px;}
.y73{bottom:821.871098px;}
.y13d{bottom:827.044928px;}
.y12{bottom:827.045648px;}
.y57{bottom:827.046383px;}
.y2d4{bottom:828.791008px;}
.yb9{bottom:830.799317px;}
.y333{bottom:831.187492px;}
.y286{bottom:837.035158px;}
.y150{bottom:837.392573px;}
.yfe{bottom:837.394043px;}
.y9b{bottom:842.569342px;}
.y244{bottom:842.572268px;}
.y48{bottom:843.970093px;}
.y29d{bottom:843.972658px;}
.y22e{bottom:844.230473px;}
.yf1{bottom:847.743158px;}
.y7d{bottom:847.744627px;}
.y252{bottom:847.746098px;}
.y2c{bottom:849.144283px;}
.y2bb{bottom:849.146488px;}
.y72{bottom:852.918457px;}
.y2d3{bottom:857.249998px;}
.y1d5{bottom:858.023440px;}
.y11{bottom:858.093022px;}
.y56{bottom:858.093742px;}
.y19b{bottom:861.890627px;}
.y332{bottom:862.236323px;}
.y273{bottom:862.564446px;}
.y261{bottom:866.390631px;}
.yfd{bottom:868.441402px;}
.y47{bottom:872.430178px;}
.y29c{bottom:872.431633px;}
.y9a{bottom:873.616702px;}
.y243{bottom:873.618158px;}
.y22d{bottom:875.279302px;}
.y2ba{bottom:877.599613px;}
.y2b{bottom:877.604368px;}
.y115{bottom:878.789062px;}
.yf0{bottom:878.790532px;}
.y7c{bottom:878.791988px;}
.y2ff{bottom:878.794928px;}
.y71{bottom:883.965817px;}
.y2ad{bottom:889.136723px;}
.y13c{bottom:889.139647px;}
.y10{bottom:889.140382px;}
.y55{bottom:889.141117px;}
.yc1{bottom:892.894043px;}
.y331{bottom:893.279302px;}
.yfc{bottom:899.488763px;}
.y14f{bottom:899.490233px;}
.y285{bottom:900.105461px;}
.y46{bottom:900.890263px;}
.y99{bottom:904.664062px;}
.y2a{bottom:906.064453px;}
.yef{bottom:909.837892px;}
.y7b{bottom:909.839362px;}
.y2d2{bottom:914.167963px;}
.y70{bottom:915.013177px;}
.y309{bottom:917.009764px;}
.y13b{bottom:920.185552px;}
.yf{bottom:920.187743px;}
.yd7{bottom:920.188477px;}
.y272{bottom:920.835933px;}
.y22c{bottom:922.886723px;}
.y1c3{bottom:923.982423px;}
.y25e{bottom:924.662114px;}
.y29b{bottom:929.349613px;}
.y45{bottom:929.350348px;}
.yfb{bottom:930.536137px;}
.y2a0{bottom:930.539062px;}
.y29{bottom:934.524538px;}
.y124{bottom:935.709967px;}
.y98{bottom:935.711423px;}
.y242{bottom:935.712892px;}
.y229{bottom:940.816405px;}
.yee{bottom:940.885252px;}
.y7a{bottom:940.886723px;}
.y2d1{bottom:942.632818px;}
.y2ac{bottom:951.234367px;}
.y54{bottom:951.235838px;}
.y330{bottom:955.371097px;}
.y44{bottom:957.810418px;}
.y29a{bottom:957.814453px;}
.y1f0{bottom:961.511718px;}
.y29f{bottom:961.582027px;}
.yfa{bottom:961.583498px;}
.y2b9{bottom:962.982418px;}
.y28{bottom:962.984623px;}
.y14e{bottom:963.960941px;}
.y123{bottom:966.758783px;}
.y251{bottom:971.929688px;}
.yed{bottom:971.932613px;}
.y79{bottom:971.934082px;}
.y6f{bottom:974.520998px;}
.y1d0{bottom:982.212889px;}
.ye{bottom:982.282478px;}
.y53{bottom:982.283197px;}
.y13a{bottom:984.656246px;}
.y2f7{bottom:986.267578px;}
.y32f{bottom:986.425778px;}
.y284{bottom:988.804688px;}
.y27{bottom:991.444708px;}
.y29e{bottom:992.630858px;}
.y122{bottom:997.804688px;}
.y241{bottom:997.807617px;}
.y2d0{bottom:999.550782px;}
.y271{bottom:999.808593px;}
.y14d{bottom:1000.177734px;}
.y97{bottom:1000.180664px;}
.y200{bottom:1002.908202px;}
.y197{bottom:1002.955079px;}
.y11d{bottom:1002.978516px;}
.yec{bottom:1002.979980px;}
.y90{bottom:1002.981446px;}
.y2fe{bottom:1002.984375px;}
.y25d{bottom:1003.628907px;}
.y6e{bottom:1005.568359px;}
.y283{bottom:1006.734373px;}
.y179{bottom:1010.156250px;}
.y1f{bottom:1013.329835px;}
.yd{bottom:1013.329926px;}
.y52{bottom:1013.330567px;}
.y2ab{bottom:1013.332030px;}
.y299{bottom:1014.732421px;}
.yd6{bottom:1016.028808px;}
.y32e{bottom:1017.468750px;}
.y26{bottom:1019.904786px;}
.y2b8{bottom:1019.906250px;}
.yf9{bottom:1023.678222px;}
.y2cf{bottom:1028.009766px;}
.y121{bottom:1028.853516px;}
.yd5{bottom:1033.958496px;}
.y111{bottom:1034.027343px;}
.yd9{bottom:1034.028808px;}
.y78{bottom:1036.401855px;}
.y2e7{bottom:1043.185546px;}
.y221{bottom:1044.304686px;}
.y19a{bottom:1044.351562px;}
.y2aa{bottom:1044.375000px;}
.y1e{bottom:1044.377197px;}
.yc{bottom:1044.377289px;}
.y51{bottom:1044.377929px;}
.y25{bottom:1048.364868px;}
.y2b7{bottom:1048.365234px;}
.y32d{bottom:1048.523438px;}
.y2ce{bottom:1056.474609px;}
.y120{bottom:1059.899414px;}
.y240{bottom:1059.902343px;}
.y25b{bottom:1061.900391px;}
.y139{bottom:1064.220702px;}
.yb8{bottom:1065.005860px;}
.yeb{bottom:1065.074707px;}
.y6d{bottom:1065.076171px;}
.y2fd{bottom:1065.082030px;}
.y298{bottom:1071.650391px;}
.y43{bottom:1071.650757px;}
.y24{bottom:1076.824951px;}
.y32c{bottom:1079.566405px;}
.y195{bottom:1082.601562px;}
.yf8{bottom:1088.147460px;}
.yea{bottom:1096.122071px;}
.y6c{bottom:1096.123535px;}
.y250{bottom:1096.125000px;}
.y2e6{bottom:1100.109375px;}
.y42{bottom:1100.110840px;}
.y282{bottom:1106.402343px;}
.y2cd{bottom:1106.748046px;}
.y138{bottom:1115.964842px;}
.y1d{bottom:1115.967039px;}
.yb{bottom:1115.967131px;}
.y50{bottom:1115.967773px;}
.y11f{bottom:1124.367186px;}
.yf7{bottom:1124.368652px;}
.y11c{bottom:1127.167968px;}
.ye9{bottom:1127.169433px;}
.y6b{bottom:1127.170899px;}
.y2fc{bottom:1127.173828px;}
.y297{bottom:1128.568359px;}
.y41{bottom:1128.570922px;}
.h1a{height:36.445312px;}
.h15{height:36.448242px;}
.h31{height:36.451171px;}
.hb{height:46.797363px;}
.h16{height:46.798829px;}
.h4{height:47.437501px;}
.h2c{height:57.146484px;}
.h2d{height:58.072267px;}
.h8{height:58.620119px;}
.h9{height:59.167970px;}
.h2e{height:63.351563px;}
.h1b{height:63.843750px;}
.hc{height:63.949219px;}
.h6{height:64.546875px;}
.h1{height:74.607419px;}
.h1c{height:77.841796px;}
.hf{height:77.844726px;}
.h1f{height:77.847657px;}
.h2a{height:98.542970px;}
.h14{height:105.896490px;}
.h10{height:105.899415px;}
.h7{height:105.899775px;}
.h3{height:105.899970px;}
.ha{height:105.900150px;}
.h2f{height:105.902340px;}
.h5{height:106.582029px;}
.h13{height:108.892091px;}
.h27{height:119.238282px;}
.h22{height:119.244141px;}
.h2{height:127.898438px;}
.h12{height:139.939454px;}
.h23{height:160.634766px;}
.h20{height:160.640625px;}
.he{height:170.986817px;}
.h25{height:181.335938px;}
.h2b{height:202.031250px;}
.h19{height:202.034179px;}
.h11{height:233.081543px;}
.h24{height:284.824215px;}
.h17{height:292.836915px;}
.h18{height:295.769535px;}
.hd{height:326.223630px;}
.h1e{height:326.226570px;}
.h21{height:346.921875px;}
.h30{height:348.996090px;}
.h26{height:388.318365px;}
.h1d{height:471.111330px;}
.h28{height:553.904295px;}
.h29{height:574.599615px;}
.h0{height:1263.000000px;}
.w15{width:73.125000px;}
.w17{width:84.375000px;}
.w18{width:84.375046px;}
.w13{width:94.500000px;}
.w14{width:115.875046px;}
.w7{width:123.750000px;}
.wc{width:151.875000px;}
.wa{width:160.875000px;}
.w9{width:160.875046px;}
.wb{width:168.750000px;}
.wd{width:190.125000px;}
.w8{width:205.875000px;}
.w11{width:207.000000px;}
.w1b{width:208.125000px;}
.wf{width:210.374977px;}
.w10{width:211.500000px;}
.w16{width:219.375000px;}
.w1a{width:221.625000px;}
.w12{width:293.625000px;}
.w3{width:318.375000px;}
.w4{width:318.375045px;}
.w2{width:322.875000px;}
.w19{width:529.875000px;}
.w5{width:636.750000px;}
.w6{width:654.750000px;}
.we{width:675.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x3c{left:-3.375000px;}
.x0{left:0.000000px;}
.x39{left:1.125000px;}
.x18{left:6.750000px;}
.x31{left:8.929688px;}
.x2f{left:10.854492px;}
.x2a{left:13.565918px;}
.x76{left:14.805176px;}
.x34{left:18.303223px;}
.x32{left:19.617188px;}
.x7e{left:21.234375px;}
.x42{left:22.500000px;}
.x33{left:25.356445px;}
.x3b{left:26.679199px;}
.x2c{left:28.797363px;}
.x35{left:30.313477px;}
.x77{left:32.312988px;}
.x25{left:33.750000px;}
.x79{left:35.239746px;}
.x2b{left:36.804200px;}
.x7f{left:38.742188px;}
.x2d{left:41.356934px;}
.x7d{left:45.738281px;}
.x7a{left:47.236816px;}
.x40{left:57.186035px;}
.x7c{left:58.996582px;}
.x26{left:60.750000px;}
.x15{left:68.646972px;}
.x80{left:69.996094px;}
.x1b{left:72.136231px;}
.x3f{left:74.632325px;}
.x24{left:78.890625px;}
.x22{left:83.390625px;}
.x28{left:87.750000px;}
.x17{left:89.881347px;}
.x29{left:119.625000px;}
.x14{left:120.750000px;}
.xc{left:127.500000px;}
.x62{left:128.780423px;}
.x5e{left:130.560208px;}
.x60{left:132.313626px;}
.x69{left:135.556790px;}
.x63{left:137.050931px;}
.x59{left:138.584623px;}
.x64{left:140.487455px;}
.x5d{left:141.731107px;}
.x6a{left:142.996732px;}
.x3e{left:145.500000px;}
.x5a{left:146.837553px;}
.x4{left:148.586577px;}
.x20{left:152.226408px;}
.x2{left:155.415678px;}
.x70{left:156.417631px;}
.x6d{left:157.744780px;}
.x6b{left:160.007963px;}
.x5b{left:161.242827px;}
.x6f{left:163.084135px;}
.x72{left:166.076809px;}
.x57{left:169.807766px;}
.x67{left:177.076321px;}
.x10{left:181.500000px;}
.x4e{left:184.125337px;}
.x1f{left:190.671069px;}
.x4d{left:192.611340px;}
.x4f{left:203.585292px;}
.x68{left:204.990384px;}
.x52{left:208.500000px;}
.x1e{left:211.404931px;}
.x66{left:214.306790px;}
.x5f{left:230.298488px;}
.x27{left:231.565433px;}
.x11{left:235.500000px;}
.x1{left:237.907560px;}
.x3{left:244.273098px;}
.x78{left:245.625000px;}
.x55{left:249.401516px;}
.x56{left:250.741848px;}
.x9{left:253.571798px;}
.x6c{left:255.241848px;}
.x6{left:269.696448px;}
.x3d{left:274.322903px;}
.x58{left:283.217434px;}
.x21{left:284.817044px;}
.x37{left:290.625000px;}
.x74{left:294.722316px;}
.x36{left:299.815578px;}
.x6e{left:302.316066px;}
.x8{left:304.345345px;}
.x1a{left:307.558743px;}
.x12{left:310.667478px;}
.xd{left:312.455092px;}
.x7{left:316.730063px;}
.x43{left:319.806296px;}
.x51{left:322.952786px;}
.x13{left:324.060203px;}
.x5c{left:326.815575px;}
.x75{left:329.540190px;}
.x48{left:341.250000px;}
.x65{left:343.725731px;}
.x1d{left:345.934568px;}
.xe{left:357.311839px;}
.x5{left:364.472318px;}
.xb{left:371.478671px;}
.x71{left:375.137846px;}
.x54{left:382.964505px;}
.x50{left:383.968916px;}
.x61{left:388.541164px;}
.xf{left:392.300621px;}
.x53{left:398.464013px;}
.x44{left:415.500000px;}
.x73{left:424.703760px;}
.x49{left:426.750000px;}
.x23{left:440.250000px;}
.x38{left:443.625000px;}
.x16{left:444.750000px;}
.x2e{left:451.500000px;}
.x45{left:511.125000px;}
.x4a{left:512.250000px;}
.x7b{left:552.750000px;}
.x41{left:569.625000px;}
.x4b{left:597.750000px;}
.x3a{left:605.625000px;}
.x30{left:613.500000px;}
.x46{left:628.125000px;}
.x4c{left:683.250000px;}
.x47{left:702.375000px;}
.x19{left:747.073421px;}
.x1c{left:748.297984px;}
.xa{left:756.243375px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000030pt;}
.ls5{letter-spacing:14.645813pt;}
.ls9{letter-spacing:14.645833pt;}
.ls3{letter-spacing:14.645853pt;}
.ls4{letter-spacing:18.645813pt;}
.ls7{letter-spacing:22.645813pt;}
.ls8{letter-spacing:22.645853pt;}
.ls6{letter-spacing:26.645813pt;}
.lsa{letter-spacing:36.000000pt;}
.ls1{letter-spacing:57.343750pt;}
.ws1{word-spacing:-26.666666pt;}
.ws42{word-spacing:-18.666666pt;}
.wsd{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.666667pt;}
.ws27{word-spacing:-0.058667pt;}
.ws55{word-spacing:-0.042757pt;}
.ws95{word-spacing:-0.031364pt;}
.wsa6{word-spacing:-0.031327pt;}
.wscb{word-spacing:-0.031293pt;}
.wsc7{word-spacing:-0.031283pt;}
.ws9b{word-spacing:-0.031281pt;}
.wscc{word-spacing:-0.031264pt;}
.wsbe{word-spacing:-0.031252pt;}
.wsaa{word-spacing:-0.031248pt;}
.wsc5{word-spacing:-0.031227pt;}
.wsc2{word-spacing:-0.031177pt;}
.wsaf{word-spacing:-0.031059pt;}
.wsa9{word-spacing:-0.028985pt;}
.wsc3{word-spacing:-0.028950pt;}
.wsc1{word-spacing:-0.028922pt;}
.wsc9{word-spacing:-0.024362pt;}
.ws9c{word-spacing:-0.020896pt;}
.wsc8{word-spacing:-0.020854pt;}
.ws9a{word-spacing:-0.020836pt;}
.wsce{word-spacing:-0.020834pt;}
.wsb{word-spacing:-0.020832pt;}
.ws47{word-spacing:-0.000030pt;}
.ws16{word-spacing:-0.000020pt;}
.wsc{word-spacing:-0.000010pt;}
.ws3b{word-spacing:-0.000002pt;}
.ws5b{word-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.000001pt;}
.ws2c{word-spacing:0.000003pt;}
.ws4e{word-spacing:0.000010pt;}
.ws10{word-spacing:0.000020pt;}
.wsc0{word-spacing:3.959385pt;}
.ws12{word-spacing:3.959408pt;}
.wsbc{word-spacing:3.968613pt;}
.wsac{word-spacing:3.968736pt;}
.wsc4{word-spacing:3.968748pt;}
.wsbf{word-spacing:3.968751pt;}
.ws99{word-spacing:3.971090pt;}
.ws98{word-spacing:3.971290pt;}
.wsae{word-spacing:3.975710pt;}
.wsbd{word-spacing:3.979156pt;}
.ws9f{word-spacing:3.979164pt;}
.ws96{word-spacing:3.979166pt;}
.wsa0{word-spacing:3.979168pt;}
.ws7{word-spacing:3.999980pt;}
.ws38{word-spacing:3.999988pt;}
.ws8{word-spacing:3.999990pt;}
.ws63{word-spacing:3.999997pt;}
.ws37{word-spacing:3.999999pt;}
.ws3{word-spacing:4.000000pt;}
.ws51{word-spacing:4.000002pt;}
.ws3c{word-spacing:4.000010pt;}
.wse{word-spacing:4.000020pt;}
.ws4f{word-spacing:4.000030pt;}
.wsc6{word-spacing:7.968748pt;}
.ws97{word-spacing:7.968758pt;}
.wsba{word-spacing:7.968853pt;}
.wsab{word-spacing:7.973368pt;}
.wsa8{word-spacing:7.973408pt;}
.wsb6{word-spacing:7.973431pt;}
.wsbb{word-spacing:7.979165pt;}
.wsad{word-spacing:7.979168pt;}
.wsb1{word-spacing:7.979240pt;}
.ws4d{word-spacing:7.999970pt;}
.ws40{word-spacing:7.999980pt;}
.ws4c{word-spacing:7.999987pt;}
.ws4{word-spacing:7.999990pt;}
.ws2d{word-spacing:7.999996pt;}
.ws7b{word-spacing:7.999998pt;}
.ws43{word-spacing:7.999999pt;}
.ws2{word-spacing:8.000000pt;}
.ws3f{word-spacing:8.000010pt;}
.ws19{word-spacing:8.000020pt;}
.wsa5{word-spacing:8.000029pt;}
.wsb7{word-spacing:11.968739pt;}
.wsb2{word-spacing:11.968749pt;}
.ws94{word-spacing:11.968842pt;}
.wsb5{word-spacing:11.971090pt;}
.wsb3{word-spacing:11.971130pt;}
.wsb9{word-spacing:11.973371pt;}
.wsca{word-spacing:11.979165pt;}
.wsa7{word-spacing:11.979168pt;}
.wsf{word-spacing:11.999970pt;}
.ws45{word-spacing:11.999979pt;}
.ws20{word-spacing:11.999980pt;}
.ws31{word-spacing:11.999989pt;}
.ws52{word-spacing:11.999998pt;}
.ws6{word-spacing:12.000000pt;}
.ws1e{word-spacing:12.000010pt;}
.ws4a{word-spacing:12.000020pt;}
.wsb4{word-spacing:15.971087pt;}
.wsa{word-spacing:15.971133pt;}
.ws93{word-spacing:15.979165pt;}
.wsa1{word-spacing:15.979168pt;}
.wsb0{word-spacing:15.979180pt;}
.wsa4{word-spacing:15.999970pt;}
.ws1d{word-spacing:15.999980pt;}
.ws1f{word-spacing:15.999989pt;}
.ws50{word-spacing:15.999998pt;}
.ws5{word-spacing:16.000000pt;}
.ws49{word-spacing:16.000002pt;}
.ws48{word-spacing:16.000010pt;}
.ws1b{word-spacing:16.000020pt;}
.ws2f{word-spacing:16.000029pt;}
.ws9e{word-spacing:19.968759pt;}
.ws9{word-spacing:19.999980pt;}
.ws1a{word-spacing:19.999990pt;}
.ws83{word-spacing:19.999996pt;}
.ws7f{word-spacing:19.999998pt;}
.ws1c{word-spacing:19.999999pt;}
.ws22{word-spacing:20.000000pt;}
.ws32{word-spacing:20.000009pt;}
.wsa2{word-spacing:20.000020pt;}
.ws35{word-spacing:20.000030pt;}
.wscd{word-spacing:23.979166pt;}
.ws9d{word-spacing:23.979169pt;}
.ws54{word-spacing:23.999980pt;}
.ws44{word-spacing:23.999989pt;}
.ws6d{word-spacing:23.999998pt;}
.ws15{word-spacing:23.999999pt;}
.ws3d{word-spacing:24.000000pt;}
.ws3e{word-spacing:24.000002pt;}
.ws56{word-spacing:24.000010pt;}
.ws13{word-spacing:27.979168pt;}
.ws4b{word-spacing:27.999990pt;}
.ws14{word-spacing:28.000000pt;}
.wsa3{word-spacing:28.000010pt;}
.wsb8{word-spacing:31.979165pt;}
.ws53{word-spacing:31.999969pt;}
.ws25{word-spacing:31.999980pt;}
.ws24{word-spacing:31.999990pt;}
.ws87{word-spacing:31.999998pt;}
.ws17{word-spacing:32.000000pt;}
.ws41{word-spacing:35.957099pt;}
.ws18{word-spacing:35.999980pt;}
.ws39{word-spacing:35.999989pt;}
.ws26{word-spacing:35.999998pt;}
.ws92{word-spacing:35.999999pt;}
.ws21{word-spacing:36.000000pt;}
.ws57{word-spacing:39.966398pt;}
.wsd0{word-spacing:39.999988pt;}
.ws8d{word-spacing:39.999998pt;}
.ws2b{word-spacing:40.000000pt;}
.ws60{word-spacing:40.000002pt;}
.ws46{word-spacing:40.000009pt;}
.wscf{word-spacing:41.343750pt;}
.ws33{word-spacing:43.999990pt;}
.ws66{word-spacing:43.999999pt;}
.ws34{word-spacing:48.000000pt;}
.ws29{word-spacing:51.999988pt;}
.ws88{word-spacing:51.999998pt;}
.ws71{word-spacing:51.999999pt;}
.ws28{word-spacing:52.000000pt;}
.ws5a{word-spacing:55.999987pt;}
.ws82{word-spacing:55.999999pt;}
.ws6c{word-spacing:56.000001pt;}
.ws36{word-spacing:59.999987pt;}
.ws69{word-spacing:59.999998pt;}
.ws6a{word-spacing:60.000000pt;}
.ws84{word-spacing:63.999998pt;}
.ws70{word-spacing:63.999999pt;}
.ws7d{word-spacing:64.000000pt;}
.ws2a{word-spacing:64.000020pt;}
.ws58{word-spacing:68.000000pt;}
.ws5c{word-spacing:72.000000pt;}
.ws75{word-spacing:76.000000pt;}
.ws6e{word-spacing:84.000000pt;}
.ws62{word-spacing:84.000001pt;}
.ws6f{word-spacing:88.000000pt;}
.ws30{word-spacing:92.000000pt;}
.ws76{word-spacing:92.000002pt;}
.ws6b{word-spacing:96.000000pt;}
.wsd2{word-spacing:99.999998pt;}
.ws77{word-spacing:100.000000pt;}
.ws64{word-spacing:103.999998pt;}
.ws8c{word-spacing:107.999997pt;}
.ws5f{word-spacing:107.999999pt;}
.ws61{word-spacing:115.999998pt;}
.ws8a{word-spacing:116.000001pt;}
.ws74{word-spacing:120.000000pt;}
.ws8b{word-spacing:128.000000pt;}
.ws5d{word-spacing:128.000001pt;}
.ws7e{word-spacing:131.999997pt;}
.ws91{word-spacing:131.999999pt;}
.ws7a{word-spacing:144.000000pt;}
.ws23{word-spacing:148.000000pt;}
.ws81{word-spacing:151.999999pt;}
.ws67{word-spacing:152.000000pt;}
.ws7c{word-spacing:160.000002pt;}
.ws8e{word-spacing:164.000001pt;}
.ws68{word-spacing:176.000000pt;}
.ws78{word-spacing:192.000001pt;}
.ws90{word-spacing:196.000000pt;}
.ws79{word-spacing:200.000001pt;}
.ws85{word-spacing:203.999999pt;}
.ws86{word-spacing:204.000000pt;}
.ws2e{word-spacing:215.999997pt;}
.ws8f{word-spacing:216.000000pt;}
.ws89{word-spacing:244.000001pt;}
.ws80{word-spacing:248.000000pt;}
.ws72{word-spacing:248.000001pt;}
.ws73{word-spacing:280.000002pt;}
.ws5e{word-spacing:288.000000pt;}
.ws59{word-spacing:324.000000pt;}
.ws65{word-spacing:328.000002pt;}
.wsd1{word-spacing:343.999988pt;}
._c{margin-left:-14.047553pt;}
._2{margin-left:-9.499982pt;}
._b{margin-left:-7.942137pt;}
._1{margin-left:-6.972242pt;}
._0{margin-left:-5.567137pt;}
._4{margin-left:-4.271393pt;}
._10{margin-left:-3.309919pt;}
._3{margin-left:-2.312499pt;}
._e{margin-left:-0.908559pt;}
._32{width:7.581301pt;}
._2b{width:13.774537pt;}
._2c{width:14.764005pt;}
._9{width:16.000118pt;}
._2a{width:18.312749pt;}
._5{width:19.999988pt;}
._21{width:22.593756pt;}
._6{width:24.000000pt;}
._2d{width:25.766243pt;}
._29{width:26.669824pt;}
._7{width:28.000002pt;}
._2e{width:30.546341pt;}
._8{width:32.000000pt;}
._d{width:34.505974pt;}
._a{width:36.000002pt;}
._2f{width:38.488520pt;}
._f{width:39.947910pt;}
._33{width:40.848386pt;}
._31{width:41.774258pt;}
._30{width:42.705870pt;}
._11{width:43.999999pt;}
._12{width:48.000168pt;}
._15{width:52.000002pt;}
._13{width:56.000002pt;}
._23{width:57.343750pt;}
._1e{width:58.593756pt;}
._19{width:60.000001pt;}
._16{width:64.000008pt;}
._17{width:71.999999pt;}
._1f{width:74.687500pt;}
._22{width:76.000002pt;}
._1d{width:80.000000pt;}
._18{width:84.000001pt;}
._20{width:88.000001pt;}
._24{width:92.000002pt;}
._26{width:96.000000pt;}
._25{width:103.999999pt;}
._1b{width:111.999999pt;}
._1c{width:124.000010pt;}
._28{width:136.000000pt;}
._27{width:148.000002pt;}
._14{width:168.000000pt;}
._1a{width:236.000001pt;}
.fs2{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666664pt;}
.fs3{font-size:106.666664pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y262{bottom:10.458321pt;}
.y1a0{bottom:10.458325pt;}
.y1b6{bottom:10.458327pt;}
.y260{bottom:10.458328pt;}
.y1df{bottom:10.458331pt;}
.y1f4{bottom:10.458332pt;}
.y196{bottom:10.458333pt;}
.y264{bottom:10.458335pt;}
.y1d4{bottom:10.458336pt;}
.y1ff{bottom:10.458337pt;}
.y27e{bottom:10.458341pt;}
.y220{bottom:10.458344pt;}
.y162{bottom:10.460937pt;}
.y279{bottom:10.463535pt;}
.y1c6{bottom:10.463537pt;}
.y1c2{bottom:10.463540pt;}
.y25c{bottom:10.463541pt;}
.y222{bottom:10.463543pt;}
.y1ef{bottom:10.463544pt;}
.y1cf{bottom:10.463545pt;}
.y274{bottom:10.463548pt;}
.y269{bottom:10.463551pt;}
.y31a{bottom:13.229164pt;}
.y17f{bottom:19.658851pt;}
.y228{bottom:19.658852pt;}
.yc0{bottom:19.660152pt;}
.yae{bottom:19.660153pt;}
.yb4{bottom:19.660155pt;}
.ya3{bottom:19.660156pt;}
.yb7{bottom:19.660159pt;}
.yc4{bottom:19.660160pt;}
.yd1{bottom:19.660163pt;}
.yd3{bottom:19.660165pt;}
.y164{bottom:19.661459pt;}
.y177{bottom:19.661460pt;}
.y257{bottom:19.661471pt;}
.y31f{bottom:28.854168pt;}
.y26c{bottom:28.859364pt;}
.y25f{bottom:28.859368pt;}
.y1de{bottom:28.859371pt;}
.y1ce{bottom:28.859372pt;}
.y199{bottom:28.859375pt;}
.y1d3{bottom:28.859376pt;}
.y1c5{bottom:28.859377pt;}
.y19f{bottom:28.859379pt;}
.y1b5{bottom:28.859380pt;}
.y27b{bottom:28.859381pt;}
.y21f{bottom:28.859384pt;}
.y323{bottom:28.864577pt;}
.y328{bottom:28.864591pt;}
.y319{bottom:34.385417pt;}
.y16d{bottom:44.861980pt;}
.y30b{bottom:47.255203pt;}
.y1fe{bottom:47.255204pt;}
.y19e{bottom:47.255205pt;}
.y1b4{bottom:47.255207pt;}
.y198{bottom:47.255208pt;}
.y1d2{bottom:47.255209pt;}
.y1dd{bottom:47.255211pt;}
.y1f3{bottom:47.255212pt;}
.ycc{bottom:47.257805pt;}
.yad{bottom:47.257807pt;}
.yb3{bottom:47.257808pt;}
.y17e{bottom:47.257811pt;}
.yb6{bottom:47.257812pt;}
.yc3{bottom:47.257813pt;}
.yd0{bottom:47.257816pt;}
.ybf{bottom:47.257819pt;}
.y20e{bottom:47.260411pt;}
.y1cd{bottom:47.260412pt;}
.y1c4{bottom:47.260417pt;}
.y1c1{bottom:47.260420pt;}
.y1ee{bottom:47.260424pt;}
.y176{bottom:47.294267pt;}
.y8f{bottom:53.304039pt;}
.ya{bottom:53.304519pt;}
.y23{bottom:53.304692pt;}
.y11b{bottom:53.305332pt;}
.y318{bottom:55.546871pt;}
.y1fd{bottom:65.656244pt;}
.y19d{bottom:65.656245pt;}
.y1b3{bottom:65.656247pt;}
.y1d1{bottom:65.656251pt;}
.y1cc{bottom:65.656252pt;}
.y30a{bottom:65.656256pt;}
.y1c0{bottom:65.656260pt;}
.y16c{bottom:72.494788pt;}
.y22b{bottom:74.854167pt;}
.ycb{bottom:74.855459pt;}
.yac{bottom:74.855460pt;}
.yb2{bottom:74.855461pt;}
.yc2{bottom:74.855467pt;}
.ycf{bottom:74.855469pt;}
.ybe{bottom:74.855472pt;}
.y17d{bottom:74.856771pt;}
.y175{bottom:74.997401pt;}
.y317{bottom:76.703124pt;}
.y1fa{bottom:84.052073pt;}
.y1dc{bottom:84.052077pt;}
.y1fc{bottom:84.052084pt;}
.y19c{bottom:84.052085pt;}
.y1b2{bottom:84.052087pt;}
.y21e{bottom:84.052091pt;}
.y1ed{bottom:84.057291pt;}
.y1cb{bottom:84.057292pt;}
.y1bf{bottom:84.057300pt;}
.y316{bottom:97.859377pt;}
.y16b{bottom:100.164060pt;}
.y6a{bottom:100.406247pt;}
.y281{bottom:101.567712pt;}
.yab{bottom:102.453113pt;}
.yb1{bottom:102.453115pt;}
.ybd{bottom:102.453125pt;}
.y1b1{bottom:102.453127pt;}
.y17c{bottom:102.453131pt;}
.y174{bottom:102.666660pt;}
.y2e5{bottom:104.255212pt;}
.y2a9{bottom:109.604167pt;}
.yd4{bottom:110.816412pt;}
.yb5{bottom:113.579421pt;}
.y137{bottom:114.203127pt;}
.y24f{bottom:114.208327pt;}
.y18f{bottom:116.033860pt;}
.y11a{bottom:118.802087pt;}
.ye8{bottom:118.803380pt;}
.y96{bottom:118.804687pt;}
.y307{bottom:118.807287pt;}
.y315{bottom:119.015617pt;}
.y1b0{bottom:120.848953pt;}
.y1db{bottom:120.848957pt;}
.y1be{bottom:120.854167pt;}
.y1ec{bottom:120.854171pt;}
.y2cc{bottom:122.348959pt;}
.y16a{bottom:127.763020pt;}
.y2b6{bottom:127.999993pt;}
.y14c{bottom:128.002607pt;}
.y69{bottom:128.003900pt;}
.y2e4{bottom:129.557292pt;}
.y17b{bottom:130.049477pt;}
.y22a{bottom:130.049480pt;}
.ybc{bottom:130.050779pt;}
.yaa{bottom:130.050780pt;}
.yb0{bottom:130.050781pt;}
.y173{bottom:130.299481pt;}
.y296{bottom:136.885412pt;}
.y110{bottom:137.201820pt;}
.y159{bottom:137.203127pt;}
.y1c9{bottom:139.249993pt;}
.y1da{bottom:139.249997pt;}
.y1f1{bottom:139.250000pt;}
.y1bd{bottom:139.250007pt;}
.y21d{bottom:139.250011pt;}
.y178{bottom:139.395833pt;}
.y314{bottom:140.177084pt;}
.y136{bottom:141.802087pt;}
.y18e{bottom:143.630207pt;}
.ye7{bottom:146.401047pt;}
.y95{bottom:146.402340pt;}
.y2cb{bottom:147.645839pt;}
.y280{bottom:153.364579pt;}
.y16e{bottom:155.333333pt;}
.y169{bottom:155.359367pt;}
.y14b{bottom:155.598953pt;}
.y68{bottom:155.601567pt;}
.y1d9{bottom:157.645831pt;}
.y1af{bottom:157.645833pt;}
.y21c{bottom:157.645837pt;}
.ya9{bottom:157.648433pt;}
.ybb{bottom:157.648437pt;}
.y1eb{bottom:157.651037pt;}
.y1bc{bottom:157.651047pt;}
.y165{bottom:157.940107pt;}
.y172{bottom:157.966140pt;}
.y313{bottom:161.333324pt;}
.y295{bottom:162.182292pt;}
.y1c8{bottom:162.375000pt;}
.y10f{bottom:164.799473pt;}
.y2a8{bottom:164.802087pt;}
.y9{bottom:165.076663pt;}
.y2f6{bottom:168.343745pt;}
.y135{bottom:169.398433pt;}
.y24e{bottom:169.401047pt;}
.y18d{bottom:171.229167pt;}
.y23f{bottom:173.270833pt;}
.ye6{bottom:173.998700pt;}
.y8e{bottom:173.999993pt;}
.y1d8{bottom:176.046872pt;}
.y1ae{bottom:176.046873pt;}
.y20d{bottom:176.046877pt;}
.y32b{bottom:177.947913pt;}
.y2e3{bottom:180.151039pt;}
.y312{bottom:182.489577pt;}
.y168{bottom:182.992188pt;}
.y14a{bottom:183.197913pt;}
.y67{bottom:183.199220pt;}
.ya4{bottom:183.774747pt;}
.ya8{bottom:185.246087pt;}
.yba{bottom:185.246093pt;}
.y171{bottom:185.598961pt;}
.y270{bottom:189.864580pt;}
.y2a7{bottom:192.395833pt;}
.y32a{bottom:193.885420pt;}
.y1f9{bottom:194.442700pt;}
.y1d7{bottom:194.442705pt;}
.y1ad{bottom:194.442713pt;}
.y21b{bottom:194.442717pt;}
.y1f7{bottom:194.447913pt;}
.y1ea{bottom:194.447917pt;}
.y1bb{bottom:194.447927pt;}
.y134{bottom:196.997393pt;}
.y24d{bottom:196.999993pt;}
.y8{bottom:197.273929pt;}
.y2ca{bottom:198.244785pt;}
.y2fb{bottom:201.593753pt;}
.ye5{bottom:201.596353pt;}
.y8d{bottom:201.597660pt;}
.y311{bottom:203.645831pt;}
.y27f{bottom:205.161456pt;}
.y2e2{bottom:205.447919pt;}
.y167{bottom:210.658847pt;}
.y149{bottom:210.796873pt;}
.y294{bottom:212.776039pt;}
.ya7{bottom:212.843740pt;}
.y20c{bottom:212.843744pt;}
.y1d6{bottom:212.843747pt;}
.y1ac{bottom:212.843753pt;}
.y1e9{bottom:212.843757pt;}
.y170{bottom:213.265620pt;}
.y26f{bottom:217.458327pt;}
.y2f5{bottom:218.937505pt;}
.y10e{bottom:219.994793pt;}
.y2c9{bottom:223.541665pt;}
.y133{bottom:224.593753pt;}
.y194{bottom:224.596353pt;}
.y310{bottom:224.812497pt;}
.y18c{bottom:226.424473pt;}
.y327{bottom:227.281243pt;}
.y23e{bottom:228.468753pt;}
.y11e{bottom:229.192713pt;}
.y114{bottom:229.194007pt;}
.y8c{bottom:229.195313pt;}
.y303{bottom:229.197913pt;}
.y1ab{bottom:231.239580pt;}
.y21a{bottom:231.239584pt;}
.y20b{bottom:231.244784pt;}
.y1ba{bottom:231.244793pt;}
.y1e8{bottom:231.244797pt;}
.y40{bottom:237.339199pt;}
.y293{bottom:238.078119pt;}
.y166{bottom:238.291667pt;}
.y148{bottom:238.393233pt;}
.y66{bottom:238.394527pt;}
.y2b5{bottom:238.395833pt;}
.ya6{bottom:240.441393pt;}
.y16f{bottom:240.898441pt;}
.y2f4{bottom:244.239585pt;}
.y30f{bottom:245.968751pt;}
.y10d{bottom:247.592447pt;}
.y1c{bottom:247.593100pt;}
.y158{bottom:247.593753pt;}
.y1aa{bottom:249.640620pt;}
.y1e7{bottom:249.640624pt;}
.y1b9{bottom:249.640633pt;}
.y1f5{bottom:250.927080pt;}
.y193{bottom:252.192713pt;}
.y18b{bottom:254.020833pt;}
.y2e1{bottom:256.046879pt;}
.y23d{bottom:256.065100pt;}
.ye4{bottom:256.791660pt;}
.y8b{bottom:256.792967pt;}
.y3f{bottom:262.637039pt;}
.yd2{bottom:263.804681pt;}
.y329{bottom:264.083327pt;}
.y147{bottom:265.989580pt;}
.y65{bottom:265.992193pt;}
.y26e{bottom:266.218753pt;}
.y30e{bottom:267.124997pt;}
.y1a9{bottom:268.036460pt;}
.y219{bottom:268.036464pt;}
.ya5{bottom:268.039060pt;}
.y1e6{bottom:268.041664pt;}
.y1b8{bottom:268.041673pt;}
.y22{bottom:270.591140pt;}
.y2c8{bottom:274.135412pt;}
.y2a6{bottom:275.187500pt;}
.y10c{bottom:275.190100pt;}
.y1b{bottom:275.190753pt;}
.y27d{bottom:275.359372pt;}
.y132{bottom:279.789060pt;}
.y192{bottom:279.791660pt;}
.y2e0{bottom:281.338545pt;}
.y18a{bottom:281.619793pt;}
.y26d{bottom:282.156252pt;}
.y23c{bottom:283.661460pt;}
.ye3{bottom:284.389327pt;}
.y94{bottom:284.390620pt;}
.y306{bottom:284.395833pt;}
.y1a8{bottom:286.437500pt;}
.y20a{bottom:286.437504pt;}
.y3e{bottom:287.934892pt;}
.y30d{bottom:288.281247pt;}
.y292{bottom:288.671879pt;}
.yce{bottom:291.402337pt;}
.y2b4{bottom:293.588540pt;}
.y64{bottom:293.589847pt;}
.y7{bottom:293.865716pt;}
.y2f3{bottom:294.833332pt;}
.y326{bottom:297.479167pt;}
.y21{bottom:298.188807pt;}
.y2c7{bottom:299.432292pt;}
.y25a{bottom:300.307287pt;}
.y157{bottom:302.786460pt;}
.y10b{bottom:302.787767pt;}
.y227{bottom:304.205728pt;}
.y1a7{bottom:304.833327pt;}
.y218{bottom:304.833344pt;}
.y1f6{bottom:304.838540pt;}
.y1e5{bottom:304.838544pt;}
.y131{bottom:307.388020pt;}
.y191{bottom:307.390620pt;}
.y189{bottom:309.218753pt;}
.ye2{bottom:311.986980pt;}
.y8a{bottom:311.988287pt;}
.y2f9{bottom:311.989580pt;}
.y3d{bottom:313.232745pt;}
.y291{bottom:313.968745pt;}
.y2f2{bottom:320.130212pt;}
.y63{bottom:321.187500pt;}
.yaf{bottom:321.763025pt;}
.y209{bottom:323.234371pt;}
.y1e4{bottom:323.234377pt;}
.y1a6{bottom:323.234380pt;}
.y6{bottom:326.062983pt;}
.y259{bottom:327.906247pt;}
.y1c7{bottom:327.958333pt;}
.y10a{bottom:330.385420pt;}
.y226{bottom:331.802081pt;}
.y2df{bottom:331.937505pt;}
.y20{bottom:334.226566pt;}
.y130{bottom:334.984380pt;}
.y325{bottom:336.479167pt;}
.y3c{bottom:338.530599pt;}
.y1a{bottom:338.826166pt;}
.y23b{bottom:338.859380pt;}
.y119{bottom:339.583327pt;}
.yf6{bottom:339.584633pt;}
.y89{bottom:339.585940pt;}
.y308{bottom:339.588540pt;}
.y1a5{bottom:341.630207pt;}
.y217{bottom:341.630211pt;}
.y208{bottom:341.635411pt;}
.y1e3{bottom:341.635419pt;}
.y1f8{bottom:342.921880pt;}
.y2f1{bottom:345.432292pt;}
.y27c{bottom:345.552083pt;}
.y2b3{bottom:348.781247pt;}
.y146{bottom:348.783860pt;}
.y2c6{bottom:350.026039pt;}
.y26b{bottom:352.348963pt;}
.y2de{bottom:357.234372pt;}
.y2a5{bottom:357.984380pt;}
.y1a4{bottom:360.031247pt;}
.y207{bottom:360.031251pt;}
.y1e2{bottom:360.031252pt;}
.y12f{bottom:362.583327pt;}
.y3b{bottom:363.828452pt;}
.y188{bottom:364.411460pt;}
.y290{bottom:364.562505pt;}
.y190{bottom:364.692703pt;}
.y1ca{bottom:364.755208pt;}
.y23a{bottom:366.455727pt;}
.ye1{bottom:367.182287pt;}
.y88{bottom:367.183593pt;}
.y322{bottom:369.875003pt;}
.y258{bottom:370.218753pt;}
.y2f0{bottom:370.729172pt;}
.y2c5{bottom:375.328119pt;}
.y145{bottom:376.380207pt;}
.y62{bottom:376.382807pt;}
.y1a3{bottom:378.427087pt;}
.y216{bottom:378.427091pt;}
.y206{bottom:378.432291pt;}
.y1e1{bottom:378.432293pt;}
.y225{bottom:380.619793pt;}
.y109{bottom:385.580727pt;}
.y2a4{bottom:385.583327pt;}
.y256{bottom:386.156243pt;}
.ycd{bottom:389.195319pt;}
.y28f{bottom:389.864585pt;}
.y12e{bottom:390.179687pt;}
.y3a{bottom:390.181313pt;}
.y24c{bottom:390.182287pt;}
.y187{bottom:392.010420pt;}
.y239{bottom:394.052087pt;}
.ye0{bottom:394.779953pt;}
.y87{bottom:394.781247pt;}
.y1a2{bottom:396.828127pt;}
.y215{bottom:396.828131pt;}
.y2c4{bottom:400.624999pt;}
.y2b2{bottom:403.979167pt;}
.y61{bottom:403.980473pt;}
.y324{bottom:406.677087pt;}
.y2dd{bottom:407.828119pt;}
.y224{bottom:410.328129pt;}
.y156{bottom:413.177087pt;}
.y108{bottom:413.178380pt;}
.y5{bottom:413.503253pt;}
.y255{bottom:413.755201pt;}
.y28e{bottom:415.161452pt;}
.y214{bottom:415.223964pt;}
.y205{bottom:415.229165pt;}
.y27a{bottom:415.749999pt;}
.y39{bottom:416.723959pt;}
.yca{bottom:416.792975pt;}
.y24b{bottom:417.781247pt;}
.y163{bottom:419.239588pt;}
.y186{bottom:419.609380pt;}
.y2ef{bottom:421.322919pt;}
.y31e{bottom:421.677079pt;}
.y2fa{bottom:422.374993pt;}
.ydf{bottom:422.377607pt;}
.y93{bottom:422.378900pt;}
.y26a{bottom:422.546879pt;}
.y161{bottom:428.440109pt;}
.y60{bottom:431.578127pt;}
.y2dc{bottom:433.130212pt;}
.y204{bottom:433.624999pt;}
.y213{bottom:433.625005pt;}
.y320{bottom:440.072912pt;}
.y107{bottom:440.776047pt;}
.y38{bottom:443.076500pt;}
.y12d{bottom:445.374993pt;}
.y238{bottom:449.249993pt;}
.y118{bottom:449.973953pt;}
.yde{bottom:449.975260pt;}
.y86{bottom:449.976567pt;}
.y305{bottom:449.979167pt;}
.y2c3{bottom:451.218745pt;}
.y212{bottom:452.020839pt;}
.y203{bottom:452.026040pt;}
.y1f2{bottom:453.312501pt;}
.y254{bottom:456.354161pt;}
.y2db{bottom:458.427079pt;}
.y321{bottom:458.468745pt;}
.y144{bottom:459.174473pt;}
.y5f{bottom:459.175780pt;}
.y2b1{bottom:459.177087pt;}
.y28d{bottom:465.755212pt;}
.y160{bottom:468.057287pt;}
.y106{bottom:468.373700pt;}
.y155{bottom:468.374993pt;}
.y4{bottom:468.698533pt;}
.y202{bottom:470.421873pt;}
.y211{bottom:470.421880pt;}
.y37{bottom:470.674153pt;}
.y1a1{bottom:471.750000pt;}
.y2ee{bottom:471.921879pt;}
.y12c{bottom:472.973953pt;}
.ya2{bottom:474.751304pt;}
.y185{bottom:474.802087pt;}
.y2c2{bottom:476.515625pt;}
.y237{bottom:476.846353pt;}
.ydd{bottom:477.572913pt;}
.y85{bottom:477.574220pt;}
.y278{bottom:485.942712pt;}
.y143{bottom:486.770833pt;}
.y19{bottom:486.772780pt;}
.y210{bottom:488.817713pt;}
.y223{bottom:489.171873pt;}
.y1fb{bottom:490.109376pt;}
.y28c{bottom:491.057292pt;}
.y31d{bottom:491.869792pt;}
.y268{bottom:492.739576pt;}
.y2a3{bottom:495.968753pt;}
.y105{bottom:495.971353pt;}
.y2ed{bottom:497.213545pt;}
.y36{bottom:498.271807pt;}
.y12b{bottom:500.570313pt;}
.y24a{bottom:500.572913pt;}
.y184{bottom:502.401047pt;}
.y236{bottom:504.442713pt;}
.y20f{bottom:505.109369pt;}
.ydc{bottom:505.170567pt;}
.y84{bottom:505.171873pt;}
.y302{bottom:505.177087pt;}
.y2da{bottom:509.020839pt;}
.y142{bottom:514.369793pt;}
.y18{bottom:514.370447pt;}
.y5e{bottom:514.371100pt;}
.y15f{bottom:523.252607pt;}
.y201{bottom:523.505209pt;}
.y154{bottom:523.567713pt;}
.y104{bottom:523.569007pt;}
.ya1{bottom:523.570313pt;}
.y3{bottom:523.893840pt;}
.y35{bottom:525.869460pt;}
.y2c1{bottom:527.114585pt;}
.y12a{bottom:528.169273pt;}
.y249{bottom:528.171873pt;}
.y183{bottom:529.999993pt;}
.y235{bottom:532.041660pt;}
.y113{bottom:532.768233pt;}
.y92{bottom:532.769527pt;}
.y2f8{bottom:532.770833pt;}
.y2d9{bottom:534.322919pt;}
.y277{bottom:537.739583pt;}
.y28b{bottom:541.651039pt;}
.y17{bottom:541.968100pt;}
.y5d{bottom:541.968753pt;}
.yc9{bottom:542.183597pt;}
.y2ec{bottom:547.812505pt;}
.y31c{bottom:549.885420pt;}
.y153{bottom:551.166660pt;}
.y34{bottom:552.412105pt;}
.y248{bottom:555.768233pt;}
.y182{bottom:557.596353pt;}
.y234{bottom:559.640620pt;}
.y117{bottom:560.364580pt;}
.ydb{bottom:560.365887pt;}
.y83{bottom:560.367193pt;}
.y304{bottom:560.369793pt;}
.y267{bottom:562.937499pt;}
.y28a{bottom:566.947919pt;}
.y2b0{bottom:569.562500pt;}
.y141{bottom:569.565100pt;}
.y16{bottom:569.565753pt;}
.y5c{bottom:569.566407pt;}
.y2eb{bottom:573.109372pt;}
.y4f{bottom:573.110679pt;}
.y2c0{bottom:577.708332pt;}
.y33{bottom:577.709959pt;}
.y15e{bottom:578.447913pt;}
.y103{bottom:578.764327pt;}
.ya0{bottom:578.765620pt;}
.y2{bottom:579.089147pt;}
.y129{bottom:583.364580pt;}
.y2d8{bottom:584.916665pt;}
.y233{bottom:587.236980pt;}
.yda{bottom:587.963540pt;}
.y82{bottom:587.964847pt;}
.yc8{bottom:591.001300pt;}
.y77{bottom:592.563807pt;}
.y1e0{bottom:597.098956pt;}
.y2af{bottom:597.161460pt;}
.y5b{bottom:597.164060pt;}
.y2ea{bottom:598.406252pt;}
.y4e{bottom:598.408532pt;}
.y1b7{bottom:600.536453pt;}
.y337{bottom:600.843753pt;}
.y32{bottom:603.007812pt;}
.y2bf{bottom:603.010412pt;}
.y15d{bottom:606.080734pt;}
.y102{bottom:606.361980pt;}
.y9f{bottom:606.363287pt;}
.y2a2{bottom:606.364580pt;}
.y2d7{bottom:610.213545pt;}
.y128{bottom:610.960940pt;}
.y31b{bottom:613.364580pt;}
.y266{bottom:614.734379pt;}
.y232{bottom:614.833327pt;}
.yf5{bottom:615.561193pt;}
.y81{bottom:615.562500pt;}
.y181{bottom:616.109369pt;}
.y289{bottom:617.546879pt;}
.y76{bottom:620.161460pt;}
.y2e9{bottom:623.703119pt;}
.y4d{bottom:623.706385pt;}
.y140{bottom:624.760420pt;}
.y15{bottom:624.761073pt;}
.y5a{bottom:624.761713pt;}
.y276{bottom:626.333336pt;}
.y31{bottom:628.305665pt;}
.y336{bottom:628.437500pt;}
.y30c{bottom:629.291669pt;}
.y15c{bottom:633.783854pt;}
.y152{bottom:633.958327pt;}
.y101{bottom:633.959633pt;}
.y127{bottom:638.559900pt;}
.y247{bottom:638.562500pt;}
.y231{bottom:642.432287pt;}
.y253{bottom:643.156247pt;}
.yf4{bottom:643.158860pt;}
.y80{bottom:643.160153pt;}
.yc7{bottom:646.196620pt;}
.y75{bottom:647.759113pt;}
.y4c{bottom:649.004239pt;}
.y14{bottom:652.358727pt;}
.y59{bottom:652.359380pt;}
.y30{bottom:653.603519pt;}
.y2be{bottom:653.604172pt;}
.y335{bottom:656.041660pt;}
.y2d6{bottom:660.807292pt;}
.y15b{bottom:661.453127pt;}
.y100{bottom:661.557287pt;}
.y126{bottom:666.156247pt;}
.y9e{bottom:666.157553pt;}
.y246{bottom:666.158860pt;}
.y265{bottom:666.531245pt;}
.y288{bottom:668.140625pt;}
.y116{bottom:670.755207pt;}
.yf3{bottom:670.756513pt;}
.y7f{bottom:670.757807pt;}
.y301{bottom:670.760420pt;}
.yc6{bottom:673.794273pt;}
.y4b{bottom:674.302079pt;}
.y2bd{bottom:678.901039pt;}
.y2f{bottom:678.901372pt;}
.y13f{bottom:679.955727pt;}
.y13{bottom:679.956380pt;}
.yd8{bottom:679.957033pt;}
.y2ae{bottom:679.958327pt;}
.y334{bottom:683.635420pt;}
.y2d5{bottom:686.109372pt;}
.y15a{bottom:689.085934pt;}
.y151{bottom:689.156247pt;}
.y9d{bottom:693.755207pt;}
.y1{bottom:693.801716pt;}
.y230{bottom:695.234380pt;}
.y275{bottom:696.531252pt;}
.yf2{bottom:698.354167pt;}
.y7e{bottom:698.355473pt;}
.y2e8{bottom:699.598959pt;}
.y4a{bottom:699.599932pt;}
.y180{bottom:701.393233pt;}
.y74{bottom:702.954433pt;}
.y2e{bottom:704.199225pt;}
.y13e{bottom:707.552087pt;}
.y58{bottom:707.554687pt;}
.y2a1{bottom:716.749993pt;}
.yff{bottom:716.752607pt;}
.y17a{bottom:717.330729pt;}
.y263{bottom:718.328125pt;}
.y287{bottom:718.734372pt;}
.y125{bottom:721.351567pt;}
.y9c{bottom:721.352860pt;}
.y245{bottom:721.354167pt;}
.yc5{bottom:722.550780pt;}
.y22f{bottom:722.830727pt;}
.y49{bottom:724.897785pt;}
.y112{bottom:725.951820pt;}
.y91{bottom:725.953127pt;}
.y300{bottom:725.958327pt;}
.y2bc{bottom:729.494785pt;}
.y2d{bottom:729.497065pt;}
.y73{bottom:730.552087pt;}
.y13d{bottom:735.151047pt;}
.y12{bottom:735.151687pt;}
.y57{bottom:735.152340pt;}
.y2d4{bottom:736.703119pt;}
.yb9{bottom:738.488281pt;}
.y333{bottom:738.833327pt;}
.y286{bottom:744.031252pt;}
.y150{bottom:744.348953pt;}
.yfe{bottom:744.350260pt;}
.y9b{bottom:748.950527pt;}
.y244{bottom:748.953127pt;}
.y48{bottom:750.195639pt;}
.y29d{bottom:750.197919pt;}
.y22e{bottom:750.427087pt;}
.yf1{bottom:753.549473pt;}
.y7d{bottom:753.550780pt;}
.y252{bottom:753.552087pt;}
.y2c{bottom:754.794919pt;}
.y2bb{bottom:754.796879pt;}
.y72{bottom:758.149740pt;}
.y2d3{bottom:761.999999pt;}
.y1d5{bottom:762.687503pt;}
.y11{bottom:762.749353pt;}
.y56{bottom:762.749993pt;}
.y19b{bottom:766.125001pt;}
.y332{bottom:766.432287pt;}
.y273{bottom:766.723952pt;}
.y261{bottom:770.125005pt;}
.yfd{bottom:771.947913pt;}
.y47{bottom:775.493492pt;}
.y29c{bottom:775.494785pt;}
.y9a{bottom:776.548180pt;}
.y243{bottom:776.549473pt;}
.y22d{bottom:778.026047pt;}
.y2ba{bottom:780.088545pt;}
.y2b{bottom:780.092772pt;}
.y115{bottom:781.145833pt;}
.yf0{bottom:781.147140pt;}
.y7c{bottom:781.148433pt;}
.y2ff{bottom:781.151047pt;}
.y71{bottom:785.747393pt;}
.y2ad{bottom:790.343753pt;}
.y13c{bottom:790.346353pt;}
.y10{bottom:790.347007pt;}
.y55{bottom:790.347660pt;}
.yc1{bottom:793.683593pt;}
.y331{bottom:794.026047pt;}
.yfc{bottom:799.545567pt;}
.y14f{bottom:799.546873pt;}
.y285{bottom:800.093743pt;}
.y46{bottom:800.791345pt;}
.y99{bottom:804.145833pt;}
.y2a{bottom:805.390625pt;}
.yef{bottom:808.744793pt;}
.y7b{bottom:808.746100pt;}
.y2d2{bottom:812.593745pt;}
.y70{bottom:813.345047pt;}
.y309{bottom:815.119791pt;}
.y13b{bottom:817.942713pt;}
.yf{bottom:817.944660pt;}
.yd7{bottom:817.945313pt;}
.y272{bottom:818.520829pt;}
.y22c{bottom:820.343753pt;}
.y1c3{bottom:821.317709pt;}
.y25e{bottom:821.921879pt;}
.y29b{bottom:826.088545pt;}
.y45{bottom:826.089199pt;}
.yfb{bottom:827.143233pt;}
.y2a0{bottom:827.145833pt;}
.y29{bottom:830.688479pt;}
.y124{bottom:831.742193pt;}
.y98{bottom:831.743487pt;}
.y242{bottom:831.744793pt;}
.y229{bottom:836.281249pt;}
.yee{bottom:836.342447pt;}
.y7a{bottom:836.343753pt;}
.y2d1{bottom:837.895839pt;}
.y2ac{bottom:845.541660pt;}
.y54{bottom:845.542967pt;}
.y330{bottom:849.218753pt;}
.y44{bottom:851.387039pt;}
.y29a{bottom:851.390625pt;}
.y1f0{bottom:854.677083pt;}
.y29f{bottom:854.739580pt;}
.yfa{bottom:854.740887pt;}
.y2b9{bottom:855.984372pt;}
.y28{bottom:855.986332pt;}
.y14e{bottom:856.854169pt;}
.y123{bottom:859.341140pt;}
.y251{bottom:863.937500pt;}
.yed{bottom:863.940100pt;}
.y79{bottom:863.941407pt;}
.y6f{bottom:866.240887pt;}
.y1d0{bottom:873.078124pt;}
.ye{bottom:873.139980pt;}
.y53{bottom:873.140620pt;}
.y13a{bottom:875.249996pt;}
.y2f7{bottom:876.682292pt;}
.y32f{bottom:876.822913pt;}
.y284{bottom:878.937500pt;}
.y27{bottom:881.284185pt;}
.y29e{bottom:882.338540pt;}
.y122{bottom:886.937500pt;}
.y241{bottom:886.940104pt;}
.y2d0{bottom:888.489584pt;}
.y271{bottom:888.718749pt;}
.y14d{bottom:889.046875pt;}
.y97{bottom:889.049479pt;}
.y200{bottom:891.473957pt;}
.y197{bottom:891.515625pt;}
.y11d{bottom:891.536459pt;}
.yec{bottom:891.537760pt;}
.y90{bottom:891.539063pt;}
.y2fe{bottom:891.541667pt;}
.y25d{bottom:892.114584pt;}
.y6e{bottom:893.838541pt;}
.y283{bottom:894.874999pt;}
.y179{bottom:897.916667pt;}
.y1f{bottom:900.737631pt;}
.yd{bottom:900.737712pt;}
.y52{bottom:900.738281pt;}
.y2ab{bottom:900.739583pt;}
.y299{bottom:901.984375pt;}
.yd6{bottom:903.136719pt;}
.y32e{bottom:904.416667pt;}
.y26{bottom:906.582032pt;}
.y2b8{bottom:906.583333pt;}
.yf9{bottom:909.936197pt;}
.y2cf{bottom:913.786459pt;}
.y121{bottom:914.536459pt;}
.yd5{bottom:919.074219pt;}
.y111{bottom:919.135416pt;}
.yd9{bottom:919.136719pt;}
.y78{bottom:921.246093pt;}
.y2e7{bottom:927.276041pt;}
.y221{bottom:928.270832pt;}
.y19a{bottom:928.312500pt;}
.y2aa{bottom:928.333333pt;}
.y1e{bottom:928.335287pt;}
.yc{bottom:928.335368pt;}
.y51{bottom:928.335937pt;}
.y25{bottom:931.879883pt;}
.y2b7{bottom:931.880208pt;}
.y32d{bottom:932.020833pt;}
.y2ce{bottom:939.088541pt;}
.y120{bottom:942.132812pt;}
.y240{bottom:942.135416pt;}
.y25b{bottom:943.911459pt;}
.y139{bottom:945.973958pt;}
.yb8{bottom:946.671876pt;}
.yeb{bottom:946.733073pt;}
.y6d{bottom:946.734375pt;}
.y2fd{bottom:946.739583pt;}
.y298{bottom:952.578125pt;}
.y43{bottom:952.578451pt;}
.y24{bottom:957.177735pt;}
.y32c{bottom:959.614583pt;}
.y195{bottom:962.312500pt;}
.yf8{bottom:967.242187pt;}
.yea{bottom:974.330729pt;}
.y6c{bottom:974.332031pt;}
.y250{bottom:974.333333pt;}
.y2e6{bottom:977.875000pt;}
.y42{bottom:977.876303pt;}
.y282{bottom:983.468749pt;}
.y2cd{bottom:983.776041pt;}
.y138{bottom:991.968748pt;}
.y1d{bottom:991.970702pt;}
.yb{bottom:991.970783pt;}
.y50{bottom:991.971354pt;}
.y11f{bottom:999.437499pt;}
.yf7{bottom:999.438801pt;}
.y11c{bottom:1001.927083pt;}
.ye9{bottom:1001.928385pt;}
.y6b{bottom:1001.929688pt;}
.y2fc{bottom:1001.932292pt;}
.y297{bottom:1003.171875pt;}
.y41{bottom:1003.174153pt;}
.h1a{height:32.395833pt;}
.h15{height:32.398437pt;}
.h31{height:32.401041pt;}
.hb{height:41.597656pt;}
.h16{height:41.598959pt;}
.h4{height:42.166668pt;}
.h2c{height:50.796875pt;}
.h2d{height:51.619793pt;}
.h8{height:52.106772pt;}
.h9{height:52.593751pt;}
.h2e{height:56.312500pt;}
.h1b{height:56.750000pt;}
.hc{height:56.843750pt;}
.h6{height:57.375000pt;}
.h1{height:66.317706pt;}
.h1c{height:69.192708pt;}
.hf{height:69.195312pt;}
.h1f{height:69.197917pt;}
.h2a{height:87.593751pt;}
.h14{height:94.130213pt;}
.h10{height:94.132813pt;}
.h7{height:94.133133pt;}
.h3{height:94.133307pt;}
.ha{height:94.133467pt;}
.h2f{height:94.135413pt;}
.h5{height:94.739581pt;}
.h13{height:96.792969pt;}
.h27{height:105.989584pt;}
.h22{height:105.994792pt;}
.h2{height:113.687500pt;}
.h12{height:124.390625pt;}
.h23{height:142.786459pt;}
.h20{height:142.791667pt;}
.he{height:151.988281pt;}
.h25{height:161.187500pt;}
.h2b{height:179.583333pt;}
.h19{height:179.585937pt;}
.h11{height:207.183593pt;}
.h24{height:253.177080pt;}
.h17{height:260.299480pt;}
.h18{height:262.906253pt;}
.hd{height:289.976560pt;}
.h1e{height:289.979173pt;}
.h21{height:308.375000pt;}
.h30{height:310.218747pt;}
.h26{height:345.171880pt;}
.h1d{height:418.765627pt;}
.h28{height:492.359373pt;}
.h29{height:510.755213pt;}
.h0{height:1122.666667pt;}
.w15{width:65.000000pt;}
.w17{width:75.000000pt;}
.w18{width:75.000041pt;}
.w13{width:84.000000pt;}
.w14{width:103.000041pt;}
.w7{width:110.000000pt;}
.wc{width:135.000000pt;}
.wa{width:143.000000pt;}
.w9{width:143.000041pt;}
.wb{width:150.000000pt;}
.wd{width:169.000000pt;}
.w8{width:183.000000pt;}
.w11{width:184.000000pt;}
.w1b{width:185.000000pt;}
.wf{width:186.999980pt;}
.w10{width:188.000000pt;}
.w16{width:195.000000pt;}
.w1a{width:197.000000pt;}
.w12{width:261.000000pt;}
.w3{width:283.000000pt;}
.w4{width:283.000040pt;}
.w2{width:287.000000pt;}
.w19{width:471.000000pt;}
.w5{width:566.000000pt;}
.w6{width:582.000000pt;}
.we{width:600.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x3c{left:-3.000000pt;}
.x0{left:0.000000pt;}
.x39{left:1.000000pt;}
.x18{left:6.000000pt;}
.x31{left:7.937500pt;}
.x2f{left:9.648438pt;}
.x2a{left:12.058594pt;}
.x76{left:13.160156pt;}
.x34{left:16.269531pt;}
.x32{left:17.437500pt;}
.x7e{left:18.875000pt;}
.x42{left:20.000000pt;}
.x33{left:22.539062pt;}
.x3b{left:23.714844pt;}
.x2c{left:25.597656pt;}
.x35{left:26.945313pt;}
.x77{left:28.722656pt;}
.x25{left:30.000000pt;}
.x79{left:31.324219pt;}
.x2b{left:32.714844pt;}
.x7f{left:34.437500pt;}
.x2d{left:36.761719pt;}
.x7d{left:40.656250pt;}
.x7a{left:41.988281pt;}
.x40{left:50.832031pt;}
.x7c{left:52.441406pt;}
.x26{left:54.000000pt;}
.x15{left:61.019531pt;}
.x80{left:62.218750pt;}
.x1b{left:64.121094pt;}
.x3f{left:66.339844pt;}
.x24{left:70.125000pt;}
.x22{left:74.125000pt;}
.x28{left:78.000000pt;}
.x17{left:79.894531pt;}
.x29{left:106.333333pt;}
.x14{left:107.333333pt;}
.xc{left:113.333333pt;}
.x62{left:114.471487pt;}
.x5e{left:116.053519pt;}
.x60{left:117.612112pt;}
.x69{left:120.494925pt;}
.x63{left:121.823050pt;}
.x59{left:123.186331pt;}
.x64{left:124.877737pt;}
.x5d{left:125.983206pt;}
.x6a{left:127.108206pt;}
.x3e{left:129.333333pt;}
.x5a{left:130.522269pt;}
.x4{left:132.076957pt;}
.x20{left:135.312362pt;}
.x2{left:138.147269pt;}
.x70{left:139.037894pt;}
.x6d{left:140.217582pt;}
.x6b{left:142.229300pt;}
.x5b{left:143.326957pt;}
.x6f{left:144.963675pt;}
.x72{left:147.623830pt;}
.x57{left:150.940236pt;}
.x67{left:157.401174pt;}
.x10{left:161.333333pt;}
.x4e{left:163.666966pt;}
.x1f{left:169.485394pt;}
.x4d{left:171.210080pt;}
.x4f{left:180.964704pt;}
.x68{left:182.213674pt;}
.x52{left:185.333333pt;}
.x1e{left:187.915494pt;}
.x66{left:190.494924pt;}
.x5f{left:204.709767pt;}
.x27{left:205.835940pt;}
.x11{left:209.333333pt;}
.x1{left:211.473386pt;}
.x3{left:217.131642pt;}
.x78{left:218.333333pt;}
.x55{left:221.690236pt;}
.x56{left:222.881642pt;}
.x9{left:225.397153pt;}
.x6c{left:226.881642pt;}
.x6{left:239.730176pt;}
.x3d{left:243.842580pt;}
.x58{left:251.748830pt;}
.x21{left:253.170705pt;}
.x37{left:258.333333pt;}
.x74{left:261.975392pt;}
.x36{left:266.502736pt;}
.x6e{left:268.725392pt;}
.x8{left:270.529195pt;}
.x1a{left:273.385549pt;}
.x12{left:276.148869pt;}
.xd{left:277.737859pt;}
.x7{left:281.537833pt;}
.x43{left:284.272263pt;}
.x51{left:287.069143pt;}
.x13{left:288.053513pt;}
.x5c{left:290.502733pt;}
.x75{left:292.924613pt;}
.x48{left:303.333333pt;}
.x65{left:305.533983pt;}
.x1d{left:307.497393pt;}
.xe{left:317.610523pt;}
.x5{left:323.975393pt;}
.xb{left:330.203263pt;}
.x71{left:333.455863pt;}
.x54{left:340.412893pt;}
.x50{left:341.305703pt;}
.x61{left:345.369923pt;}
.xf{left:348.711663pt;}
.x53{left:354.190233pt;}
.x44{left:369.333333pt;}
.x73{left:377.514453pt;}
.x49{left:379.333333pt;}
.x23{left:391.333333pt;}
.x38{left:394.333333pt;}
.x16{left:395.333333pt;}
.x2e{left:401.333333pt;}
.x45{left:454.333333pt;}
.x4a{left:455.333333pt;}
.x7b{left:491.333333pt;}
.x41{left:506.333333pt;}
.x4b{left:531.333333pt;}
.x3a{left:538.333333pt;}
.x30{left:545.333333pt;}
.x46{left:558.333333pt;}
.x4c{left:607.333333pt;}
.x47{left:624.333333pt;}
.x19{left:664.065263pt;}
.x1c{left:665.153763pt;}
.xa{left:672.216333pt;}
}




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