
    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_f5c689448a3daad793de4ee5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_df9a6259cc70aa151f3001e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_59811a5c81bc369516dccb58.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_53e1a4a8fd265540c99c4d2c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_290cc9ceb0b53e4c0335bf6f.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v1{vertical-align:-161.280000px;}
.v5{vertical-align:-27.321681px;}
.v4{vertical-align:-25.044871px;}
.v3{vertical-align:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.321681px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:14.994141px;}
.lsf{letter-spacing:18.000000px;}
.lse{letter-spacing:18.000009px;}
.ls5{letter-spacing:19.494141px;}
.ls6{letter-spacing:20.981250px;}
.ls8{letter-spacing:23.994141px;}
.lsa{letter-spacing:26.985914px;}
.lsc{letter-spacing:26.985937px;}
.ls7{letter-spacing:27.000000px;}
.lsb{letter-spacing:28.494141px;}
.ls1{letter-spacing:30.240000px;}
.ls9{letter-spacing:31.485937px;}
.ls3{letter-spacing:31.485959px;}
.lsd{letter-spacing:36.000000px;}
.ls10{letter-spacing:40.500000px;}
.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;}
}
.ws74{word-spacing:-72.000000px;}
.ws18{word-spacing:-39.000002px;}
.ws19{word-spacing:-36.000000px;}
.ws58{word-spacing:-33.000001px;}
.ws2b{word-spacing:-29.999999px;}
.ws0{word-spacing:-24.300000px;}
.ws1a{word-spacing:-23.072940px;}
.ws1b{word-spacing:-22.264326px;}
.ws1d{word-spacing:-22.229167px;}
.ws27{word-spacing:-21.600001px;}
.ws43{word-spacing:-18.000034px;}
.wsc9{word-spacing:-18.000024px;}
.ws4{word-spacing:-18.000023px;}
.ws1f{word-spacing:-18.000014px;}
.ws9{word-spacing:-18.000012px;}
.ws16{word-spacing:-18.000003px;}
.ws9a{word-spacing:-18.000001px;}
.wsa{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.999998px;}
.wsd2{word-spacing:-17.999991px;}
.ws22{word-spacing:-17.999989px;}
.ws67{word-spacing:-17.999978px;}
.wsd0{word-spacing:-17.999977px;}
.ws33{word-spacing:-17.999967px;}
.ws92{word-spacing:-16.545648px;}
.ws91{word-spacing:-16.535310px;}
.ws53{word-spacing:-16.535218px;}
.ws54{word-spacing:-16.535160px;}
.ws51{word-spacing:-16.535158px;}
.ws93{word-spacing:-16.535156px;}
.ws90{word-spacing:-16.535147px;}
.ws61{word-spacing:-16.535144px;}
.wsaf{word-spacing:-16.532569px;}
.ws32{word-spacing:-15.021533px;}
.wsa2{word-spacing:-15.020214px;}
.wsa5{word-spacing:-15.017687px;}
.ws4d{word-spacing:-15.017651px;}
.ws95{word-spacing:-15.017647px;}
.wsa9{word-spacing:-15.017616px;}
.wsa4{word-spacing:-15.017607px;}
.ws7c{word-spacing:-15.017605px;}
.ws4e{word-spacing:-15.017600px;}
.ws31{word-spacing:-15.017594px;}
.wsa8{word-spacing:-15.017582px;}
.ws5d{word-spacing:-15.017580px;}
.ws3c{word-spacing:-15.017578px;}
.ws2a{word-spacing:-15.017575px;}
.wsb6{word-spacing:-15.017574px;}
.ws2d{word-spacing:-15.017569px;}
.ws6f{word-spacing:-15.017561px;}
.ws6c{word-spacing:-15.017560px;}
.ws2e{word-spacing:-15.017554px;}
.ws87{word-spacing:-15.017548px;}
.ws64{word-spacing:-15.017381px;}
.ws81{word-spacing:-15.016309px;}
.ws97{word-spacing:-15.016264px;}
.ws9f{word-spacing:-15.016243px;}
.ws2f{word-spacing:-15.016228px;}
.ws96{word-spacing:-15.016227px;}
.ws50{word-spacing:-15.016220px;}
.wsc4{word-spacing:-15.016174px;}
.ws6b{word-spacing:-15.014944px;}
.ws7b{word-spacing:-15.013673px;}
.ws8c{word-spacing:-15.013095px;}
.ws86{word-spacing:-15.012352px;}
.wscb{word-spacing:-15.012337px;}
.ws3b{word-spacing:-15.012336px;}
.wsc1{word-spacing:-15.012327px;}
.wsb5{word-spacing:-15.011853px;}
.ws5e{word-spacing:-15.011752px;}
.ws72{word-spacing:-15.011723px;}
.ws2c{word-spacing:-15.011719px;}
.ws49{word-spacing:-15.011718px;}
.ws88{word-spacing:-15.011716px;}
.ws8a{word-spacing:-15.011706px;}
.wsd4{word-spacing:-14.976562px;}
.wscd{word-spacing:-13.500037px;}
.ws24{word-spacing:-13.500033px;}
.ws6d{word-spacing:-13.500024px;}
.ws17{word-spacing:-13.500022px;}
.ws8{word-spacing:-13.500012px;}
.ws3f{word-spacing:-13.500003px;}
.wsb2{word-spacing:-13.500002px;}
.ws3{word-spacing:-13.500001px;}
.ws63{word-spacing:-13.499999px;}
.ws84{word-spacing:-13.499998px;}
.wse{word-spacing:-13.499989px;}
.ws2{word-spacing:-13.499978px;}
.ws7d{word-spacing:-13.499967px;}
.ws57{word-spacing:-12.035356px;}
.wsad{word-spacing:-12.035230px;}
.ws52{word-spacing:-12.035211px;}
.ws9b{word-spacing:-12.032528px;}
.ws30{word-spacing:-10.521489px;}
.wsab{word-spacing:-10.517787px;}
.ws83{word-spacing:-10.517662px;}
.ws8f{word-spacing:-10.517648px;}
.wsc0{word-spacing:-10.517619px;}
.ws78{word-spacing:-10.517594px;}
.wsbf{word-spacing:-10.517580px;}
.ws89{word-spacing:-10.517577px;}
.ws82{word-spacing:-10.517573px;}
.ws48{word-spacing:-10.517569px;}
.ws4c{word-spacing:-10.517561px;}
.ws47{word-spacing:-10.517516px;}
.wsca{word-spacing:-10.517509px;}
.ws4f{word-spacing:-10.516228px;}
.wsa3{word-spacing:-10.516225px;}
.wsb0{word-spacing:-10.516219px;}
.ws71{word-spacing:-10.512371px;}
.ws66{word-spacing:-10.511932px;}
.wsf{word-spacing:-9.000035px;}
.ws13{word-spacing:-9.000023px;}
.wsb1{word-spacing:-9.000012px;}
.wsd{word-spacing:-9.000011px;}
.ws21{word-spacing:-9.000003px;}
.ws6{word-spacing:-9.000000px;}
.ws62{word-spacing:-8.999999px;}
.ws9e{word-spacing:-8.999997px;}
.wsc{word-spacing:-8.999989px;}
.ws3d{word-spacing:-8.999978px;}
.ws4b{word-spacing:-8.999967px;}
.ws9c{word-spacing:-7.535301px;}
.ws56{word-spacing:-7.535246px;}
.wsac{word-spacing:-7.535221px;}
.ws55{word-spacing:-7.535218px;}
.ws60{word-spacing:-7.535146px;}
.wsb4{word-spacing:-6.017695px;}
.wsc3{word-spacing:-6.017693px;}
.ws65{word-spacing:-6.017583px;}
.ws77{word-spacing:-6.017579px;}
.ws70{word-spacing:-6.017570px;}
.ws69{word-spacing:-6.017561px;}
.wsbc{word-spacing:-6.017549px;}
.ws6a{word-spacing:-6.016309px;}
.wsc2{word-spacing:-6.016231px;}
.ws46{word-spacing:-6.016229px;}
.ws5b{word-spacing:-6.014964px;}
.ws5c{word-spacing:-6.014942px;}
.wsbb{word-spacing:-6.012337px;}
.wsba{word-spacing:-6.011715px;}
.ws10{word-spacing:-4.500034px;}
.ws11{word-spacing:-4.500023px;}
.wsb9{word-spacing:-4.500012px;}
.ws7{word-spacing:-4.500011px;}
.wsb{word-spacing:-4.500003px;}
.ws5{word-spacing:-4.500001px;}
.ws25{word-spacing:-4.499998px;}
.ws7e{word-spacing:-4.499989px;}
.wsc7{word-spacing:-4.499979px;}
.ws28{word-spacing:-4.499978px;}
.ws44{word-spacing:-4.499967px;}
.ws5f{word-spacing:-3.029962px;}
.ws6e{word-spacing:-3.005859px;}
.wsb3{word-spacing:-1.517579px;}
.ws5a{word-spacing:-1.517561px;}
.wsbe{word-spacing:-1.516291px;}
.ws80{word-spacing:-1.516152px;}
.wsaa{word-spacing:-1.514941px;}
.wscc{word-spacing:-0.000035px;}
.wsc8{word-spacing:-0.000033px;}
.ws3e{word-spacing:-0.000023px;}
.ws42{word-spacing:-0.000022px;}
.ws8d{word-spacing:-0.000012px;}
.ws1c{word-spacing:-0.000011px;}
.ws73{word-spacing:-0.000002px;}
.ws1{word-spacing:0.000000px;}
.ws9d{word-spacing:0.000002px;}
.ws3a{word-spacing:0.000011px;}
.ws39{word-spacing:0.000022px;}
.wsc6{word-spacing:0.000033px;}
.ws75{word-spacing:0.885936px;}
.ws85{word-spacing:1.494141px;}
.wsa7{word-spacing:2.983757px;}
.wsbd{word-spacing:2.985055px;}
.wsb7{word-spacing:4.499965px;}
.wscf{word-spacing:4.499976px;}
.ws26{word-spacing:4.499977px;}
.ws34{word-spacing:4.499988px;}
.wsd3{word-spacing:4.499998px;}
.ws45{word-spacing:4.499999px;}
.ws1e{word-spacing:4.500000px;}
.ws59{word-spacing:4.500011px;}
.wsc5{word-spacing:4.500020px;}
.ws40{word-spacing:4.500022px;}
.wsa0{word-spacing:5.385936px;}
.wsae{word-spacing:5.970038px;}
.ws68{word-spacing:5.994141px;}
.ws38{word-spacing:8.999966px;}
.ws4a{word-spacing:8.999977px;}
.ws36{word-spacing:8.999988px;}
.ws29{word-spacing:9.000000px;}
.wsd7{word-spacing:9.000002px;}
.ws99{word-spacing:9.000023px;}
.wsb8{word-spacing:9.000033px;}
.ws8e{word-spacing:9.885936px;}
.ws7f{word-spacing:10.494141px;}
.ws35{word-spacing:13.499988px;}
.ws37{word-spacing:13.500000px;}
.ws8b{word-spacing:14.385936px;}
.ws94{word-spacing:17.999977px;}
.ws23{word-spacing:18.000000px;}
.wsd5{word-spacing:18.000002px;}
.wsd1{word-spacing:18.000009px;}
.wsa1{word-spacing:18.885936px;}
.wsa6{word-spacing:19.494141px;}
.ws41{word-spacing:22.499988px;}
.ws12{word-spacing:22.499999px;}
.ws14{word-spacing:22.500001px;}
.ws15{word-spacing:22.500011px;}
.ws76{word-spacing:26.999977px;}
.wsce{word-spacing:26.999998px;}
.ws98{word-spacing:26.999999px;}
.ws79{word-spacing:34.482383px;}
.ws7a{word-spacing:34.482406px;}
.wsd8{word-spacing:35.999977px;}
.wsd6{word-spacing:76.500000px;}
._1e{margin-left:-35.789097px;}
._f{margin-left:-9.281231px;}
._15{margin-left:-7.292806px;}
._17{margin-left:-5.765623px;}
._8{margin-left:-4.675779px;}
._9{margin-left:-2.882741px;}
._0{margin-left:-1.562400px;}
._1{width:1.532640px;}
._a{width:3.610675px;}
._b{width:6.001301px;}
._12{width:7.513020px;}
._10{width:10.466133px;}
._d{width:11.907550px;}
._c{width:14.192707px;}
._e{width:15.915364px;}
._20{width:16.974414px;}
._2{width:17.999634px;}
._16{width:19.407149px;}
._1b{width:20.920600px;}
._3{width:22.500000px;}
._19{width:23.674894px;}
._1a{width:25.453124px;}
._4{width:27.000012px;}
._1d{width:28.077677px;}
._1c{width:29.953124px;}
._6{width:31.500005px;}
._24{width:32.810243px;}
._23{width:33.993780px;}
._5{width:36.000002px;}
._21{width:37.436878px;}
._11{width:40.500000px;}
._13{width:45.000002px;}
._14{width:49.499997px;}
._7{width:54.000002px;}
._1f{width:58.500204px;}
._22{width:63.000000px;}
._18{width:66.023438px;}
._26{width:76.500002px;}
._25{width:117.000002px;}
.fc3{color:rgb(12,11,10);}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:39.600001px;}
.fs7{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fsa{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000003px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y2e9{bottom:80.490228px;}
.yde{bottom:80.493168px;}
.y47{bottom:80.493903px;}
.y148{bottom:80.494623px;}
.y18a{bottom:80.496093px;}
.y1d{bottom:106.740000px;}
.y115{bottom:111.410148px;}
.y271{bottom:113.630858px;}
.y26b{bottom:114.679688px;}
.y302{bottom:115.869142px;}
.ybb{bottom:117.102165px;}
.y189{bottom:119.329102px;}
.y19a{bottom:121.877933px;}
.y80{bottom:124.671383px;}
.ydd{bottom:126.410148px;}
.ybd{bottom:128.658693px;}
.y1af{bottom:128.660148px;}
.y2e8{bottom:129.070312px;}
.y16e{bottom:129.679688px;}
.ye9{bottom:130.727048px;}
.y23c{bottom:131.179688px;}
.y114{bottom:134.350710px;}
.y18f{bottom:134.352165px;}
.y28d{bottom:135.374992px;}
.y9f{bottom:135.377933px;}
.yfd{bottom:136.425293px;}
.y106{bottom:141.076178px;}
.y270{bottom:144.679688px;}
.y26a{bottom:145.722652px;}
.y117{bottom:145.907223px;}
.y301{bottom:146.912108px;}
.y46{bottom:147.468753px;}
.ydc{bottom:150.243636px;}
.y188{bottom:150.377933px;}
.ybc{bottom:151.599240px;}
.y240{bottom:151.602165px;}
.y199{bottom:152.926762px;}
.y319{bottom:157.113278px;}
.y16d{bottom:160.725592px;}
.y1d1{bottom:160.728517px;}
.ye8{bottom:161.774408px;}
.y7f{bottom:161.928217px;}
.y230{bottom:162.228517px;}
.y1c8{bottom:163.154298px;}
.ybf{bottom:163.155768px;}
.y19c{bottom:163.274408px;}
.y2d3{bottom:164.009768px;}
.y65{bottom:164.978033px;}
.y28c{bottom:166.423823px;}
.y9e{bottom:166.425293px;}
.yfc{bottom:167.472652px;}
.y190{bottom:168.846315px;}
.y116{bottom:169.740711px;}
.y45{bottom:170.602298px;}
.y105{bottom:172.123538px;}
.y1c{bottom:174.960000px;}
.y1de{bottom:175.728517px;}
.y1f6{bottom:176.624992px;}
.y266{bottom:176.771483px;}
.y300{bottom:177.960938px;}
.y2e7{bottom:178.113278px;}
.y212{bottom:179.774408px;}
.y19e{bottom:180.404298px;}
.y187{bottom:181.423823px;}
.y198{bottom:183.972652px;}
.y2bc{bottom:185.015617px;}
.ybe{bottom:186.096315px;}
.ydb{bottom:187.123538px;}
.y136{bottom:187.986323px;}
.y318{bottom:188.156242px;}
.y147{bottom:188.170898px;}
.y23b{bottom:189.934567px;}
.y113{bottom:191.774408px;}
.y1d0{bottom:191.777348px;}
.y289{bottom:192.820312px;}
.ye7{bottom:192.821783px;}
.y22f{bottom:193.274408px;}
.y19b{bottom:194.323238px;}
.y9d{bottom:197.472652px;}
.y224{bottom:197.654298px;}
.y64{bottom:198.455573px;}
.yfb{bottom:198.520013px;}
.y7e{bottom:199.185052px;}
.y1c6{bottom:201.067387px;}
.y1b{bottom:202.680000px;}
.y19d{bottom:203.346315px;}
.y2a5{bottom:205.710938px;}
.y1dd{bottom:206.774408px;}
.y23f{bottom:206.777348px;}
.y44{bottom:207.335452px;}
.y1f5{bottom:207.670898px;}
.y265{bottom:207.820312px;}
.y16a{bottom:207.823238px;}
.y2ff{bottom:209.015617px;}
.y1ae{bottom:209.320312px;}
.y211{bottom:210.820312px;}
.y186{bottom:212.472652px;}
.y2d2{bottom:213.058598px;}
.y264{bottom:214.898433px;}
.y1a0{bottom:214.901373px;}
.y259{bottom:215.015617px;}
.y197{bottom:215.021483px;}
.y2bb{bottom:216.058598px;}
.yda{bottom:218.170898px;}
.y135{bottom:219.032227px;}
.y146{bottom:219.216803px;}
.y223{bottom:220.593390px;}
.y23a{bottom:220.980473px;}
.y16c{bottom:222.820312px;}
.y112{bottom:222.821783px;}
.y1cf{bottom:222.823238px;}
.ye6{bottom:223.869142px;}
.y2e6{bottom:224.162108px;}
.y22e{bottom:224.320312px;}
.y161{bottom:224.917973px;}
.y28b{bottom:228.515617px;}
.y9c{bottom:228.520013px;}
.y43{bottom:229.068607px;}
.y1a{bottom:230.220000px;}
.y63{bottom:231.933112px;}
.y1c5{bottom:232.116217px;}
.y22c{bottom:232.148433px;}
.y317{bottom:234.205073px;}
.y7d{bottom:236.441888px;}
.y2a4{bottom:236.759768px;}
.y1dc{bottom:237.820312px;}
.y19f{bottom:237.840450px;}
.y1f4{bottom:238.716803px;}
.yba{bottom:238.869142px;}
.y1ad{bottom:240.369142px;}
.y210{bottom:241.869142px;}
.y185{bottom:243.518558px;}
.yfa{bottom:244.567387px;}
.y258{bottom:246.064447px;}
.y196{bottom:246.067387px;}
.y2ba{bottom:247.107428px;}
.yd9{bottom:249.218257px;}
.y22b{bottom:249.398433px;}
.y134{bottom:250.081057px;}
.y145{bottom:250.265617px;}
.y42{bottom:250.801762px;}
.y239{bottom:252.029302px;}
.y111{bottom:253.869142px;}
.y288{bottom:254.917973px;}
.y2fe{bottom:255.058598px;}
.y2e5{bottom:255.210938px;}
.y22d{bottom:255.369142px;}
.y160{bottom:255.963863px;}
.y19{bottom:256.530000px;}
.y28a{bottom:259.564447px;}
.y9b{bottom:259.567387px;}
.y2d1{bottom:262.107428px;}
.y1c4{bottom:263.162108px;}
.y316{bottom:265.253903px;}
.y62{bottom:265.410638px;}
.y22a{bottom:266.648433px;}
.y1db{bottom:268.869142px;}
.y1f3{bottom:269.765617px;}
.yb9{bottom:269.916503px;}
.y169{bottom:269.917973px;}
.y1ac{bottom:271.415033px;}
.y41{bottom:272.534917px;}
.y7c{bottom:273.698738px;}
.y184{bottom:274.567387px;}
.yf9{bottom:275.614748px;}
.y257{bottom:277.113278px;}
.y195{bottom:277.116217px;}
.y18{bottom:277.230000px;}
.yd8{bottom:280.265617px;}
.y133{bottom:281.126947px;}
.y144{bottom:281.311523px;}
.y238{bottom:283.078117px;}
.y229{bottom:283.895508px;}
.y16b{bottom:284.915033px;}
.y110{bottom:284.916503px;}
.y1ce{bottom:284.917973px;}
.y2a3{bottom:285.808598px;}
.y287{bottom:285.960938px;}
.y2fd{bottom:286.101563px;}
.y2e4{bottom:286.259768px;}
.y20f{bottom:286.417973px;}
.y15f{bottom:287.012693px;}
.y9a{bottom:290.614748px;}
.y2d0{bottom:293.156242px;}
.y1c3{bottom:294.210938px;}
.y40{bottom:294.268073px;}
.y2b9{bottom:296.156242px;}
.y61{bottom:298.888177px;}
.y1da{bottom:299.917973px;}
.y17{bottom:300.450000px;}
.y1f2{bottom:300.814447px;}
.y269{bottom:300.960938px;}
.yb8{bottom:300.963863px;}
.y228{bottom:301.142583px;}
.y1ab{bottom:302.463863px;}
.y183{bottom:305.613278px;}
.y315{bottom:306.656242px;}
.yf8{bottom:306.662108px;}
.y194{bottom:308.162108px;}
.y7b{bottom:310.955573px;}
.yd7{bottom:311.312992px;}
.y132{bottom:312.175777px;}
.y143{bottom:312.360353px;}
.y10f{bottom:315.963863px;}
.y1cd{bottom:315.966803px;}
.y3f{bottom:316.001227px;}
.y2a2{bottom:316.851563px;}
.y286{bottom:317.009768px;}
.y2fc{bottom:317.156242px;}
.y20e{bottom:317.463863px;}
.y15e{bottom:318.058598px;}
.y227{bottom:318.392583px;}
.y1c2{bottom:325.256842px;}
.y237{bottom:326.437498px;}
.y2b8{bottom:327.199223px;}
.y23e{bottom:330.960938px;}
.y1d9{bottom:330.963863px;}
.y1f1{bottom:331.860353px;}
.y26f{bottom:332.009768px;}
.yb7{bottom:332.011238px;}
.y177{bottom:332.012693px;}
.y2e3{bottom:332.302733px;}
.y60{bottom:332.365717px;}
.y1aa{bottom:333.509768px;}
.y16{bottom:335.010000px;}
.y226{bottom:335.642583px;}
.y99{bottom:336.662108px;}
.y3e{bottom:337.734367px;}
.y256{bottom:339.210938px;}
.y2cf{bottom:342.199223px;}
.yd6{bottom:342.360353px;}
.y131{bottom:343.221683px;}
.y142{bottom:343.406242px;}
.y168{bottom:347.009768px;}
.y10e{bottom:347.011238px;}
.y1cc{bottom:347.012693px;}
.y260{bottom:347.015617px;}
.y2a1{bottom:347.900393px;}
.y285{bottom:348.058598px;}
.y7a{bottom:348.212408px;}
.y20d{bottom:348.509768px;}
.y15d{bottom:349.107428px;}
.y314{bottom:352.699223px;}
.yf7{bottom:352.709468px;}
.y193{bottom:352.710938px;}
.y236{bottom:354.896488px;}
.y1c1{bottom:356.305657px;}
.y225{bottom:358.581660px;}
.y3d{bottom:359.467523px;}
.y1d8{bottom:362.009768px;}
.y1f0{bottom:362.906242px;}
.yb6{bottom:363.058598px;}
.y2fb{bottom:363.199223px;}
.y2e2{bottom:363.351563px;}
.y1a9{bottom:364.558598px;}
.y5f{bottom:365.843257px;}
.y182{bottom:367.708012px;}
.y98{bottom:367.709468px;}
.y15{bottom:369.390000px;}
.y255{bottom:370.253903px;}
.y2ce{bottom:373.248053px;}
.yd5{bottom:373.407713px;}
.y130{bottom:374.270512px;}
.y141{bottom:374.455073px;}
.y2b7{bottom:376.248053px;}
.y10d{bottom:378.058598px;}
.y284{bottom:379.107428px;}
.y20c{bottom:379.558598px;}
.y15c{bottom:380.153318px;}
.y3c{bottom:381.200677px;}
.y235{bottom:383.355463px;}
.y313{bottom:383.753903px;}
.yf6{bottom:383.756842px;}
.y79{bottom:385.469243px;}
.y1c0{bottom:387.351563px;}
.y1d7{bottom:393.058598px;}
.y1ef{bottom:393.955073px;}
.y26e{bottom:394.101563px;}
.yb5{bottom:394.105957px;}
.y176{bottom:394.107428px;}
.y2fa{bottom:394.242188px;}
.y2e1{bottom:394.400393px;}
.y1a8{bottom:395.604488px;}
.y2a0{bottom:396.949223px;}
.y222{bottom:397.107428px;}
.y97{bottom:398.756842px;}
.y5e{bottom:399.320797px;}
.y254{bottom:401.302733px;}
.y3b{bottom:402.933832px;}
.y14{bottom:403.950000px;}
.y2cd{bottom:404.296867px;}
.yd4{bottom:404.455073px;}
.y12f{bottom:405.316402px;}
.y140{bottom:405.500978px;}
.y2b6{bottom:407.296867px;}
.y167{bottom:409.104488px;}
.y10c{bottom:409.105957px;}
.y1cb{bottom:409.107428px;}
.y283{bottom:410.156242px;}
.y20b{bottom:410.607428px;}
.y15b{bottom:411.202148px;}
.y234{bottom:411.817378px;}
.y312{bottom:414.796867px;}
.yf5{bottom:414.804202px;}
.y1bf{bottom:418.400393px;}
.y78{bottom:422.726077px;}
.y1d6{bottom:424.107428px;}
.y1ee{bottom:425.003903px;}
.y26d{bottom:425.150393px;}
.ye5{bottom:425.153318px;}
.y2e0{bottom:425.449223px;}
.y1a7{bottom:426.653318px;}
.y29f{bottom:427.992188px;}
.y221{bottom:428.153318px;}
.y181{bottom:429.802733px;}
.y96{bottom:429.804202px;}
.y253{bottom:432.351563px;}
.y5d{bottom:432.798338px;}
.y2cc{bottom:435.339847px;}
.yd3{bottom:435.502448px;}
.y12e{bottom:436.365233px;}
.y13f{bottom:436.549807px;}
.y13{bottom:438.330000px;}
.y3a{bottom:439.666988px;}
.yb4{bottom:440.153318px;}
.y1ca{bottom:440.156242px;}
.y233{bottom:440.276368px;}
.y2f9{bottom:440.291017px;}
.y282{bottom:441.199223px;}
.y20a{bottom:441.653318px;}
.y15a{bottom:442.248053px;}
.yf4{bottom:445.851563px;}
.y1be{bottom:449.446283px;}
.y1d5{bottom:455.153318px;}
.y23d{bottom:455.156242px;}
.y1ed{bottom:456.049807px;}
.y26c{bottom:456.199223px;}
.ye4{bottom:456.200677px;}
.y175{bottom:456.202148px;}
.y2b5{bottom:456.345698px;}
.y2df{bottom:456.492188px;}
.y1a6{bottom:457.699223px;}
.y29e{bottom:459.041017px;}
.y220{bottom:459.199223px;}
.y77{bottom:459.982913px;}
.y311{bottom:460.839847px;}
.y95{bottom:460.851563px;}
.y252{bottom:463.394528px;}
.y5c{bottom:466.275878px;}
.y104{bottom:466.549807px;}
.y12d{bottom:467.411137px;}
.y13e{bottom:467.595698px;}
.y232{bottom:468.735358px;}
.y166{bottom:471.199223px;}
.yb3{bottom:471.200677px;}
.y1c9{bottom:471.202148px;}
.y2f8{bottom:471.339847px;}
.y281{bottom:472.248053px;}
.y209{bottom:472.699223px;}
.y12{bottom:472.935000px;}
.y39{bottom:476.400142px;}
.yf3{bottom:476.898923px;}
.y1bd{bottom:480.495113px;}
.yd2{bottom:481.549808px;}
.y2cb{bottom:484.388678px;}
.y1d4{bottom:486.199222px;}
.y1ec{bottom:487.095698px;}
.ye3{bottom:487.248052px;}
.y2b4{bottom:487.394527px;}
.y159{bottom:488.293942px;}
.y1a5{bottom:488.748052px;}
.y21f{bottom:490.248052px;}
.y192{bottom:491.897467px;}
.y94{bottom:491.898922px;}
.y5b{bottom:495.253418px;}
.y76{bottom:497.239748px;}
.y103{bottom:497.597168px;}
.y38{bottom:498.133298px;}
.y12c{bottom:498.459968px;}
.y13d{bottom:498.644527px;}
.yb2{bottom:502.248052px;}
.y2de{bottom:502.541018px;}
.y280{bottom:503.296867px;}
.y208{bottom:503.748052px;}
.y310{bottom:506.894527px;}
.yf2{bottom:507.946283px;}
.y29d{bottom:508.089848px;}
.y231{bottom:509.197258px;}
.y251{bottom:509.449222px;}
.y11{bottom:509.475000px;}
.y1bc{bottom:511.541018px;}
.yd1{bottom:512.597168px;}
.y2ca{bottom:515.437492px;}
.y180{bottom:517.248052px;}
.y2f7{bottom:517.388678px;}
.y1eb{bottom:518.144527px;}
.ye2{bottom:518.295412px;}
.y2b3{bottom:518.437492px;}
.y158{bottom:519.342773px;}
.y1a4{bottom:519.793942px;}
.y21e{bottom:521.296867px;}
.y93{bottom:522.946283px;}
.y102{bottom:528.644527px;}
.y5a{bottom:528.730957px;}
.y12b{bottom:529.505858px;}
.y13c{bottom:529.690432px;}
.y165{bottom:533.293942px;}
.yb1{bottom:533.295412px;}
.y1d3{bottom:533.296867px;}
.y2dd{bottom:533.589848px;}
.y27f{bottom:534.339848px;}
.y75{bottom:534.496582px;}
.y207{bottom:534.796867px;}
.y37{bottom:534.866452px;}
.y30f{bottom:537.937492px;}
.yf1{bottom:538.993658px;}
.y29c{bottom:539.138678px;}
.y250{bottom:540.492188px;}
.y1bb{bottom:542.589848px;}
.yd0{bottom:543.644527px;}
.y2c9{bottom:546.486322px;}
.y17f{bottom:548.296867px;}
.y2f6{bottom:548.437492px;}
.y1ea{bottom:549.193357px;}
.ye1{bottom:549.342773px;}
.y157{bottom:550.388678px;}
.y1a3{bottom:550.842773px;}
.y21d{bottom:552.342773px;}
.y191{bottom:553.992188px;}
.y92{bottom:553.993658px;}
.y10{bottom:554.295000px;}
.y36{bottom:556.599608px;}
.y59{bottom:557.708498px;}
.y101{bottom:559.691888px;}
.y12a{bottom:560.554688px;}
.y13b{bottom:560.739262px;}
.yb0{bottom:564.342773px;}
.y1d2{bottom:564.345698px;}
.y2dc{bottom:564.632812px;}
.y206{bottom:565.842773px;}
.y2b2{bottom:567.486322px;}
.y30e{bottom:568.980473px;}
.yf0{bottom:570.041018px;}
.y29b{bottom:570.187492px;}
.y74{bottom:571.753418px;}
.y1ba{bottom:573.635738px;}
.ycf{bottom:574.691888px;}
.y35{bottom:578.332763px;}
.y263{bottom:579.339848px;}
.y17e{bottom:579.342773px;}
.y1e9{bottom:580.239262px;}
.y27e{bottom:580.388678px;}
.ye0{bottom:580.390133px;}
.y156{bottom:581.437492px;}
.y1a2{bottom:581.888678px;}
.y21c{bottom:583.388678px;}
.y91{bottom:585.041018px;}
.y24f{bottom:586.541018px;}
.y58{bottom:591.186037px;}
.y129{bottom:591.600592px;}
.y2f5{bottom:594.486322px;}
.y164{bottom:595.388678px;}
.yaf{bottom:595.390133px;}
.y25f{bottom:595.394527px;}
.y2c8{bottom:595.535152px;}
.y205{bottom:596.888678px;}
.y323{bottom:598.529303px;}
.y2b1{bottom:598.535152px;}
.yf{bottom:599.115000px;}
.y34{bottom:600.065918px;}
.yef{bottom:601.088377px;}
.y1b9{bottom:604.684567px;}
.y13a{bottom:605.598628px;}
.yce{bottom:605.739262px;}
.y73{bottom:609.010252px;}
.y17d{bottom:610.388678px;}
.y2db{bottom:610.687492px;}
.y1e8{bottom:611.285152px;}
.ydf{bottom:611.437492px;}
.y155{bottom:612.483398px;}
.y1a1{bottom:612.937492px;}
.y21b{bottom:614.437492px;}
.y30d{bottom:615.035152px;}
.y90{bottom:616.088377px;}
.y24e{bottom:617.589848px;}
.y29a{bottom:619.230473px;}
.y57{bottom:620.163577px;}
.y33{bottom:621.799072px;}
.y128{bottom:622.649408px;}
.y2f4{bottom:625.529303px;}
.yae{bottom:626.437492px;}
.y2c7{bottom:626.578118px;}
.y204{bottom:627.937492px;}
.y2b0{bottom:629.578118px;}
.y139{bottom:634.060543px;}
.y1b8{bottom:635.730473px;}
.ycd{bottom:636.786623px;}
.y17c{bottom:641.437492px;}
.y2da{bottom:641.730473px;}
.y1e7{bottom:642.333982px;}
.y27d{bottom:642.480473px;}
.y32{bottom:643.532228px;}
.ye{bottom:643.935000px;}
.y322{bottom:644.583982px;}
.y21a{bottom:645.486322px;}
.y30c{bottom:646.078118px;}
.y72{bottom:646.267088px;}
.y8f{bottom:647.135738px;}
.y24d{bottom:648.632812px;}
.y299{bottom:650.279303px;}
.y56{bottom:653.641118px;}
.y127{bottom:653.695312px;}
.y2f3{bottom:656.578118px;}
.y174{bottom:657.483398px;}
.yad{bottom:657.484868px;}
.y25e{bottom:657.486322px;}
.y203{bottom:658.986322px;}
.y138{bottom:662.521003px;}
.y31{bottom:665.265382px;}
.ycc{bottom:667.833982px;}
.y163{bottom:672.484868px;}
.y17b{bottom:672.486322px;}
.y2d9{bottom:672.779303px;}
.y1e6{bottom:673.382812px;}
.y27c{bottom:673.529303px;}
.y154{bottom:674.578118px;}
.y2c6{bottom:675.626948px;}
.y219{bottom:676.532228px;}
.y30b{bottom:677.132812px;}
.y8e{bottom:678.183112px;}
.y2af{bottom:678.626948px;}
.y24c{bottom:679.681642px;}
.y1b7{bottom:680.589838px;}
.y71{bottom:683.523922px;}
.y126{bottom:684.744142px;}
.y30{bottom:686.998537px;}
.y55{bottom:687.118658px;}
.yac{bottom:688.532228px;}
.y25d{bottom:688.535152px;}
.yd{bottom:688.935000px;}
.y202{bottom:690.032228px;}
.ycb{bottom:698.881342px;}
.y298{bottom:699.328118px;}
.y2f2{bottom:702.626948px;}
.y162{bottom:703.532228px;}
.y262{bottom:703.535152px;}
.y1e5{bottom:704.428717px;}
.y27b{bottom:704.578118px;}
.y137{bottom:705.979978px;}
.y2c5{bottom:706.675777px;}
.y218{bottom:707.578118px;}
.y2f{bottom:708.731692px;}
.y1b6{bottom:709.048828px;}
.yee{bottom:709.230473px;}
.y2ae{bottom:709.675777px;}
.y24b{bottom:710.730473px;}
.y125{bottom:715.790033px;}
.y2d8{bottom:718.828118px;}
.y173{bottom:719.578118px;}
.yab{bottom:719.579588px;}
.y54{bottom:720.596198px;}
.y153{bottom:720.626948px;}
.y70{bottom:720.780758px;}
.y201{bottom:721.078118px;}
.y321{bottom:721.675777px;}
.y30a{bottom:723.175777px;}
.y8d{bottom:724.230473px;}
.y297{bottom:730.371098px;}
.y2e{bottom:730.464848px;}
.y2f1{bottom:733.669928px;}
.y17a{bottom:734.578118px;}
.y10b{bottom:734.579588px;}
.y1e4{bottom:735.474608px;}
.y27a{bottom:735.626948px;}
.y1b5{bottom:737.510743px;}
.y217{bottom:738.626948px;}
.yed{bottom:740.277833px;}
.y24a{bottom:741.779303px;}
.yca{bottom:744.928717px;}
.y124{bottom:746.838863px;}
.y2d7{bottom:749.871098px;}
.yaa{bottom:750.626948px;}
.y152{bottom:751.674322px;}
.y200{bottom:752.126948px;}
.y2d{bottom:752.198003px;}
.y320{bottom:752.724608px;}
.y53{bottom:754.073738px;}
.y309{bottom:754.218742px;}
.y8c{bottom:755.277833px;}
.y2c4{bottom:755.718742px;}
.y6f{bottom:758.037593px;}
.y2ad{bottom:758.724608px;}
.y2f0{bottom:764.718742px;}
.y10a{bottom:765.626948px;}
.y1e3{bottom:766.523438px;}
.y279{bottom:766.675777px;}
.y216{bottom:769.675777px;}
.yec{bottom:771.325192px;}
.y249{bottom:772.828118px;}
.yc{bottom:774.105000px;}
.yc9{bottom:775.976077px;}
.y123{bottom:777.884768px;}
.y296{bottom:779.419928px;}
.y2d6{bottom:780.919928px;}
.y1b4{bottom:780.972658px;}
.y172{bottom:781.672852px;}
.ya9{bottom:781.674322px;}
.y25c{bottom:781.675777px;}
.y151{bottom:782.721683px;}
.y1ff{bottom:783.175777px;}
.y308{bottom:785.273438px;}
.y8b{bottom:786.325192px;}
.y2c3{bottom:786.767573px;}
.y52{bottom:787.551263px;}
.y2c{bottom:788.931157px;}
.y2ac{bottom:789.773438px;}
.yb{bottom:794.805000px;}
.y6e{bottom:795.294427px;}
.y109{bottom:796.674322px;}
.y179{bottom:796.675777px;}
.y278{bottom:797.718742px;}
.y31f{bottom:798.773438px;}
.y215{bottom:800.721683px;}
.yeb{bottom:802.372552px;}
.y248{bottom:803.871098px;}
.yc8{bottom:807.023438px;}
.y122{bottom:808.933598px;}
.y1b3{bottom:809.431633px;}
.y1e2{bottom:809.882818px;}
.y295{bottom:810.468742px;}
.y2ef{bottom:810.767573px;}
.ya8{bottom:812.721683px;}
.y25b{bottom:812.724608px;}
.y150{bottom:813.769043px;}
.y1fe{bottom:814.221683px;}
.ya{bottom:815.505000px;}
.y8a{bottom:817.372552px;}
.y51{bottom:821.028802px;}
.y2d5{bottom:825.468742px;}
.y2b{bottom:825.664312px;}
.y261{bottom:827.718742px;}
.y108{bottom:827.721683px;}
.y277{bottom:828.767573px;}
.y31e{bottom:829.816402px;}
.y307{bottom:831.316402px;}
.y214{bottom:831.767573px;}
.y6d{bottom:832.551263px;}
.yea{bottom:833.419928px;}
.y247{bottom:834.919928px;}
.y2c2{bottom:835.816402px;}
.y9{bottom:837.465000px;}
.yc7{bottom:838.070798px;}
.y1e1{bottom:838.341793px;}
.y2ab{bottom:838.816402px;}
.y121{bottom:839.979488px;}
.y294{bottom:841.517573px;}
.y2ee{bottom:841.816402px;}
.y171{bottom:843.767573px;}
.ya7{bottom:843.769043px;}
.y268{bottom:843.773438px;}
.y1fd{bottom:845.267573px;}
.y2a{bottom:847.397467px;}
.y89{bottom:848.419928px;}
.y1b2{bottom:852.890623px;}
.y50{bottom:854.506342px;}
.y178{bottom:858.767573px;}
.y107{bottom:858.769043px;}
.y14f{bottom:859.816402px;}
.y213{bottom:862.816402px;}
.y8{bottom:865.005000px;}
.y246{bottom:865.968742px;}
.y1e0{bottom:866.806633px;}
.y2c1{bottom:866.865232px;}
.yc6{bottom:869.118158px;}
.y6c{bottom:869.808112px;}
.y2aa{bottom:869.859368px;}
.y120{bottom:871.028317px;}
.y293{bottom:872.566402px;}
.ya6{bottom:874.816402px;}
.y31d{bottom:875.859367px;}
.y1fc{bottom:876.316402px;}
.y306{bottom:877.359367px;}
.y88{bottom:879.467287px;}
.y29{bottom:884.130622px;}
.y4f{bottom:887.983882px;}
.y100{bottom:889.816402px;}
.y276{bottom:890.859367px;}
.y14e{bottom:890.865232px;}
.y7{bottom:892.725000px;}
.y1b1{bottom:896.352538px;}
.y245{bottom:897.011723px;}
.y2c0{bottom:897.914062px;}
.yc5{bottom:900.165532px;}
.y170{bottom:905.862308px;}
.y28{bottom:905.863762px;}
.y267{bottom:905.865232px;}
.y31c{bottom:906.914062px;}
.y6b{bottom:907.064948px;}
.y1df{bottom:907.265623px;}
.y1fb{bottom:907.365232px;}
.y305{bottom:908.414062px;}
.y87{bottom:910.514647px;}
.y11f{bottom:915.889153px;}
.y2d4{bottom:915.914062px;}
.y2a9{bottom:918.914062px;}
.y6{bottom:920.265000px;}
.yff{bottom:920.863762px;}
.y18e{bottom:920.865232px;}
.y4e{bottom:921.461423px;}
.y292{bottom:921.609367px;}
.y275{bottom:921.908197px;}
.y14d{bottom:921.911137px;}
.y27{bottom:927.596918px;}
.y244{bottom:928.060552px;}
.yc4{bottom:931.212892px;}
.y2ed{bottom:936.908197px;}
.ya5{bottom:936.911137px;}
.y1fa{bottom:938.411137px;}
.y304{bottom:939.457027px;}
.y1b0{bottom:939.811528px;}
.y86{bottom:941.562007px;}
.y6a{bottom:944.321783px;}
.y11e{bottom:944.349613px;}
.y2bf{bottom:946.957027px;}
.y26{bottom:949.330073px;}
.y2a8{bottom:949.957027px;}
.y5{bottom:950.370000px;}
.yfe{bottom:951.911137px;}
.y25a{bottom:951.914062px;}
.y291{bottom:952.658197px;}
.y274{bottom:952.957027px;}
.y14c{bottom:952.959967px;}
.y4d{bottom:954.938963px;}
.y243{bottom:959.109367px;}
.yc3{bottom:962.260252px;}
.y16f{bottom:967.957027px;}
.y1f9{bottom:969.457027px;}
.y25{bottom:971.063227px;}
.y85{bottom:972.609367px;}
.y11d{bottom:972.808588px;}
.y2be{bottom:978.005858px;}
.y69{bottom:981.578617px;}
.y18d{bottom:982.957027px;}
.ya4{bottom:982.958498px;}
.y14b{bottom:984.005858px;}
.y31b{bottom:984.011723px;}
.y303{bottom:985.499992px;}
.y4c{bottom:988.416502px;}
.y242{bottom:990.158197px;}
.y4{bottom:991.770000px;}
.y24{bottom:992.796382px;}
.yc2{bottom:993.307613px;}
.y2a7{bottom:996.005859px;}
.y2ec{bottom:999.000000px;}
.y1c7{bottom:999.005859px;}
.y1f8{bottom:1000.505859px;}
.y11c{bottom:1001.269044px;}
.y290{bottom:1001.707030px;}
.y84{bottom:1003.656738px;}
.ya3{bottom:1014.005859px;}
.y23{bottom:1014.529540px;}
.y68{bottom:1018.835450px;}
.y4b{bottom:1021.894043px;}
.yc1{bottom:1024.354980px;}
.y2a6{bottom:1027.054688px;}
.y14a{bottom:1030.051758px;}
.y273{bottom:1030.054688px;}
.y1f7{bottom:1031.554688px;}
.y3{bottom:1033.170000px;}
.y83{bottom:1034.704101px;}
.y22{bottom:1036.262696px;}
.y11b{bottom:1044.729492px;}
.y2eb{bottom:1045.048829px;}
.ya2{bottom:1045.053222px;}
.y18c{bottom:1045.054688px;}
.y28f{bottom:1050.750000px;}
.y4a{bottom:1055.371582px;}
.yc0{bottom:1055.402343px;}
.y67{bottom:1056.092285px;}
.y21{bottom:1057.995849px;}
.y2bd{bottom:1058.097655px;}
.y31a{bottom:1061.097655px;}
.y149{bottom:1061.100586px;}
.y272{bottom:1061.103516px;}
.y82{bottom:1065.751465px;}
.y2{bottom:1070.790000px;}
.y11a{bottom:1073.188477px;}
.y241{bottom:1076.097655px;}
.ya1{bottom:1076.100586px;}
.y20{bottom:1079.729004px;}
.y1{bottom:1087.530000px;}
.y49{bottom:1088.849121px;}
.y28e{bottom:1092.152343px;}
.y66{bottom:1093.349121px;}
.y81{bottom:1096.798828px;}
.y1f{bottom:1101.462158px;}
.y119{bottom:1101.648925px;}
.y18b{bottom:1107.146484px;}
.ya0{bottom:1107.147950px;}
.y2ea{bottom:1107.152343px;}
.y48{bottom:1136.794923px;}
.y1e{bottom:1138.195312px;}
.y118{bottom:1139.595703px;}
.hf{height:32.273438px;}
.h11{height:35.500782px;}
.h13{height:52.792967px;}
.hb{height:53.291014px;}
.h10{height:53.789061px;}
.h12{height:59.167970px;}
.h15{height:63.351563px;}
.h8{height:63.949219px;}
.h9{height:64.546875px;}
.he{height:65.332620px;}
.h14{height:65.691213px;}
.hd{height:66.049807px;}
.hc{height:69.278323px;}
.h2{height:72.562500px;}
.h7{height:93.983203px;}
.h4{height:96.508125px;}
.ha{height:107.625000px;}
.h6{height:118.008984px;}
.h3{height:145.125000px;}
.h5{height:157.460625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:894.000000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x2{left:127.655987px;}
.xd{left:135.000000px;}
.xf{left:139.500000px;}
.x6{left:141.875987px;}
.x11{left:160.875000px;}
.xe{left:162.000000px;}
.x5{left:167.969987px;}
.x8{left:178.769987px;}
.x7{left:203.069987px;}
.x9{left:204.869987px;}
.xa{left:282.854987px;}
.x4{left:360.794987px;}
.x3{left:446.474987px;}
.x1{left:470.804987px;}
.x10{left:773.294265px;}
.xc{left:780.791333px;}
@media print{
.v1{vertical-align:-143.360000pt;}
.v5{vertical-align:-24.285938pt;}
.v4{vertical-align:-22.262108pt;}
.v3{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.285938pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:13.328125pt;}
.lsf{letter-spacing:16.000000pt;}
.lse{letter-spacing:16.000008pt;}
.ls5{letter-spacing:17.328125pt;}
.ls6{letter-spacing:18.650000pt;}
.ls8{letter-spacing:21.328125pt;}
.lsa{letter-spacing:23.987479pt;}
.lsc{letter-spacing:23.987499pt;}
.ls7{letter-spacing:24.000000pt;}
.lsb{letter-spacing:25.328125pt;}
.ls1{letter-spacing:26.880000pt;}
.ls9{letter-spacing:27.987499pt;}
.ls3{letter-spacing:27.987519pt;}
.lsd{letter-spacing:32.000000pt;}
.ls10{letter-spacing:36.000000pt;}
.ws74{word-spacing:-64.000000pt;}
.ws18{word-spacing:-34.666668pt;}
.ws19{word-spacing:-32.000000pt;}
.ws58{word-spacing:-29.333334pt;}
.ws2b{word-spacing:-26.666666pt;}
.ws0{word-spacing:-21.600000pt;}
.ws1a{word-spacing:-20.509280pt;}
.ws1b{word-spacing:-19.790512pt;}
.ws1d{word-spacing:-19.759260pt;}
.ws27{word-spacing:-19.200001pt;}
.ws43{word-spacing:-16.000030pt;}
.wsc9{word-spacing:-16.000021pt;}
.ws4{word-spacing:-16.000020pt;}
.ws1f{word-spacing:-16.000012pt;}
.ws9{word-spacing:-16.000010pt;}
.ws16{word-spacing:-16.000002pt;}
.ws9a{word-spacing:-16.000001pt;}
.wsa{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.999998pt;}
.wsd2{word-spacing:-15.999992pt;}
.ws22{word-spacing:-15.999990pt;}
.ws67{word-spacing:-15.999980pt;}
.wsd0{word-spacing:-15.999979pt;}
.ws33{word-spacing:-15.999970pt;}
.ws92{word-spacing:-14.707243pt;}
.ws91{word-spacing:-14.698054pt;}
.ws53{word-spacing:-14.697972pt;}
.ws54{word-spacing:-14.697920pt;}
.ws51{word-spacing:-14.697918pt;}
.ws93{word-spacing:-14.697917pt;}
.ws90{word-spacing:-14.697908pt;}
.ws61{word-spacing:-14.697906pt;}
.wsaf{word-spacing:-14.695617pt;}
.ws32{word-spacing:-13.352474pt;}
.wsa2{word-spacing:-13.351301pt;}
.wsa5{word-spacing:-13.349055pt;}
.ws4d{word-spacing:-13.349023pt;}
.ws95{word-spacing:-13.349020pt;}
.wsa9{word-spacing:-13.348992pt;}
.wsa4{word-spacing:-13.348984pt;}
.ws7c{word-spacing:-13.348982pt;}
.ws4e{word-spacing:-13.348978pt;}
.ws31{word-spacing:-13.348972pt;}
.wsa8{word-spacing:-13.348962pt;}
.ws5d{word-spacing:-13.348960pt;}
.ws3c{word-spacing:-13.348958pt;}
.ws2a{word-spacing:-13.348956pt;}
.wsb6{word-spacing:-13.348955pt;}
.ws2d{word-spacing:-13.348950pt;}
.ws6f{word-spacing:-13.348943pt;}
.ws6c{word-spacing:-13.348942pt;}
.ws2e{word-spacing:-13.348937pt;}
.ws87{word-spacing:-13.348932pt;}
.ws64{word-spacing:-13.348783pt;}
.ws81{word-spacing:-13.347831pt;}
.ws97{word-spacing:-13.347791pt;}
.ws9f{word-spacing:-13.347771pt;}
.ws2f{word-spacing:-13.347758pt;}
.ws96{word-spacing:-13.347757pt;}
.ws50{word-spacing:-13.347751pt;}
.wsc4{word-spacing:-13.347711pt;}
.ws6b{word-spacing:-13.346617pt;}
.ws7b{word-spacing:-13.345487pt;}
.ws8c{word-spacing:-13.344974pt;}
.ws86{word-spacing:-13.344313pt;}
.wscb{word-spacing:-13.344300pt;}
.ws3b{word-spacing:-13.344299pt;}
.wsc1{word-spacing:-13.344291pt;}
.wsb5{word-spacing:-13.343869pt;}
.ws5e{word-spacing:-13.343780pt;}
.ws72{word-spacing:-13.343753pt;}
.ws2c{word-spacing:-13.343751pt;}
.ws49{word-spacing:-13.343749pt;}
.ws88{word-spacing:-13.343747pt;}
.ws8a{word-spacing:-13.343739pt;}
.wsd4{word-spacing:-13.312500pt;}
.wscd{word-spacing:-12.000032pt;}
.ws24{word-spacing:-12.000030pt;}
.ws6d{word-spacing:-12.000021pt;}
.ws17{word-spacing:-12.000020pt;}
.ws8{word-spacing:-12.000010pt;}
.ws3f{word-spacing:-12.000003pt;}
.wsb2{word-spacing:-12.000002pt;}
.ws3{word-spacing:-12.000000pt;}
.ws63{word-spacing:-12.000000pt;}
.ws84{word-spacing:-11.999998pt;}
.wse{word-spacing:-11.999990pt;}
.ws2{word-spacing:-11.999980pt;}
.ws7d{word-spacing:-11.999970pt;}
.ws57{word-spacing:-10.698094pt;}
.wsad{word-spacing:-10.697982pt;}
.ws52{word-spacing:-10.697966pt;}
.ws9b{word-spacing:-10.695581pt;}
.ws30{word-spacing:-9.352435pt;}
.wsab{word-spacing:-9.349144pt;}
.ws83{word-spacing:-9.349033pt;}
.ws8f{word-spacing:-9.349020pt;}
.wsc0{word-spacing:-9.348994pt;}
.ws78{word-spacing:-9.348972pt;}
.wsbf{word-spacing:-9.348960pt;}
.ws89{word-spacing:-9.348958pt;}
.ws82{word-spacing:-9.348954pt;}
.ws48{word-spacing:-9.348950pt;}
.ws4c{word-spacing:-9.348943pt;}
.ws47{word-spacing:-9.348903pt;}
.wsca{word-spacing:-9.348897pt;}
.ws4f{word-spacing:-9.347758pt;}
.wsa3{word-spacing:-9.347755pt;}
.wsb0{word-spacing:-9.347751pt;}
.ws71{word-spacing:-9.344330pt;}
.ws66{word-spacing:-9.343940pt;}
.wsf{word-spacing:-8.000031pt;}
.ws13{word-spacing:-8.000020pt;}
.wsb1{word-spacing:-8.000011pt;}
.wsd{word-spacing:-8.000010pt;}
.ws21{word-spacing:-8.000002pt;}
.ws6{word-spacing:-8.000000pt;}
.ws62{word-spacing:-7.999999pt;}
.ws9e{word-spacing:-7.999998pt;}
.wsc{word-spacing:-7.999990pt;}
.ws3d{word-spacing:-7.999980pt;}
.ws4b{word-spacing:-7.999970pt;}
.ws9c{word-spacing:-6.698046pt;}
.ws56{word-spacing:-6.697997pt;}
.wsac{word-spacing:-6.697974pt;}
.ws55{word-spacing:-6.697972pt;}
.ws60{word-spacing:-6.697908pt;}
.wsb4{word-spacing:-5.349062pt;}
.wsc3{word-spacing:-5.349060pt;}
.ws65{word-spacing:-5.348962pt;}
.ws77{word-spacing:-5.348959pt;}
.ws70{word-spacing:-5.348951pt;}
.ws69{word-spacing:-5.348943pt;}
.wsbc{word-spacing:-5.348932pt;}
.ws6a{word-spacing:-5.347831pt;}
.wsc2{word-spacing:-5.347761pt;}
.ws46{word-spacing:-5.347759pt;}
.ws5b{word-spacing:-5.346635pt;}
.ws5c{word-spacing:-5.346615pt;}
.wsbb{word-spacing:-5.344300pt;}
.wsba{word-spacing:-5.343747pt;}
.ws10{word-spacing:-4.000030pt;}
.ws11{word-spacing:-4.000020pt;}
.wsb9{word-spacing:-4.000011pt;}
.ws7{word-spacing:-4.000010pt;}
.wsb{word-spacing:-4.000002pt;}
.ws5{word-spacing:-4.000000pt;}
.ws25{word-spacing:-3.999998pt;}
.ws7e{word-spacing:-3.999990pt;}
.wsc7{word-spacing:-3.999981pt;}
.ws28{word-spacing:-3.999980pt;}
.ws44{word-spacing:-3.999970pt;}
.ws5f{word-spacing:-2.693300pt;}
.ws6e{word-spacing:-2.671875pt;}
.wsb3{word-spacing:-1.348959pt;}
.ws5a{word-spacing:-1.348943pt;}
.wsbe{word-spacing:-1.347815pt;}
.ws80{word-spacing:-1.347691pt;}
.wsaa{word-spacing:-1.346614pt;}
.wscc{word-spacing:-0.000031pt;}
.wsc8{word-spacing:-0.000030pt;}
.ws3e{word-spacing:-0.000021pt;}
.ws42{word-spacing:-0.000020pt;}
.ws8d{word-spacing:-0.000011pt;}
.ws1c{word-spacing:-0.000010pt;}
.ws73{word-spacing:-0.000002pt;}
.ws1{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.000002pt;}
.ws3a{word-spacing:0.000010pt;}
.ws39{word-spacing:0.000020pt;}
.wsc6{word-spacing:0.000030pt;}
.ws75{word-spacing:0.787498pt;}
.ws85{word-spacing:1.328125pt;}
.wsa7{word-spacing:2.652229pt;}
.wsbd{word-spacing:2.653382pt;}
.wsb7{word-spacing:3.999969pt;}
.wscf{word-spacing:3.999979pt;}
.ws26{word-spacing:3.999980pt;}
.ws34{word-spacing:3.999990pt;}
.wsd3{word-spacing:3.999998pt;}
.ws45{word-spacing:3.999999pt;}
.ws1e{word-spacing:4.000000pt;}
.ws59{word-spacing:4.000010pt;}
.wsc5{word-spacing:4.000018pt;}
.ws40{word-spacing:4.000020pt;}
.wsa0{word-spacing:4.787498pt;}
.wsae{word-spacing:5.306700pt;}
.ws68{word-spacing:5.328125pt;}
.ws38{word-spacing:7.999970pt;}
.ws4a{word-spacing:7.999980pt;}
.ws36{word-spacing:7.999990pt;}
.ws29{word-spacing:8.000000pt;}
.wsd7{word-spacing:8.000002pt;}
.ws99{word-spacing:8.000020pt;}
.wsb8{word-spacing:8.000030pt;}
.ws8e{word-spacing:8.787498pt;}
.ws7f{word-spacing:9.328125pt;}
.ws35{word-spacing:11.999990pt;}
.ws37{word-spacing:12.000000pt;}
.ws8b{word-spacing:12.787498pt;}
.ws94{word-spacing:15.999980pt;}
.ws23{word-spacing:16.000000pt;}
.wsd5{word-spacing:16.000002pt;}
.wsd1{word-spacing:16.000008pt;}
.wsa1{word-spacing:16.787498pt;}
.wsa6{word-spacing:17.328125pt;}
.ws41{word-spacing:19.999989pt;}
.ws12{word-spacing:20.000000pt;}
.ws14{word-spacing:20.000001pt;}
.ws15{word-spacing:20.000010pt;}
.ws76{word-spacing:23.999980pt;}
.wsce{word-spacing:23.999998pt;}
.ws98{word-spacing:23.999999pt;}
.ws79{word-spacing:30.651007pt;}
.ws7a{word-spacing:30.651028pt;}
.wsd8{word-spacing:31.999980pt;}
.wsd6{word-spacing:68.000000pt;}
._1e{margin-left:-31.812530pt;}
._f{margin-left:-8.249983pt;}
._15{margin-left:-6.482494pt;}
._17{margin-left:-5.124998pt;}
._8{margin-left:-4.156248pt;}
._9{margin-left:-2.562436pt;}
._0{margin-left:-1.388800pt;}
._1{width:1.362347pt;}
._a{width:3.209489pt;}
._b{width:5.334490pt;}
._12{width:6.678240pt;}
._10{width:9.303230pt;}
._d{width:10.584489pt;}
._c{width:12.615740pt;}
._e{width:14.146990pt;}
._20{width:15.088368pt;}
._2{width:15.999675pt;}
._16{width:17.250799pt;}
._1b{width:18.596089pt;}
._3{width:20.000000pt;}
._19{width:21.044350pt;}
._1a{width:22.624999pt;}
._4{width:24.000011pt;}
._1d{width:24.957935pt;}
._1c{width:26.624999pt;}
._6{width:28.000004pt;}
._24{width:29.164661pt;}
._23{width:30.216693pt;}
._5{width:32.000002pt;}
._21{width:33.277225pt;}
._11{width:36.000000pt;}
._13{width:40.000002pt;}
._14{width:43.999997pt;}
._7{width:48.000001pt;}
._1f{width:52.000182pt;}
._22{width:56.000000pt;}
._18{width:58.687500pt;}
._26{width:68.000001pt;}
._25{width:104.000002pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:35.200001pt;}
.fs7{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fsa{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333336pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y2e9{bottom:71.546870pt;}
.yde{bottom:71.549483pt;}
.y47{bottom:71.550136pt;}
.y148{bottom:71.550776pt;}
.y18a{bottom:71.552083pt;}
.y1d{bottom:94.880000pt;}
.y115{bottom:99.031243pt;}
.y271{bottom:101.005207pt;}
.y26b{bottom:101.937500pt;}
.y302{bottom:102.994793pt;}
.ybb{bottom:104.090814pt;}
.y189{bottom:106.070313pt;}
.y19a{bottom:108.335940pt;}
.y80{bottom:110.819007pt;}
.ydd{bottom:112.364576pt;}
.ybd{bottom:114.363283pt;}
.y1af{bottom:114.364576pt;}
.y2e8{bottom:114.729167pt;}
.y16e{bottom:115.270833pt;}
.ye9{bottom:116.201820pt;}
.y23c{bottom:116.604167pt;}
.y114{bottom:119.422854pt;}
.y18f{bottom:119.424147pt;}
.y28d{bottom:120.333327pt;}
.y9f{bottom:120.335940pt;}
.yfd{bottom:121.266927pt;}
.y106{bottom:125.401047pt;}
.y270{bottom:128.604167pt;}
.y26a{bottom:129.531247pt;}
.y117{bottom:129.695310pt;}
.y301{bottom:130.588540pt;}
.y46{bottom:131.083336pt;}
.ydc{bottom:133.549899pt;}
.y188{bottom:133.669273pt;}
.ybc{bottom:134.754880pt;}
.y240{bottom:134.757480pt;}
.y199{bottom:135.934900pt;}
.y319{bottom:139.656247pt;}
.y16d{bottom:142.867193pt;}
.y1d1{bottom:142.869793pt;}
.ye8{bottom:143.799473pt;}
.y7f{bottom:143.936193pt;}
.y230{bottom:144.203127pt;}
.y1c8{bottom:145.026043pt;}
.ybf{bottom:145.027350pt;}
.y19c{bottom:145.132807pt;}
.y2d3{bottom:145.786460pt;}
.y65{bottom:146.647140pt;}
.y28c{bottom:147.932287pt;}
.y9e{bottom:147.933593pt;}
.yfc{bottom:148.864580pt;}
.y190{bottom:150.085614pt;}
.y116{bottom:150.880632pt;}
.y45{bottom:151.646487pt;}
.y105{bottom:152.998700pt;}
.y1c{bottom:155.520000pt;}
.y1de{bottom:156.203127pt;}
.y1f6{bottom:156.999993pt;}
.y266{bottom:157.130207pt;}
.y300{bottom:158.187500pt;}
.y2e7{bottom:158.322913pt;}
.y212{bottom:159.799473pt;}
.y19e{bottom:160.359376pt;}
.y187{bottom:161.265620pt;}
.y198{bottom:163.531247pt;}
.y2bc{bottom:164.458327pt;}
.ybe{bottom:165.418947pt;}
.ydb{bottom:166.332033pt;}
.y136{bottom:167.098953pt;}
.y318{bottom:167.249993pt;}
.y147{bottom:167.263020pt;}
.y23b{bottom:168.830727pt;}
.y113{bottom:170.466140pt;}
.y1d0{bottom:170.468753pt;}
.y289{bottom:171.395833pt;}
.ye7{bottom:171.397140pt;}
.y22f{bottom:171.799473pt;}
.y19b{bottom:172.731767pt;}
.y9d{bottom:175.531247pt;}
.y224{bottom:175.692710pt;}
.y64{bottom:176.404953pt;}
.yfb{bottom:176.462233pt;}
.y7e{bottom:177.053380pt;}
.y1c6{bottom:178.726567pt;}
.y1b{bottom:180.160000pt;}
.y19d{bottom:180.752280pt;}
.y2a5{bottom:182.854167pt;}
.y1dd{bottom:183.799473pt;}
.y23f{bottom:183.802087pt;}
.y44{bottom:184.298180pt;}
.y1f5{bottom:184.596353pt;}
.y265{bottom:184.729167pt;}
.y16a{bottom:184.731767pt;}
.y2ff{bottom:185.791660pt;}
.y1ae{bottom:186.062500pt;}
.y211{bottom:187.395833pt;}
.y186{bottom:188.864580pt;}
.y2d2{bottom:189.385420pt;}
.y264{bottom:191.020830pt;}
.y1a0{bottom:191.023443pt;}
.y259{bottom:191.124993pt;}
.y197{bottom:191.130207pt;}
.y2bb{bottom:192.052087pt;}
.yda{bottom:193.929687pt;}
.y135{bottom:194.695313pt;}
.y146{bottom:194.859380pt;}
.y223{bottom:196.083014pt;}
.y23a{bottom:196.427087pt;}
.y16c{bottom:198.062500pt;}
.y112{bottom:198.063807pt;}
.y1cf{bottom:198.065100pt;}
.ye6{bottom:198.994793pt;}
.y2e6{bottom:199.255207pt;}
.y22e{bottom:199.395833pt;}
.y161{bottom:199.927087pt;}
.y28b{bottom:203.124993pt;}
.y9c{bottom:203.128900pt;}
.y43{bottom:203.616540pt;}
.y1a{bottom:204.640000pt;}
.y63{bottom:206.162767pt;}
.y1c5{bottom:206.325527pt;}
.y22c{bottom:206.354163pt;}
.y317{bottom:208.182287pt;}
.y7d{bottom:210.170567pt;}
.y2a4{bottom:210.453127pt;}
.y1dc{bottom:211.395833pt;}
.y19f{bottom:211.413734pt;}
.y1f4{bottom:212.192713pt;}
.yba{bottom:212.328127pt;}
.y1ad{bottom:213.661460pt;}
.y210{bottom:214.994793pt;}
.y185{bottom:216.460940pt;}
.yfa{bottom:217.393233pt;}
.y258{bottom:218.723953pt;}
.y196{bottom:218.726567pt;}
.y2ba{bottom:219.651047pt;}
.yd9{bottom:221.527340pt;}
.y22b{bottom:221.687496pt;}
.y134{bottom:222.294273pt;}
.y145{bottom:222.458327pt;}
.y42{bottom:222.934900pt;}
.y239{bottom:224.026047pt;}
.y111{bottom:225.661460pt;}
.y288{bottom:226.593753pt;}
.y2fe{bottom:226.718753pt;}
.y2e5{bottom:226.854167pt;}
.y22d{bottom:226.994793pt;}
.y160{bottom:227.523433pt;}
.y19{bottom:228.026667pt;}
.y28a{bottom:230.723953pt;}
.y9b{bottom:230.726567pt;}
.y2d1{bottom:232.984380pt;}
.y1c4{bottom:233.921873pt;}
.y316{bottom:235.781247pt;}
.y62{bottom:235.920567pt;}
.y22a{bottom:237.020830pt;}
.y1db{bottom:238.994793pt;}
.y1f3{bottom:239.791660pt;}
.yb9{bottom:239.925780pt;}
.y169{bottom:239.927087pt;}
.y1ac{bottom:241.257807pt;}
.y41{bottom:242.253260pt;}
.y7c{bottom:243.287767pt;}
.y184{bottom:244.059900pt;}
.yf9{bottom:244.990887pt;}
.y257{bottom:246.322913pt;}
.y195{bottom:246.325527pt;}
.y18{bottom:246.426667pt;}
.yd8{bottom:249.124993pt;}
.y133{bottom:249.890620pt;}
.y144{bottom:250.054687pt;}
.y238{bottom:251.624993pt;}
.y229{bottom:252.351563pt;}
.y16b{bottom:253.257807pt;}
.y110{bottom:253.259113pt;}
.y1ce{bottom:253.260420pt;}
.y2a3{bottom:254.052087pt;}
.y287{bottom:254.187500pt;}
.y2fd{bottom:254.312500pt;}
.y2e4{bottom:254.453127pt;}
.y20f{bottom:254.593753pt;}
.y15f{bottom:255.122393pt;}
.y9a{bottom:258.324220pt;}
.y2d0{bottom:260.583327pt;}
.y1c3{bottom:261.520833pt;}
.y40{bottom:261.571620pt;}
.y2b9{bottom:263.249993pt;}
.y61{bottom:265.678380pt;}
.y1da{bottom:266.593753pt;}
.y17{bottom:267.066667pt;}
.y1f2{bottom:267.390620pt;}
.y269{bottom:267.520833pt;}
.yb8{bottom:267.523433pt;}
.y228{bottom:267.682296pt;}
.y1ab{bottom:268.856767pt;}
.y183{bottom:271.656247pt;}
.y315{bottom:272.583327pt;}
.yf8{bottom:272.588540pt;}
.y194{bottom:273.921873pt;}
.y7b{bottom:276.404953pt;}
.yd7{bottom:276.722660pt;}
.y132{bottom:277.489580pt;}
.y143{bottom:277.653647pt;}
.y10f{bottom:280.856767pt;}
.y1cd{bottom:280.859380pt;}
.y3f{bottom:280.889980pt;}
.y2a2{bottom:281.645833pt;}
.y286{bottom:281.786460pt;}
.y2fc{bottom:281.916660pt;}
.y20e{bottom:282.190100pt;}
.y15e{bottom:282.718753pt;}
.y227{bottom:283.015630pt;}
.y1c2{bottom:289.117193pt;}
.y237{bottom:290.166665pt;}
.y2b8{bottom:290.843753pt;}
.y23e{bottom:294.187500pt;}
.y1d9{bottom:294.190100pt;}
.y1f1{bottom:294.986980pt;}
.y26f{bottom:295.119793pt;}
.yb7{bottom:295.121100pt;}
.y177{bottom:295.122393pt;}
.y2e3{bottom:295.380207pt;}
.y60{bottom:295.436193pt;}
.y1aa{bottom:296.453127pt;}
.y16{bottom:297.786667pt;}
.y226{bottom:298.348963pt;}
.y99{bottom:299.255207pt;}
.y3e{bottom:300.208327pt;}
.y256{bottom:301.520833pt;}
.y2cf{bottom:304.177087pt;}
.yd6{bottom:304.320313pt;}
.y131{bottom:305.085940pt;}
.y142{bottom:305.249993pt;}
.y168{bottom:308.453127pt;}
.y10e{bottom:308.454433pt;}
.y1cc{bottom:308.455727pt;}
.y260{bottom:308.458327pt;}
.y2a1{bottom:309.244793pt;}
.y285{bottom:309.385420pt;}
.y7a{bottom:309.522140pt;}
.y20d{bottom:309.786460pt;}
.y15d{bottom:310.317713pt;}
.y314{bottom:313.510420pt;}
.yf7{bottom:313.519527pt;}
.y193{bottom:313.520833pt;}
.y236{bottom:315.463545pt;}
.y1c1{bottom:316.716140pt;}
.y225{bottom:318.739254pt;}
.y3d{bottom:319.526687pt;}
.y1d8{bottom:321.786460pt;}
.y1f0{bottom:322.583327pt;}
.yb6{bottom:322.718753pt;}
.y2fb{bottom:322.843753pt;}
.y2e2{bottom:322.979167pt;}
.y1a9{bottom:324.052087pt;}
.y5f{bottom:325.194007pt;}
.y182{bottom:326.851567pt;}
.y98{bottom:326.852860pt;}
.y15{bottom:328.346667pt;}
.y255{bottom:329.114580pt;}
.y2ce{bottom:331.776047pt;}
.yd5{bottom:331.917967pt;}
.y130{bottom:332.684900pt;}
.y141{bottom:332.848953pt;}
.y2b7{bottom:334.442713pt;}
.y10d{bottom:336.052087pt;}
.y284{bottom:336.984380pt;}
.y20c{bottom:337.385420pt;}
.y15c{bottom:337.914060pt;}
.y3c{bottom:338.845047pt;}
.y235{bottom:340.760412pt;}
.y313{bottom:341.114580pt;}
.yf6{bottom:341.117193pt;}
.y79{bottom:342.639327pt;}
.y1c0{bottom:344.312500pt;}
.y1d7{bottom:349.385420pt;}
.y1ef{bottom:350.182287pt;}
.y26e{bottom:350.312500pt;}
.yb5{bottom:350.316407pt;}
.y176{bottom:350.317713pt;}
.y2fa{bottom:350.437500pt;}
.y2e1{bottom:350.578127pt;}
.y1a8{bottom:351.648433pt;}
.y2a0{bottom:352.843753pt;}
.y222{bottom:352.984380pt;}
.y97{bottom:354.450527pt;}
.y5e{bottom:354.951820pt;}
.y254{bottom:356.713540pt;}
.y3b{bottom:358.163407pt;}
.y14{bottom:359.066667pt;}
.y2cd{bottom:359.374993pt;}
.yd4{bottom:359.515620pt;}
.y12f{bottom:360.281247pt;}
.y140{bottom:360.445313pt;}
.y2b6{bottom:362.041660pt;}
.y167{bottom:363.648433pt;}
.y10c{bottom:363.649740pt;}
.y1cb{bottom:363.651047pt;}
.y283{bottom:364.583327pt;}
.y20b{bottom:364.984380pt;}
.y15b{bottom:365.513020pt;}
.y234{bottom:366.059892pt;}
.y312{bottom:368.708327pt;}
.yf5{bottom:368.714847pt;}
.y1bf{bottom:371.911460pt;}
.y78{bottom:375.756513pt;}
.y1d6{bottom:376.984380pt;}
.y1ee{bottom:377.781247pt;}
.y26d{bottom:377.911460pt;}
.ye5{bottom:377.914060pt;}
.y2e0{bottom:378.177087pt;}
.y1a7{bottom:379.247393pt;}
.y29f{bottom:380.437500pt;}
.y221{bottom:380.580727pt;}
.y181{bottom:382.046873pt;}
.y96{bottom:382.048180pt;}
.y253{bottom:384.312500pt;}
.y5d{bottom:384.709633pt;}
.y2cc{bottom:386.968753pt;}
.yd3{bottom:387.113287pt;}
.y12e{bottom:387.880207pt;}
.y13f{bottom:388.044273pt;}
.y13{bottom:389.626667pt;}
.y3a{bottom:390.815100pt;}
.yb4{bottom:391.247393pt;}
.y1ca{bottom:391.249993pt;}
.y233{bottom:391.356772pt;}
.y2f9{bottom:391.369793pt;}
.y282{bottom:392.177087pt;}
.y20a{bottom:392.580727pt;}
.y15a{bottom:393.109380pt;}
.yf4{bottom:396.312500pt;}
.y1be{bottom:399.507807pt;}
.y1d5{bottom:404.580727pt;}
.y23d{bottom:404.583327pt;}
.y1ed{bottom:405.377607pt;}
.y26c{bottom:405.510420pt;}
.ye4{bottom:405.511713pt;}
.y175{bottom:405.513020pt;}
.y2b5{bottom:405.640620pt;}
.y2df{bottom:405.770833pt;}
.y1a6{bottom:406.843753pt;}
.y29e{bottom:408.036460pt;}
.y220{bottom:408.177087pt;}
.y77{bottom:408.873700pt;}
.y311{bottom:409.635420pt;}
.y95{bottom:409.645833pt;}
.y252{bottom:411.906247pt;}
.y5c{bottom:414.467447pt;}
.y104{bottom:414.710940pt;}
.y12d{bottom:415.476567pt;}
.y13e{bottom:415.640620pt;}
.y232{bottom:416.653652pt;}
.y166{bottom:418.843753pt;}
.yb3{bottom:418.845047pt;}
.y1c9{bottom:418.846353pt;}
.y2f8{bottom:418.968753pt;}
.y281{bottom:419.776047pt;}
.y209{bottom:420.177087pt;}
.y12{bottom:420.386667pt;}
.y39{bottom:423.466793pt;}
.yf3{bottom:423.910153pt;}
.y1bd{bottom:427.106767pt;}
.yd2{bottom:428.044273pt;}
.y2cb{bottom:430.567713pt;}
.y1d4{bottom:432.177087pt;}
.y1ec{bottom:432.973953pt;}
.ye3{bottom:433.109380pt;}
.y2b4{bottom:433.239580pt;}
.y159{bottom:434.039060pt;}
.y1a5{bottom:434.442713pt;}
.y21f{bottom:435.776047pt;}
.y192{bottom:437.242193pt;}
.y94{bottom:437.243487pt;}
.y5b{bottom:440.225260pt;}
.y76{bottom:441.990887pt;}
.y103{bottom:442.308593pt;}
.y38{bottom:442.785153pt;}
.y12c{bottom:443.075527pt;}
.y13d{bottom:443.239580pt;}
.yb2{bottom:446.442713pt;}
.y2de{bottom:446.703127pt;}
.y280{bottom:447.374993pt;}
.y208{bottom:447.776047pt;}
.y310{bottom:450.572913pt;}
.yf2{bottom:451.507807pt;}
.y29d{bottom:451.635420pt;}
.y231{bottom:452.619785pt;}
.y251{bottom:452.843753pt;}
.y11{bottom:452.866667pt;}
.y1bc{bottom:454.703127pt;}
.yd1{bottom:455.641927pt;}
.y2ca{bottom:458.166660pt;}
.y180{bottom:459.776047pt;}
.y2f7{bottom:459.901047pt;}
.y1eb{bottom:460.572913pt;}
.ye2{bottom:460.707033pt;}
.y2b3{bottom:460.833327pt;}
.y158{bottom:461.638020pt;}
.y1a4{bottom:462.039060pt;}
.y21e{bottom:463.374993pt;}
.y93{bottom:464.841140pt;}
.y102{bottom:469.906247pt;}
.y5a{bottom:469.983073pt;}
.y12b{bottom:470.671873pt;}
.y13c{bottom:470.835940pt;}
.y165{bottom:474.039060pt;}
.yb1{bottom:474.040367pt;}
.y1d3{bottom:474.041660pt;}
.y2dd{bottom:474.302087pt;}
.y27f{bottom:474.968753pt;}
.y75{bottom:475.108073pt;}
.y207{bottom:475.374993pt;}
.y37{bottom:475.436847pt;}
.y30f{bottom:478.166660pt;}
.yf1{bottom:479.105473pt;}
.y29c{bottom:479.234380pt;}
.y250{bottom:480.437500pt;}
.y1bb{bottom:482.302087pt;}
.yd0{bottom:483.239580pt;}
.y2c9{bottom:485.765620pt;}
.y17f{bottom:487.374993pt;}
.y2f6{bottom:487.499993pt;}
.y1ea{bottom:488.171873pt;}
.ye1{bottom:488.304687pt;}
.y157{bottom:489.234380pt;}
.y1a3{bottom:489.638020pt;}
.y21d{bottom:490.971353pt;}
.y191{bottom:492.437500pt;}
.y92{bottom:492.438807pt;}
.y10{bottom:492.706667pt;}
.y36{bottom:494.755207pt;}
.y59{bottom:495.740887pt;}
.y101{bottom:497.503900pt;}
.y12a{bottom:498.270833pt;}
.y13b{bottom:498.434900pt;}
.yb0{bottom:501.638020pt;}
.y1d2{bottom:501.640620pt;}
.y2dc{bottom:501.895833pt;}
.y206{bottom:502.971353pt;}
.y2b2{bottom:504.432287pt;}
.y30e{bottom:505.760420pt;}
.yf0{bottom:506.703127pt;}
.y29b{bottom:506.833327pt;}
.y74{bottom:508.225260pt;}
.y1ba{bottom:509.898433pt;}
.ycf{bottom:510.837233pt;}
.y35{bottom:514.073567pt;}
.y263{bottom:514.968753pt;}
.y17e{bottom:514.971353pt;}
.y1e9{bottom:515.768233pt;}
.y27e{bottom:515.901047pt;}
.ye0{bottom:515.902340pt;}
.y156{bottom:516.833327pt;}
.y1a2{bottom:517.234380pt;}
.y21c{bottom:518.567713pt;}
.y91{bottom:520.036460pt;}
.y24f{bottom:521.369793pt;}
.y58{bottom:525.498700pt;}
.y129{bottom:525.867193pt;}
.y2f5{bottom:528.432287pt;}
.y164{bottom:529.234380pt;}
.yaf{bottom:529.235673pt;}
.y25f{bottom:529.239580pt;}
.y2c8{bottom:529.364580pt;}
.y205{bottom:530.567713pt;}
.y323{bottom:532.026047pt;}
.y2b1{bottom:532.031247pt;}
.yf{bottom:532.546667pt;}
.y34{bottom:533.391927pt;}
.yef{bottom:534.300780pt;}
.y1b9{bottom:537.497393pt;}
.y13a{bottom:538.309892pt;}
.yce{bottom:538.434900pt;}
.y73{bottom:541.342447pt;}
.y17d{bottom:542.567713pt;}
.y2db{bottom:542.833327pt;}
.y1e8{bottom:543.364580pt;}
.ydf{bottom:543.499993pt;}
.y155{bottom:544.429687pt;}
.y1a1{bottom:544.833327pt;}
.y21b{bottom:546.166660pt;}
.y30d{bottom:546.697913pt;}
.y90{bottom:547.634113pt;}
.y24e{bottom:548.968753pt;}
.y29a{bottom:550.427087pt;}
.y57{bottom:551.256513pt;}
.y33{bottom:552.710287pt;}
.y128{bottom:553.466140pt;}
.y2f4{bottom:556.026047pt;}
.yae{bottom:556.833327pt;}
.y2c7{bottom:556.958327pt;}
.y204{bottom:558.166660pt;}
.y2b0{bottom:559.624993pt;}
.y139{bottom:563.609372pt;}
.y1b8{bottom:565.093753pt;}
.ycd{bottom:566.032553pt;}
.y17c{bottom:570.166660pt;}
.y2da{bottom:570.427087pt;}
.y1e7{bottom:570.963540pt;}
.y27d{bottom:571.093753pt;}
.y32{bottom:572.028647pt;}
.ye{bottom:572.386667pt;}
.y322{bottom:572.963540pt;}
.y21a{bottom:573.765620pt;}
.y30c{bottom:574.291660pt;}
.y72{bottom:574.459633pt;}
.y8f{bottom:575.231767pt;}
.y24d{bottom:576.562500pt;}
.y299{bottom:578.026047pt;}
.y56{bottom:581.014327pt;}
.y127{bottom:581.062500pt;}
.y2f3{bottom:583.624993pt;}
.y174{bottom:584.429687pt;}
.yad{bottom:584.430993pt;}
.y25e{bottom:584.432287pt;}
.y203{bottom:585.765620pt;}
.y138{bottom:588.907559pt;}
.y31{bottom:591.347007pt;}
.ycc{bottom:593.630207pt;}
.y163{bottom:597.764327pt;}
.y17b{bottom:597.765620pt;}
.y2d9{bottom:598.026047pt;}
.y1e6{bottom:598.562500pt;}
.y27c{bottom:598.692713pt;}
.y154{bottom:599.624993pt;}
.y2c6{bottom:600.557287pt;}
.y219{bottom:601.361980pt;}
.y30b{bottom:601.895833pt;}
.y8e{bottom:602.829433pt;}
.y2af{bottom:603.223953pt;}
.y24c{bottom:604.161460pt;}
.y1b7{bottom:604.968745pt;}
.y71{bottom:607.576820pt;}
.y126{bottom:608.661460pt;}
.y30{bottom:610.665367pt;}
.y55{bottom:610.772140pt;}
.yac{bottom:612.028647pt;}
.y25d{bottom:612.031247pt;}
.yd{bottom:612.386667pt;}
.y202{bottom:613.361980pt;}
.ycb{bottom:621.227860pt;}
.y298{bottom:621.624993pt;}
.y2f2{bottom:624.557287pt;}
.y162{bottom:625.361980pt;}
.y262{bottom:625.364580pt;}
.y1e5{bottom:626.158860pt;}
.y27b{bottom:626.291660pt;}
.y137{bottom:627.537759pt;}
.y2c5{bottom:628.156247pt;}
.y218{bottom:628.958327pt;}
.y2f{bottom:629.983727pt;}
.y1b6{bottom:630.265625pt;}
.yee{bottom:630.427087pt;}
.y2ae{bottom:630.822913pt;}
.y24b{bottom:631.760420pt;}
.y125{bottom:636.257807pt;}
.y2d8{bottom:638.958327pt;}
.y173{bottom:639.624993pt;}
.yab{bottom:639.626300pt;}
.y54{bottom:640.529953pt;}
.y153{bottom:640.557287pt;}
.y70{bottom:640.694007pt;}
.y201{bottom:640.958327pt;}
.y321{bottom:641.489580pt;}
.y30a{bottom:642.822913pt;}
.y8d{bottom:643.760420pt;}
.y297{bottom:649.218754pt;}
.y2e{bottom:649.302087pt;}
.y2f1{bottom:652.151047pt;}
.y17a{bottom:652.958327pt;}
.y10b{bottom:652.959633pt;}
.y1e4{bottom:653.755207pt;}
.y27a{bottom:653.890620pt;}
.y1b5{bottom:655.565105pt;}
.y217{bottom:656.557287pt;}
.yed{bottom:658.024740pt;}
.y24a{bottom:659.359380pt;}
.yca{bottom:662.158860pt;}
.y124{bottom:663.856767pt;}
.y2d7{bottom:666.552087pt;}
.yaa{bottom:667.223953pt;}
.y152{bottom:668.154953pt;}
.y200{bottom:668.557287pt;}
.y2d{bottom:668.620447pt;}
.y320{bottom:669.088540pt;}
.y53{bottom:670.287767pt;}
.y309{bottom:670.416660pt;}
.y8c{bottom:671.358073pt;}
.y2c4{bottom:671.749993pt;}
.y6f{bottom:673.811193pt;}
.y2ad{bottom:674.421873pt;}
.y2f0{bottom:679.749993pt;}
.y10a{bottom:680.557287pt;}
.y1e3{bottom:681.354167pt;}
.y279{bottom:681.489580pt;}
.y216{bottom:684.156247pt;}
.yec{bottom:685.622393pt;}
.y249{bottom:686.958327pt;}
.yc{bottom:688.093333pt;}
.yc9{bottom:689.756513pt;}
.y123{bottom:691.453127pt;}
.y296{bottom:692.817713pt;}
.y2d6{bottom:694.151047pt;}
.y1b4{bottom:694.197919pt;}
.y172{bottom:694.820313pt;}
.ya9{bottom:694.821620pt;}
.y25c{bottom:694.822913pt;}
.y151{bottom:695.752607pt;}
.y1ff{bottom:696.156247pt;}
.y308{bottom:698.020833pt;}
.y8b{bottom:698.955727pt;}
.y2c3{bottom:699.348953pt;}
.y52{bottom:700.045567pt;}
.y2c{bottom:701.272140pt;}
.y2ac{bottom:702.020833pt;}
.yb{bottom:706.493333pt;}
.y6e{bottom:706.928380pt;}
.y109{bottom:708.154953pt;}
.y179{bottom:708.156247pt;}
.y278{bottom:709.083327pt;}
.y31f{bottom:710.020833pt;}
.y215{bottom:711.752607pt;}
.yeb{bottom:713.220047pt;}
.y248{bottom:714.552087pt;}
.yc8{bottom:717.354167pt;}
.y122{bottom:719.052087pt;}
.y1b3{bottom:719.494785pt;}
.y1e2{bottom:719.895839pt;}
.y295{bottom:720.416660pt;}
.y2ef{bottom:720.682287pt;}
.ya8{bottom:722.419273pt;}
.y25b{bottom:722.421873pt;}
.y150{bottom:723.350260pt;}
.y1fe{bottom:723.752607pt;}
.ya{bottom:724.893333pt;}
.y8a{bottom:726.553380pt;}
.y51{bottom:729.803380pt;}
.y2d5{bottom:733.749993pt;}
.y2b{bottom:733.923833pt;}
.y261{bottom:735.749993pt;}
.y108{bottom:735.752607pt;}
.y277{bottom:736.682287pt;}
.y31e{bottom:737.614580pt;}
.y307{bottom:738.947913pt;}
.y214{bottom:739.348953pt;}
.y6d{bottom:740.045567pt;}
.yea{bottom:740.817713pt;}
.y247{bottom:742.151047pt;}
.y2c2{bottom:742.947913pt;}
.y9{bottom:744.413333pt;}
.yc7{bottom:744.951820pt;}
.y1e1{bottom:745.192705pt;}
.y2ab{bottom:745.614580pt;}
.y121{bottom:746.648433pt;}
.y294{bottom:748.015620pt;}
.y2ee{bottom:748.281247pt;}
.y171{bottom:750.015620pt;}
.ya7{bottom:750.016927pt;}
.y268{bottom:750.020833pt;}
.y1fd{bottom:751.348953pt;}
.y2a{bottom:753.242193pt;}
.y89{bottom:754.151047pt;}
.y1b2{bottom:758.124999pt;}
.y50{bottom:759.561193pt;}
.y178{bottom:763.348953pt;}
.y107{bottom:763.350260pt;}
.y14f{bottom:764.281247pt;}
.y213{bottom:766.947913pt;}
.y8{bottom:768.893333pt;}
.y246{bottom:769.749993pt;}
.y1e0{bottom:770.494785pt;}
.y2c1{bottom:770.546873pt;}
.yc6{bottom:772.549473pt;}
.y6c{bottom:773.162767pt;}
.y2aa{bottom:773.208327pt;}
.y120{bottom:774.247393pt;}
.y293{bottom:775.614580pt;}
.ya6{bottom:777.614580pt;}
.y31d{bottom:778.541660pt;}
.y1fc{bottom:778.947913pt;}
.y306{bottom:779.874993pt;}
.y88{bottom:781.748700pt;}
.y29{bottom:785.893887pt;}
.y4f{bottom:789.319007pt;}
.y100{bottom:790.947913pt;}
.y276{bottom:791.874993pt;}
.y14e{bottom:791.880207pt;}
.y7{bottom:793.533333pt;}
.y1b1{bottom:796.757812pt;}
.y245{bottom:797.343753pt;}
.y2c0{bottom:798.145833pt;}
.yc5{bottom:800.147140pt;}
.y170{bottom:805.210940pt;}
.y28{bottom:805.212233pt;}
.y267{bottom:805.213540pt;}
.y31c{bottom:806.145833pt;}
.y6b{bottom:806.279953pt;}
.y1df{bottom:806.458332pt;}
.y1fb{bottom:806.546873pt;}
.y305{bottom:807.479167pt;}
.y87{bottom:809.346353pt;}
.y11f{bottom:814.123692pt;}
.y2d4{bottom:814.145833pt;}
.y2a9{bottom:816.812500pt;}
.y6{bottom:818.013333pt;}
.yff{bottom:818.545567pt;}
.y18e{bottom:818.546873pt;}
.y4e{bottom:819.076820pt;}
.y292{bottom:819.208327pt;}
.y275{bottom:819.473953pt;}
.y14d{bottom:819.476567pt;}
.y27{bottom:824.530593pt;}
.y244{bottom:824.942713pt;}
.yc4{bottom:827.744793pt;}
.y2ed{bottom:832.807287pt;}
.ya5{bottom:832.809900pt;}
.y1fa{bottom:834.143233pt;}
.y304{bottom:835.072913pt;}
.y1b0{bottom:835.388025pt;}
.y86{bottom:836.944007pt;}
.y6a{bottom:839.397140pt;}
.y11e{bottom:839.421879pt;}
.y2bf{bottom:841.739580pt;}
.y26{bottom:843.848953pt;}
.y2a8{bottom:844.406247pt;}
.y5{bottom:844.773333pt;}
.yfe{bottom:846.143233pt;}
.y25a{bottom:846.145833pt;}
.y291{bottom:846.807287pt;}
.y274{bottom:847.072913pt;}
.y14c{bottom:847.075527pt;}
.y4d{bottom:848.834633pt;}
.y243{bottom:852.541660pt;}
.yc3{bottom:855.342447pt;}
.y16f{bottom:860.406247pt;}
.y1f9{bottom:861.739580pt;}
.y25{bottom:863.167313pt;}
.y85{bottom:864.541660pt;}
.y11d{bottom:864.718745pt;}
.y2be{bottom:869.338540pt;}
.y69{bottom:872.514327pt;}
.y18d{bottom:873.739580pt;}
.ya4{bottom:873.740887pt;}
.y14b{bottom:874.671873pt;}
.y31b{bottom:874.677087pt;}
.y303{bottom:875.999993pt;}
.y4c{bottom:878.592447pt;}
.y242{bottom:880.140620pt;}
.y4{bottom:881.573333pt;}
.y24{bottom:882.485673pt;}
.yc2{bottom:882.940100pt;}
.y2a7{bottom:885.338541pt;}
.y2ec{bottom:888.000000pt;}
.y1c7{bottom:888.005208pt;}
.y1f8{bottom:889.338541pt;}
.y11c{bottom:890.016928pt;}
.y290{bottom:890.406249pt;}
.y84{bottom:892.139323pt;}
.ya3{bottom:901.338541pt;}
.y23{bottom:901.804036pt;}
.y68{bottom:905.631511pt;}
.y4b{bottom:908.350260pt;}
.yc1{bottom:910.537760pt;}
.y2a6{bottom:912.937500pt;}
.y14a{bottom:915.601563pt;}
.y273{bottom:915.604167pt;}
.y1f7{bottom:916.937500pt;}
.y3{bottom:918.373333pt;}
.y83{bottom:919.736979pt;}
.y22{bottom:921.122396pt;}
.y11b{bottom:928.648437pt;}
.y2eb{bottom:928.932292pt;}
.ya2{bottom:928.936197pt;}
.y18c{bottom:928.937500pt;}
.y28f{bottom:934.000000pt;}
.y4a{bottom:938.108073pt;}
.yc0{bottom:938.135416pt;}
.y67{bottom:938.748697pt;}
.y21{bottom:940.440755pt;}
.y2bd{bottom:940.531249pt;}
.y31a{bottom:943.197916pt;}
.y149{bottom:943.200521pt;}
.y272{bottom:943.203125pt;}
.y82{bottom:947.334636pt;}
.y2{bottom:951.813333pt;}
.y11a{bottom:953.945313pt;}
.y241{bottom:956.531249pt;}
.ya1{bottom:956.533855pt;}
.y20{bottom:959.759115pt;}
.y1{bottom:966.693333pt;}
.y49{bottom:967.865885pt;}
.y28e{bottom:970.802083pt;}
.y66{bottom:971.865885pt;}
.y81{bottom:974.932292pt;}
.y1f{bottom:979.077473pt;}
.y119{bottom:979.243489pt;}
.y18b{bottom:984.130208pt;}
.ya0{bottom:984.131511pt;}
.y2ea{bottom:984.135416pt;}
.y48{bottom:1010.484376pt;}
.y1e{bottom:1011.729167pt;}
.y118{bottom:1012.973959pt;}
.hf{height:28.687500pt;}
.h11{height:31.556251pt;}
.h13{height:46.927082pt;}
.hb{height:47.369790pt;}
.h10{height:47.812499pt;}
.h12{height:52.593751pt;}
.h15{height:56.312500pt;}
.h8{height:56.843750pt;}
.h9{height:57.375000pt;}
.he{height:58.073440pt;}
.h14{height:58.392190pt;}
.hd{height:58.710940pt;}
.hc{height:61.580732pt;}
.h2{height:64.500000pt;}
.h7{height:83.540625pt;}
.h4{height:85.785000pt;}
.ha{height:95.666667pt;}
.h6{height:104.896875pt;}
.h3{height:129.000000pt;}
.h5{height:139.965000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:794.666667pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x2{left:113.471988pt;}
.xd{left:120.000000pt;}
.xf{left:124.000000pt;}
.x6{left:126.111988pt;}
.x11{left:143.000000pt;}
.xe{left:144.000000pt;}
.x5{left:149.306655pt;}
.x8{left:158.906655pt;}
.x7{left:180.506655pt;}
.x9{left:182.106655pt;}
.xa{left:251.426655pt;}
.x4{left:320.706655pt;}
.x3{left:396.866655pt;}
.x1{left:418.493322pt;}
.x10{left:687.372680pt;}
.xc{left:694.036740pt;}
}




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