
    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_d1ae85c8aac80920272df232.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.722000;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_c34a6da1d69463b3471a1224.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_a7e0d6107a9cb4c2f14ec855.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5cc46240fb5cffeb084e5b6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.452000;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_bc13d5a6331adca0d879ba85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_36c9f7c43ef20b7e974219d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9120b60cc811942c3e210e7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6f3b7985606a199d59a50ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_92675ea859dcb35ac1ac1039.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_133e714e444d525f2feeb490.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.038000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5df320c1ff071e07ee2813e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9120b60cc811942c3e210e7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bc13d5a6331adca0d879ba85.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e615c8e566830a7adc5c8f74.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.650000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f41d98d892ed8798585d0bf5.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_27ceb535e29771d61bd7eed3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.639000;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:ff11;src:url('chunks/assets/font_0fef89c7e93a593639ee8583.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.924000;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);}
.v3{vertical-align:-71.748000px;}
.v2{vertical-align:-14.985000px;}
.v4{vertical-align:-12.735000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.125000px;}
.v1{vertical-align:19.980000px;}
.lsb{letter-spacing:-1.575000px;}
.lsa{letter-spacing:-1.050000px;}
.ls9{letter-spacing:-0.855000px;}
.lsc{letter-spacing:-0.787500px;}
.ls3{letter-spacing:-0.675000px;}
.ls8{letter-spacing:-0.570000px;}
.ls7{letter-spacing:-0.285000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.090600px;}
.ls5{letter-spacing:0.142800px;}
.ls4{letter-spacing:0.855000px;}
.ls2{letter-spacing:4.200000px;}
.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;}
}
.ws2{word-spacing:-37.360865px;}
.ws0{word-spacing:-12.510000px;}
.ws1{word-spacing:-9.382500px;}
.wsa9{word-spacing:-7.506000px;}
.ws3c{word-spacing:-2.223000px;}
.ws51{word-spacing:-2.052000px;}
.ws79{word-spacing:-1.938000px;}
.wsa1{word-spacing:-1.425000px;}
.wsdf{word-spacing:-1.080000px;}
.ws36{word-spacing:-0.855000px;}
.ws43{word-spacing:-0.285000px;}
.ws86{word-spacing:-0.228000px;}
.wsc{word-spacing:-0.180000px;}
.ws60{word-spacing:-0.171000px;}
.wsa2{word-spacing:-0.114000px;}
.ws3{word-spacing:0.000000px;}
.ws94{word-spacing:0.114000px;}
.ws38{word-spacing:0.342000px;}
.ws84{word-spacing:0.798000px;}
.ws90{word-spacing:0.855000px;}
.wse0{word-spacing:0.969000px;}
.ws58{word-spacing:1.026000px;}
.wsf3{word-spacing:1.140000px;}
.ws45{word-spacing:1.197000px;}
.ws75{word-spacing:1.653000px;}
.ws4f{word-spacing:1.710000px;}
.wsf0{word-spacing:1.995000px;}
.wsde{word-spacing:2.025000px;}
.wsf4{word-spacing:2.280000px;}
.ws4b{word-spacing:2.394000px;}
.ws48{word-spacing:2.565000px;}
.wsb8{word-spacing:2.610000px;}
.ws76{word-spacing:2.679000px;}
.wsf9{word-spacing:2.793000px;}
.ws21{word-spacing:2.907000px;}
.wsb3{word-spacing:3.420000px;}
.ws50{word-spacing:3.477000px;}
.ws95{word-spacing:3.705000px;}
.ws74{word-spacing:3.762000px;}
.wsfd{word-spacing:3.876000px;}
.ws15{word-spacing:3.933000px;}
.wsf1{word-spacing:4.047000px;}
.wsfb{word-spacing:4.104000px;}
.wsc2{word-spacing:4.218000px;}
.wsf6{word-spacing:4.332000px;}
.wsdb{word-spacing:4.389000px;}
.ws8a{word-spacing:4.731000px;}
.ws2b{word-spacing:4.845000px;}
.ws1d{word-spacing:4.959000px;}
.ws72{word-spacing:5.130000px;}
.wsd2{word-spacing:5.187000px;}
.ws20{word-spacing:5.244000px;}
.wsf{word-spacing:5.358000px;}
.wse9{word-spacing:5.472000px;}
.ws5b{word-spacing:5.529000px;}
.ws34{word-spacing:5.757000px;}
.ws6b{word-spacing:5.814000px;}
.wsd{word-spacing:5.928000px;}
.ws63{word-spacing:6.099000px;}
.ws98{word-spacing:6.156000px;}
.ws91{word-spacing:6.213000px;}
.wsd0{word-spacing:6.270000px;}
.ws1f{word-spacing:6.327000px;}
.ws56{word-spacing:6.384000px;}
.ws42{word-spacing:6.441000px;}
.ws39{word-spacing:6.498000px;}
.wse5{word-spacing:6.555000px;}
.wsff{word-spacing:6.669000px;}
.wsc3{word-spacing:6.726000px;}
.ws73{word-spacing:6.897000px;}
.ws70{word-spacing:7.011000px;}
.ws3a{word-spacing:7.125000px;}
.wscc{word-spacing:7.182000px;}
.ws46{word-spacing:7.239000px;}
.ws87{word-spacing:7.353000px;}
.ws80{word-spacing:7.581000px;}
.ws11{word-spacing:7.695000px;}
.ws26{word-spacing:7.752000px;}
.ws77{word-spacing:7.809000px;}
.wsd6{word-spacing:7.923000px;}
.ws8{word-spacing:7.980000px;}
.ws40{word-spacing:8.037000px;}
.ws8d{word-spacing:8.094000px;}
.ws1c{word-spacing:8.151000px;}
.ws96{word-spacing:8.208000px;}
.wsd1{word-spacing:8.265000px;}
.ws3e{word-spacing:8.322000px;}
.ws5d{word-spacing:8.436000px;}
.ws7a{word-spacing:8.493000px;}
.ws19{word-spacing:8.550000px;}
.wsc9{word-spacing:8.607000px;}
.wsa6{word-spacing:8.664000px;}
.ws9e{word-spacing:8.721000px;}
.wsc1{word-spacing:8.778000px;}
.ws97{word-spacing:8.892000px;}
.wsa5{word-spacing:8.949000px;}
.wscd{word-spacing:9.006000px;}
.ws53{word-spacing:9.063000px;}
.ws85{word-spacing:9.120000px;}
.ws6c{word-spacing:9.234000px;}
.ws6a{word-spacing:9.348000px;}
.wsb6{word-spacing:9.405000px;}
.wsa0{word-spacing:9.462000px;}
.wsb1{word-spacing:9.519000px;}
.ws3d{word-spacing:9.576000px;}
.ws3b{word-spacing:9.633000px;}
.ws57{word-spacing:9.690000px;}
.ws7c{word-spacing:9.747000px;}
.ws8e{word-spacing:9.804000px;}
.ws5c{word-spacing:9.861000px;}
.ws13{word-spacing:9.918000px;}
.wsa3{word-spacing:10.032000px;}
.wsb2{word-spacing:10.089000px;}
.wsdc{word-spacing:10.146000px;}
.ws64{word-spacing:10.260000px;}
.wsbe{word-spacing:10.317000px;}
.wsd5{word-spacing:10.431000px;}
.ws22{word-spacing:10.488000px;}
.wsd8{word-spacing:10.545000px;}
.ws1e{word-spacing:10.602000px;}
.ws69{word-spacing:10.659000px;}
.wse7{word-spacing:10.716000px;}
.ws27{word-spacing:10.773000px;}
.ws17{word-spacing:10.830000px;}
.wsfe{word-spacing:10.887000px;}
.ws2e{word-spacing:10.944000px;}
.ws92{word-spacing:11.001000px;}
.ws67{word-spacing:11.115000px;}
.wsd9{word-spacing:11.172000px;}
.wscf{word-spacing:11.229000px;}
.ws8b{word-spacing:11.286000px;}
.ws23{word-spacing:11.400000px;}
.wsee{word-spacing:11.457000px;}
.ws9c{word-spacing:11.628000px;}
.ws54{word-spacing:11.799000px;}
.wsc6{word-spacing:11.856000px;}
.wsfa{word-spacing:11.913000px;}
.ws7f{word-spacing:11.970000px;}
.ws101{word-spacing:12.075000px;}
.ws8f{word-spacing:12.084000px;}
.ws6f{word-spacing:12.141000px;}
.wsc5{word-spacing:12.255000px;}
.ws61{word-spacing:12.369000px;}
.wsa4{word-spacing:12.540000px;}
.ws1b{word-spacing:12.597000px;}
.ws2f{word-spacing:12.711000px;}
.ws49{word-spacing:12.768000px;}
.wsb{word-spacing:12.825000px;}
.wsec{word-spacing:12.882000px;}
.ws28{word-spacing:12.996000px;}
.ws35{word-spacing:13.053000px;}
.ws10{word-spacing:13.110000px;}
.ws68{word-spacing:13.167000px;}
.wsb4{word-spacing:13.281000px;}
.wsbf{word-spacing:13.338000px;}
.ws2c{word-spacing:13.395000px;}
.ws88{word-spacing:13.566000px;}
.ws3f{word-spacing:13.680000px;}
.ws7b{word-spacing:13.794000px;}
.ws14{word-spacing:13.908000px;}
.ws30{word-spacing:13.965000px;}
.wsd4{word-spacing:14.022000px;}
.ws4e{word-spacing:14.079000px;}
.wsce{word-spacing:14.307000px;}
.wsfc{word-spacing:14.364000px;}
.ws16{word-spacing:14.535000px;}
.wseb{word-spacing:14.592000px;}
.wscb{word-spacing:14.706000px;}
.ws1a{word-spacing:14.877000px;}
.wsd3{word-spacing:15.048000px;}
.ws102{word-spacing:15.105000px;}
.ws7d{word-spacing:15.333000px;}
.ws4d{word-spacing:15.447000px;}
.ws55{word-spacing:15.504000px;}
.wsca{word-spacing:15.561000px;}
.ws8c{word-spacing:15.618000px;}
.ws81{word-spacing:15.675000px;}
.ws9{word-spacing:15.732000px;}
.ws2d{word-spacing:15.846000px;}
.ws71{word-spacing:15.960000px;}
.ws33{word-spacing:16.017000px;}
.ws18{word-spacing:16.302000px;}
.wse4{word-spacing:16.416000px;}
.ws6e{word-spacing:16.473000px;}
.wsb7{word-spacing:16.587000px;}
.wsef{word-spacing:16.644000px;}
.wsed{word-spacing:16.701000px;}
.wsf8{word-spacing:16.758000px;}
.wsc0{word-spacing:16.986000px;}
.ws83{word-spacing:17.043000px;}
.ws7e{word-spacing:17.157000px;}
.ws7{word-spacing:17.271000px;}
.ws103{word-spacing:17.328000px;}
.wsbd{word-spacing:17.385000px;}
.ws31{word-spacing:17.499000px;}
.wse{word-spacing:17.556000px;}
.ws24{word-spacing:17.613000px;}
.ws32{word-spacing:17.841000px;}
.ws12{word-spacing:17.898000px;}
.wsf7{word-spacing:18.012000px;}
.ws5f{word-spacing:18.069000px;}
.ws9f{word-spacing:18.126000px;}
.wsa{word-spacing:18.183000px;}
.wse3{word-spacing:18.240000px;}
.ws4c{word-spacing:18.354000px;}
.ws5a{word-spacing:18.411000px;}
.ws9d{word-spacing:18.525000px;}
.wsbc{word-spacing:18.753000px;}
.ws29{word-spacing:18.924000px;}
.ws52{word-spacing:18.981000px;}
.wsc4{word-spacing:19.038000px;}
.ws82{word-spacing:19.209000px;}
.ws59{word-spacing:19.437000px;}
.wsc7{word-spacing:19.494000px;}
.wsf5{word-spacing:19.665000px;}
.ws37{word-spacing:19.836000px;}
.wsd7{word-spacing:19.893000px;}
.wse8{word-spacing:19.950000px;}
.wsdd{word-spacing:20.121000px;}
.ws65{word-spacing:20.178000px;}
.ws2a{word-spacing:20.235000px;}
.ws25{word-spacing:20.292000px;}
.ws62{word-spacing:20.349000px;}
.ws6{word-spacing:20.520000px;}
.ws9b{word-spacing:20.691000px;}
.ws100{word-spacing:20.748000px;}
.ws5{word-spacing:20.862000px;}
.wsea{word-spacing:21.204000px;}
.wse6{word-spacing:21.375000px;}
.wsc8{word-spacing:21.432000px;}
.ws4{word-spacing:21.603000px;}
.ws66{word-spacing:22.116000px;}
.ws5e{word-spacing:22.344000px;}
.ws89{word-spacing:22.572000px;}
.ws78{word-spacing:22.857000px;}
.wsf2{word-spacing:22.971000px;}
.ws93{word-spacing:23.142000px;}
.ws99{word-spacing:23.598000px;}
.ws44{word-spacing:23.883000px;}
.wsa7{word-spacing:24.852000px;}
.wse2{word-spacing:25.707000px;}
.ws47{word-spacing:25.992000px;}
.wsa8{word-spacing:26.220000px;}
.ws41{word-spacing:26.562000px;}
.wsda{word-spacing:29.640000px;}
.wse1{word-spacing:32.034000px;}
.ws9a{word-spacing:33.402000px;}
.wsb5{word-spacing:41.496000px;}
.ws4a{word-spacing:41.838000px;}
.wsba{word-spacing:84.915000px;}
.wsb9{word-spacing:85.455000px;}
.wsbb{word-spacing:88.920000px;}
.wsb0{word-spacing:168.885000px;}
.wsac{word-spacing:173.340000px;}
.wsae{word-spacing:268.020000px;}
.wsaa{word-spacing:304.560000px;}
.wsaf{word-spacing:367.065000px;}
.wsab{word-spacing:377.491200px;}
.wsad{word-spacing:445.815000px;}
.ws6d{word-spacing:1500.639600px;}
._a{margin-left:-2834.792035px;}
._12{margin-left:-37.962000px;}
._b{margin-left:-33.402000px;}
._0{margin-left:-30.381000px;}
._1{margin-left:-28.842000px;}
._3{margin-left:-27.540000px;}
._11{margin-left:-26.220000px;}
._10{margin-left:-24.111000px;}
._e{margin-left:-22.800000px;}
._f{margin-left:-21.546000px;}
._c{margin-left:-20.463000px;}
._6{margin-left:-18.468000px;}
._8{margin-left:-17.202125px;}
._d{margin-left:-14.877000px;}
._25{margin-left:-12.510000px;}
._4{margin-left:-9.906000px;}
._5a{margin-left:-7.444200px;}
._58{margin-left:-5.890200px;}
._7{margin-left:-3.762965px;}
._59{margin-left:-2.497735px;}
._5{margin-left:-1.404000px;}
._2{width:1.290000px;}
._5b{width:2.595000px;}
._5c{width:6.795000px;}
._5d{width:9.135000px;}
._3f{width:12.510000px;}
._42{width:83.025000px;}
._40{width:96.525000px;}
._48{width:102.105000px;}
._2b{width:104.670000px;}
._46{width:116.820000px;}
._29{width:122.175000px;}
._41{width:126.225000px;}
._53{width:127.710000px;}
._43{width:128.970000px;}
._49{width:132.930000px;}
._35{width:136.035000px;}
._54{width:141.075000px;}
._56{width:146.970000px;}
._4e{width:151.155000px;}
._34{width:154.395000px;}
._27{width:157.095000px;}
._32{width:161.055000px;}
._50{width:163.980000px;}
._28{width:167.085000px;}
._57{width:172.440000px;}
._2e{width:181.395000px;}
._4a{width:182.430000px;}
._37{width:183.870000px;}
._22{width:185.850000px;}
._4c{width:190.260000px;}
._38{width:193.590000px;}
._44{width:197.505000px;}
._45{width:207.450000px;}
._4d{width:211.230000px;}
._47{width:213.705000px;}
._3e{width:216.045000px;}
._3b{width:221.085000px;}
._39{width:231.075000px;}
._51{width:232.785000px;}
._52{width:244.980000px;}
._55{width:255.510000px;}
._2f{width:265.005000px;}
._20{width:266.940000px;}
._26{width:268.065000px;}
._36{width:280.530000px;}
._1f{width:285.390000px;}
._3a{width:290.025000px;}
._18{width:317.025000px;}
._4f{width:322.605000px;}
._30{width:329.535000px;}
._4b{width:331.965000px;}
._19{width:333.045000px;}
._2a{width:344.565000px;}
._1d{width:355.500000px;}
._1c{width:360.540000px;}
._1b{width:370.530000px;}
._2d{width:379.575000px;}
._2c{width:380.610000px;}
._1e{width:384.570000px;}
._14{width:390.510000px;}
._16{width:396.990000px;}
._3c{width:405.630000px;}
._23{width:410.490000px;}
._13{width:413.100000px;}
._33{width:417.105000px;}
._17{width:420.480000px;}
._1a{width:422.010000px;}
._3d{width:442.125000px;}
._24{width:447.030000px;}
._21{width:460.530000px;}
._31{width:558.990000px;}
._15{width:847.620000px;}
._9{width:1519.669448px;}
.fc1{color:rgb(216,141,23);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.000000px;}
.fs6{font-size:33.750000px;}
.fs7{font-size:39.000000px;}
.fs5{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:52.500000px;}
.fs2{font-size:57.000000px;}
.fs9{font-size:58.290600px;}
.fsa{font-size:58.500000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:69.000000px;}
.fs4{font-size:90.000000px;}
.fs8{font-size:134.391600px;}
.y0{bottom:0.000000px;}
.y4c{bottom:27.852600px;}
.y1e{bottom:61.833150px;}
.y4f{bottom:71.242800px;}
.y4e{bottom:71.256450px;}
.y1d{bottom:74.586150px;}
.y1{bottom:84.224850px;}
.y1c{bottom:87.339150px;}
.y1bb{bottom:120.133650px;}
.y107{bottom:120.949350px;}
.y10d{bottom:120.963600px;}
.y5{bottom:121.222800px;}
.y155{bottom:121.296900px;}
.y170{bottom:121.353900px;}
.yb4{bottom:121.396650px;}
.y82{bottom:121.578900px;}
.yd0{bottom:121.614900px;}
.y101{bottom:121.637400px;}
.ya{bottom:121.821300px;}
.y1ef{bottom:121.933275px;}
.y1ba{bottom:138.131400px;}
.y106{bottom:138.947100px;}
.y10c{bottom:138.961350px;}
.y4{bottom:139.220550px;}
.y154{bottom:139.294650px;}
.y16f{bottom:139.351650px;}
.yb3{bottom:139.394400px;}
.y1ee{bottom:139.560150px;}
.y81{bottom:139.576650px;}
.ycf{bottom:139.612650px;}
.y100{bottom:139.635150px;}
.y9{bottom:139.819050px;}
.y105{bottom:156.944850px;}
.y10b{bottom:156.959100px;}
.y1ed{bottom:157.187025px;}
.y3{bottom:157.218300px;}
.y153{bottom:157.292400px;}
.y16e{bottom:157.349400px;}
.yb2{bottom:157.392150px;}
.y80{bottom:157.574400px;}
.yce{bottom:157.610400px;}
.yff{bottom:157.632900px;}
.y8{bottom:157.816800px;}
.y1b9{bottom:165.131400px;}
.y1ec{bottom:174.813900px;}
.y104{bottom:174.942600px;}
.y10a{bottom:174.956850px;}
.y152{bottom:175.290150px;}
.y16d{bottom:175.347150px;}
.yb1{bottom:175.389900px;}
.y7f{bottom:175.572150px;}
.ycd{bottom:175.608150px;}
.yfe{bottom:175.630650px;}
.y7{bottom:175.814550px;}
.y2{bottom:184.825650px;}
.y1eb{bottom:192.440775px;}
.y103{bottom:192.940350px;}
.y109{bottom:192.954600px;}
.y151{bottom:193.287900px;}
.y16c{bottom:193.344900px;}
.yb0{bottom:193.387650px;}
.y7e{bottom:193.569900px;}
.ycc{bottom:193.605900px;}
.yfd{bottom:193.628400px;}
.y6{bottom:193.812300px;}
.y1ea{bottom:210.067650px;}
.y1b8{bottom:210.237150px;}
.y102{bottom:210.938100px;}
.y108{bottom:210.952350px;}
.y150{bottom:211.285650px;}
.y16b{bottom:211.342650px;}
.yaf{bottom:211.385400px;}
.y7d{bottom:211.567650px;}
.ycb{bottom:211.603650px;}
.yfc{bottom:211.626150px;}
.y1e9{bottom:227.694525px;}
.y1b7{bottom:228.234900px;}
.y14f{bottom:229.283400px;}
.y16a{bottom:229.340400px;}
.yae{bottom:229.383150px;}
.y7c{bottom:229.565400px;}
.yca{bottom:229.601400px;}
.yfb{bottom:229.623900px;}
.y1e8{bottom:245.321400px;}
.y1b6{bottom:246.232650px;}
.y14e{bottom:247.281150px;}
.y169{bottom:247.338150px;}
.yad{bottom:247.380900px;}
.y7b{bottom:247.563150px;}
.yc9{bottom:247.599150px;}
.yfa{bottom:247.621650px;}
.y1e7{bottom:262.948275px;}
.y13c{bottom:263.100600px;}
.y1b5{bottom:264.230400px;}
.y14d{bottom:265.278900px;}
.y168{bottom:265.335900px;}
.yac{bottom:265.378650px;}
.y7a{bottom:265.560900px;}
.yc8{bottom:265.596900px;}
.yf9{bottom:265.619400px;}
.y4a{bottom:268.009200px;}
.y13b{bottom:278.288100px;}
.y33{bottom:279.215700px;}
.y1e6{bottom:280.575150px;}
.y1b4{bottom:282.228150px;}
.y14c{bottom:283.276650px;}
.y167{bottom:283.333650px;}
.yab{bottom:283.376400px;}
.y79{bottom:283.558650px;}
.yc7{bottom:283.594650px;}
.yf8{bottom:283.617150px;}
.y49{bottom:286.006950px;}
.y13a{bottom:293.475600px;}
.y1e5{bottom:298.202025px;}
.y1b3{bottom:300.225900px;}
.y14b{bottom:301.274400px;}
.y166{bottom:301.331400px;}
.yaa{bottom:301.374150px;}
.y78{bottom:301.556400px;}
.yc6{bottom:301.592400px;}
.yf7{bottom:301.614900px;}
.y48{bottom:304.004700px;}
.y139{bottom:308.663100px;}
.y32{bottom:312.965700px;}
.y1e4{bottom:315.828900px;}
.y21a{bottom:316.646400px;}
.y1b2{bottom:318.223650px;}
.y14a{bottom:319.272150px;}
.y165{bottom:319.329150px;}
.ya9{bottom:319.371900px;}
.yc5{bottom:319.590150px;}
.yf6{bottom:319.612650px;}
.y47{bottom:322.002450px;}
.y138{bottom:323.850600px;}
.y77{bottom:328.556400px;}
.y1e3{bottom:333.455775px;}
.y219{bottom:334.273275px;}
.y242{bottom:334.359150px;}
.y1b1{bottom:336.221400px;}
.y149{bottom:337.269900px;}
.y164{bottom:337.326900px;}
.ya8{bottom:337.369650px;}
.yc4{bottom:337.587900px;}
.yf5{bottom:337.610400px;}
.y137{bottom:339.038100px;}
.y46{bottom:340.000200px;}
.y31{bottom:344.465700px;}
.y1e2{bottom:351.082650px;}
.y218{bottom:351.900150px;}
.y241{bottom:352.356900px;}
.y1b0{bottom:354.219150px;}
.y136{bottom:354.225600px;}
.y148{bottom:355.267650px;}
.y163{bottom:355.324650px;}
.ya7{bottom:355.367400px;}
.yc3{bottom:355.585650px;}
.yf4{bottom:355.608150px;}
.y45{bottom:357.997950px;}
.y30{bottom:360.215700px;}
.y76{bottom:364.556400px;}
.y1e1{bottom:368.709525px;}
.y135{bottom:369.413100px;}
.y217{bottom:369.527025px;}
.y240{bottom:370.354650px;}
.y1af{bottom:372.216900px;}
.y147{bottom:373.265400px;}
.y162{bottom:373.322400px;}
.ya6{bottom:373.365150px;}
.yc2{bottom:373.583400px;}
.yf3{bottom:373.605900px;}
.y44{bottom:375.995700px;}
.y134{bottom:384.600600px;}
.y1e0{bottom:386.336400px;}
.y216{bottom:387.153900px;}
.y23f{bottom:388.352400px;}
.y1ae{bottom:390.214650px;}
.y146{bottom:391.263150px;}
.y161{bottom:391.320150px;}
.ya5{bottom:391.362900px;}
.yc1{bottom:391.581150px;}
.yf2{bottom:391.603650px;}
.y2f{bottom:391.715700px;}
.y43{bottom:393.993450px;}
.y133{bottom:399.788100px;}
.y1df{bottom:403.963275px;}
.y215{bottom:404.780775px;}
.y23e{bottom:406.350150px;}
.y2e{bottom:407.465700px;}
.y1ad{bottom:408.212400px;}
.y145{bottom:409.260900px;}
.y160{bottom:409.317900px;}
.ya4{bottom:409.360650px;}
.yc0{bottom:409.578900px;}
.yf1{bottom:409.601400px;}
.y75{bottom:409.637400px;}
.y42{bottom:411.991200px;}
.y132{bottom:414.975600px;}
.y1de{bottom:421.590150px;}
.y214{bottom:422.407650px;}
.y2d{bottom:423.215700px;}
.y1ac{bottom:426.210150px;}
.y144{bottom:427.258650px;}
.y15f{bottom:427.315650px;}
.ybf{bottom:427.576650px;}
.yf0{bottom:427.599150px;}
.y74{bottom:427.635150px;}
.y41{bottom:429.988950px;}
.y131{bottom:430.163100px;}
.y23d{bottom:433.350150px;}
.ya3{bottom:436.360650px;}
.y2c{bottom:438.965700px;}
.y1dd{bottom:439.217025px;}
.y213{bottom:440.034525px;}
.y1ab{bottom:444.207900px;}
.y143{bottom:445.256400px;}
.y15e{bottom:445.313400px;}
.y130{bottom:445.350600px;}
.ybe{bottom:445.574400px;}
.yef{bottom:445.596900px;}
.y73{bottom:445.632900px;}
.y40{bottom:447.986700px;}
.y2b{bottom:454.715700px;}
.y1dc{bottom:456.843900px;}
.y212{bottom:457.661400px;}
.y12f{bottom:460.538100px;}
.y1aa{bottom:462.205650px;}
.y15d{bottom:463.311150px;}
.ybd{bottom:463.572150px;}
.yee{bottom:463.594650px;}
.y72{bottom:463.630650px;}
.y3f{bottom:465.984450px;}
.y2a{bottom:470.465700px;}
.y142{bottom:472.256400px;}
.y1db{bottom:474.470775px;}
.y23c{bottom:475.209525px;}
.y211{bottom:475.288275px;}
.y12e{bottom:475.725600px;}
.y1a9{bottom:480.203400px;}
.y15c{bottom:481.308900px;}
.ybc{bottom:481.569900px;}
.yed{bottom:481.592400px;}
.y71{bottom:481.628400px;}
.y3e{bottom:483.982200px;}
.ya2{bottom:489.678150px;}
.y12d{bottom:490.913100px;}
.y1da{bottom:492.097650px;}
.y23b{bottom:492.836400px;}
.y210{bottom:492.915150px;}
.y1a8{bottom:498.201150px;}
.y15b{bottom:499.306650px;}
.ybb{bottom:499.567650px;}
.yec{bottom:499.590150px;}
.y70{bottom:499.626150px;}
.y29{bottom:501.965700px;}
.y3d{bottom:501.979950px;}
.y12c{bottom:506.100600px;}
.ya1{bottom:507.675900px;}
.y1d9{bottom:509.724525px;}
.y23a{bottom:510.463275px;}
.y20f{bottom:510.542025px;}
.y1a7{bottom:516.198900px;}
.y141{bottom:517.265400px;}
.y15a{bottom:517.304400px;}
.yba{bottom:517.565400px;}
.yeb{bottom:517.587900px;}
.y6f{bottom:517.623900px;}
.y28{bottom:517.715700px;}
.y3c{bottom:519.977700px;}
.y12b{bottom:521.288100px;}
.ya0{bottom:525.673650px;}
.y1d8{bottom:527.351400px;}
.y239{bottom:528.090150px;}
.y20e{bottom:528.168900px;}
.y27{bottom:533.465700px;}
.y1a6{bottom:534.196650px;}
.y140{bottom:535.263150px;}
.y159{bottom:535.302150px;}
.yb9{bottom:535.563150px;}
.yea{bottom:535.585650px;}
.y6e{bottom:535.621650px;}
.y3b{bottom:537.975450px;}
.y9f{bottom:543.671400px;}
.y1d7{bottom:544.978275px;}
.y238{bottom:545.717025px;}
.y20d{bottom:545.795775px;}
.y12a{bottom:548.175600px;}
.y26{bottom:549.215700px;}
.y1a5{bottom:552.194400px;}
.y13f{bottom:553.260900px;}
.y158{bottom:553.299900px;}
.yb8{bottom:553.560900px;}
.ye9{bottom:553.583400px;}
.y6d{bottom:553.619400px;}
.y3a{bottom:555.973200px;}
.y9e{bottom:561.669150px;}
.y1d6{bottom:562.605150px;}
.y237{bottom:563.343900px;}
.y20c{bottom:563.422650px;}
.y129{bottom:563.925600px;}
.y25{bottom:564.965700px;}
.y1a4{bottom:570.192150px;}
.y13e{bottom:571.258650px;}
.y157{bottom:571.297650px;}
.yb7{bottom:571.558650px;}
.ye8{bottom:571.581150px;}
.y6c{bottom:571.617150px;}
.y39{bottom:573.970950px;}
.y9d{bottom:579.666900px;}
.y1d5{bottom:580.232025px;}
.y24{bottom:580.715700px;}
.y236{bottom:580.970775px;}
.y20b{bottom:581.049525px;}
.y1a3{bottom:588.189900px;}
.y13d{bottom:589.256400px;}
.y156{bottom:589.295400px;}
.yb6{bottom:589.556400px;}
.ye7{bottom:589.578900px;}
.y6b{bottom:589.614900px;}
.y38{bottom:591.968700px;}
.y128{bottom:592.087650px;}
.y23{bottom:596.465700px;}
.y9c{bottom:597.664650px;}
.y1d4{bottom:597.858900px;}
.y235{bottom:598.597650px;}
.y20a{bottom:598.676400px;}
.y1a2{bottom:606.187650px;}
.ye6{bottom:607.576650px;}
.y6a{bottom:607.612650px;}
.y127{bottom:607.837650px;}
.y37{bottom:609.966450px;}
.y1d3{bottom:615.485775px;}
.y9b{bottom:615.662400px;}
.y234{bottom:616.224525px;}
.y209{bottom:616.303275px;}
.yb5{bottom:616.556400px;}
.y1a1{bottom:624.185400px;}
.ye5{bottom:625.574400px;}
.y69{bottom:625.610400px;}
.y36{bottom:627.964200px;}
.y22{bottom:627.965700px;}
.y1d2{bottom:633.112650px;}
.y9a{bottom:633.660150px;}
.y233{bottom:633.851400px;}
.y208{bottom:633.930150px;}
.y1a0{bottom:642.183150px;}
.ye4{bottom:643.572150px;}
.y68{bottom:643.608150px;}
.y21{bottom:643.715700px;}
.y188{bottom:645.918750px;}
.y35{bottom:645.961950px;}
.y1d1{bottom:650.739525px;}
.y232{bottom:651.478275px;}
.y207{bottom:651.557025px;}
.y99{bottom:651.657900px;}
.y126{bottom:656.662650px;}
.y20{bottom:659.465700px;}
.y19f{bottom:660.180900px;}
.y187{bottom:661.106250px;}
.ye3{bottom:661.569900px;}
.y67{bottom:661.605900px;}
.y1d0{bottom:668.366400px;}
.y231{bottom:669.105150px;}
.y206{bottom:669.183900px;}
.y98{bottom:669.655650px;}
.y125{bottom:672.131400px;}
.y34{bottom:672.965700px;}
.y1f{bottom:675.215700px;}
.y186{bottom:676.293750px;}
.y19e{bottom:678.178650px;}
.ye2{bottom:679.567650px;}
.y66{bottom:679.603650px;}
.y1cf{bottom:685.993275px;}
.y230{bottom:686.732025px;}
.y205{bottom:686.810775px;}
.y124{bottom:687.318900px;}
.y97{bottom:687.653400px;}
.y185{bottom:691.481250px;}
.y19d{bottom:696.176400px;}
.ye1{bottom:697.565400px;}
.y65{bottom:697.601400px;}
.y123{bottom:702.506400px;}
.y1ce{bottom:703.620150px;}
.y22f{bottom:704.358900px;}
.y204{bottom:704.437650px;}
.y96{bottom:705.651150px;}
.y184{bottom:706.668750px;}
.y19c{bottom:714.174150px;}
.ye0{bottom:715.563150px;}
.y64{bottom:715.599150px;}
.y122{bottom:717.693900px;}
.y1cd{bottom:721.247025px;}
.y183{bottom:721.856250px;}
.y22e{bottom:721.985775px;}
.y203{bottom:722.064525px;}
.y95{bottom:723.648900px;}
.y19b{bottom:732.171900px;}
.y121{bottom:732.881400px;}
.ydf{bottom:733.560900px;}
.y63{bottom:733.596900px;}
.y182{bottom:737.043750px;}
.y1cc{bottom:738.873900px;}
.y22d{bottom:739.612650px;}
.y202{bottom:739.691400px;}
.y94{bottom:741.646650px;}
.y120{bottom:748.068900px;}
.y19a{bottom:750.169650px;}
.yde{bottom:751.558650px;}
.y62{bottom:751.594650px;}
.y181{bottom:752.231250px;}
.y1cb{bottom:756.500775px;}
.y22c{bottom:757.239525px;}
.y201{bottom:757.318275px;}
.y1b{bottom:757.816800px;}
.y93{bottom:759.644400px;}
.y11f{bottom:763.256400px;}
.y180{bottom:767.418750px;}
.y199{bottom:768.167400px;}
.ydd{bottom:769.556400px;}
.y61{bottom:769.592400px;}
.y1a{bottom:772.816800px;}
.y1ca{bottom:774.127650px;}
.y22b{bottom:774.866400px;}
.y200{bottom:774.945150px;}
.y92{bottom:777.642150px;}
.y11e{bottom:778.443900px;}
.y17f{bottom:782.606250px;}
.y198{bottom:786.165150px;}
.y60{bottom:787.590150px;}
.y19{bottom:787.816800px;}
.y1c9{bottom:791.754525px;}
.y22a{bottom:792.493275px;}
.y1ff{bottom:792.572025px;}
.y11d{bottom:793.631400px;}
.y91{bottom:795.639900px;}
.ydc{bottom:796.556400px;}
.y17e{bottom:797.793750px;}
.y18{bottom:802.816800px;}
.y197{bottom:804.162900px;}
.y5f{bottom:805.587900px;}
.y11c{bottom:808.818900px;}
.y1c8{bottom:809.381400px;}
.y229{bottom:810.120150px;}
.y1fe{bottom:810.198900px;}
.y17d{bottom:812.981250px;}
.y90{bottom:813.637650px;}
.y17{bottom:817.816800px;}
.y196{bottom:822.160650px;}
.y5e{bottom:823.585650px;}
.y11b{bottom:824.006400px;}
.y228{bottom:827.747025px;}
.y1fd{bottom:827.825775px;}
.y17c{bottom:828.168750px;}
.y8f{bottom:831.635400px;}
.y16{bottom:832.816800px;}
.y1c7{bottom:835.654650px;}
.y11a{bottom:839.193900px;}
.y195{bottom:840.158400px;}
.ydb{bottom:841.569900px;}
.y5d{bottom:841.583400px;}
.y17b{bottom:843.356250px;}
.y227{bottom:845.373900px;}
.y1fc{bottom:845.452650px;}
.y15{bottom:847.816800px;}
.y8e{bottom:849.633150px;}
.y119{bottom:854.381400px;}
.y194{bottom:858.156150px;}
.y17a{bottom:858.543750px;}
.yda{bottom:859.567650px;}
.y5c{bottom:859.581150px;}
.y14{bottom:862.816800px;}
.y226{bottom:863.000775px;}
.y1fb{bottom:863.079525px;}
.y8d{bottom:867.630900px;}
.y118{bottom:869.568900px;}
.y179{bottom:873.731250px;}
.y1c6{bottom:876.153150px;}
.y193{bottom:876.153900px;}
.yd9{bottom:877.565400px;}
.y5b{bottom:877.578900px;}
.y13{bottom:877.816800px;}
.y225{bottom:880.627650px;}
.y1fa{bottom:880.706400px;}
.y117{bottom:884.756400px;}
.y8c{bottom:885.628650px;}
.y178{bottom:888.918750px;}
.y12{bottom:892.816800px;}
.y1c5{bottom:894.150900px;}
.y192{bottom:894.151650px;}
.yd8{bottom:895.563150px;}
.y5a{bottom:895.576650px;}
.y224{bottom:898.254525px;}
.y1f9{bottom:898.333275px;}
.y116{bottom:899.943900px;}
.y8b{bottom:903.626400px;}
.y177{bottom:904.106250px;}
.y11{bottom:907.816800px;}
.y1c4{bottom:912.148650px;}
.y191{bottom:912.149400px;}
.yd7{bottom:913.560900px;}
.y59{bottom:913.574400px;}
.y115{bottom:915.131400px;}
.y223{bottom:915.881400px;}
.y1f8{bottom:915.960150px;}
.y176{bottom:919.293750px;}
.y8a{bottom:921.624150px;}
.y10{bottom:922.816800px;}
.y1c3{bottom:930.146400px;}
.y190{bottom:930.147150px;}
.y114{bottom:930.318900px;}
.yd6{bottom:931.558650px;}
.y58{bottom:931.572150px;}
.y222{bottom:933.508275px;}
.y1f7{bottom:933.587025px;}
.y89{bottom:939.621900px;}
.y173{bottom:940.331250px;}
.yf{bottom:941.570550px;}
.y113{bottom:945.506400px;}
.y1c2{bottom:948.144150px;}
.y18f{bottom:948.144900px;}
.yd5{bottom:949.556400px;}
.y57{bottom:949.569900px;}
.y221{bottom:951.135150px;}
.y1f6{bottom:951.213900px;}
.y172{bottom:956.081250px;}
.y88{bottom:957.619650px;}
.ye{bottom:959.570550px;}
.y112{bottom:960.693900px;}
.y1c1{bottom:966.141900px;}
.y18e{bottom:966.142650px;}
.y56{bottom:967.567650px;}
.y220{bottom:968.762025px;}
.y1f5{bottom:968.840775px;}
.y87{bottom:975.617400px;}
.yd4{bottom:976.556400px;}
.y175{bottom:982.968750px;}
.y1c0{bottom:984.139650px;}
.y18d{bottom:984.140400px;}
.y55{bottom:985.565400px;}
.y21f{bottom:986.388900px;}
.y1f4{bottom:986.467650px;}
.y110{bottom:987.581400px;}
.yd{bottom:988.070550px;}
.y86{bottom:993.615150px;}
.y174{bottom:998.718750px;}
.y1bf{bottom:1002.137400px;}
.y18c{bottom:1002.138150px;}
.y54{bottom:1003.563150px;}
.y21e{bottom:1004.015775px;}
.y1f3{bottom:1004.094525px;}
.y85{bottom:1011.612900px;}
.y111{bottom:1014.468900px;}
.yc{bottom:1015.070550px;}
.y1be{bottom:1020.135150px;}
.y18b{bottom:1020.135900px;}
.y53{bottom:1021.560900px;}
.yd3{bottom:1021.616400px;}
.y21d{bottom:1021.642650px;}
.y1f2{bottom:1021.721400px;}
.y171{bottom:1026.881400px;}
.y84{bottom:1029.610650px;}
.y1bd{bottom:1038.132900px;}
.y18a{bottom:1038.133650px;}
.y21c{bottom:1039.269525px;}
.y1f1{bottom:1039.348275px;}
.y52{bottom:1039.558650px;}
.yd2{bottom:1039.614150px;}
.y10f{bottom:1042.631400px;}
.yb{bottom:1055.568900px;}
.y1bc{bottom:1056.130650px;}
.y189{bottom:1056.131400px;}
.y83{bottom:1056.610650px;}
.y21b{bottom:1056.896400px;}
.y1f0{bottom:1056.975150px;}
.y51{bottom:1057.556400px;}
.yd1{bottom:1057.611900px;}
.y10e{bottom:1058.381400px;}
.y4b{bottom:1070.470350px;}
.y4d{bottom:1098.322950px;}
.y50{bottom:1102.324800px;}
.h8{height:25.717500px;}
.h9{height:29.718000px;}
.h2{height:34.080000px;}
.ha{height:34.290000px;}
.hf{height:35.415000px;}
.h10{height:37.642500px;}
.h4{height:40.869000px;}
.hb{height:43.434000px;}
.he{height:44.577000px;}
.h5{height:45.000000px;}
.h3{height:52.578000px;}
.h7{height:53.730000px;}
.hc{height:63.780000px;}
.h6{height:68.580000px;}
.hd{height:101.600050px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:710.079000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:85.719750px;}
.x14{left:94.687650px;}
.x1{left:98.390550px;}
.xb{left:99.969750px;}
.x19{left:107.401800px;}
.xf{left:112.640550px;}
.x1b{left:120.886800px;}
.x15{left:171.763050px;}
.x13{left:186.870150px;}
.x7{left:199.371750px;}
.x12{left:203.762550px;}
.x17{left:316.921800px;}
.x6{left:338.371650px;}
.x4{left:345.836700px;}
.x5{left:435.175950px;}
.xc{left:453.727500px;}
.x2{left:466.396800px;}
.xd{left:467.977500px;}
.x1a{left:476.223750px;}
.x10{left:480.662700px;}
.x1c{left:488.898675px;}
.x3{left:493.578450px;}
.x16{left:501.421800px;}
.xa{left:552.773700px;}
.x11{left:557.755050px;}
.x18{left:639.796800px;}
.xe{left:734.069700px;}
.x8{left:774.506850px;}
@media print{
.v3{vertical-align:-63.776000pt;}
.v2{vertical-align:-13.320000pt;}
.v4{vertical-align:-11.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.000000pt;}
.v1{vertical-align:17.760000pt;}
.lsb{letter-spacing:-1.400000pt;}
.lsa{letter-spacing:-0.933333pt;}
.ls9{letter-spacing:-0.760000pt;}
.lsc{letter-spacing:-0.700000pt;}
.ls3{letter-spacing:-0.600000pt;}
.ls8{letter-spacing:-0.506667pt;}
.ls7{letter-spacing:-0.253333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.080533pt;}
.ls5{letter-spacing:0.126933pt;}
.ls4{letter-spacing:0.760000pt;}
.ls2{letter-spacing:3.733333pt;}
.ws2{word-spacing:-33.209658pt;}
.ws0{word-spacing:-11.120000pt;}
.ws1{word-spacing:-8.340000pt;}
.wsa9{word-spacing:-6.672000pt;}
.ws3c{word-spacing:-1.976000pt;}
.ws51{word-spacing:-1.824000pt;}
.ws79{word-spacing:-1.722667pt;}
.wsa1{word-spacing:-1.266667pt;}
.wsdf{word-spacing:-0.960000pt;}
.ws36{word-spacing:-0.760000pt;}
.ws43{word-spacing:-0.253333pt;}
.ws86{word-spacing:-0.202667pt;}
.wsc{word-spacing:-0.160000pt;}
.ws60{word-spacing:-0.152000pt;}
.wsa2{word-spacing:-0.101333pt;}
.ws3{word-spacing:0.000000pt;}
.ws94{word-spacing:0.101333pt;}
.ws38{word-spacing:0.304000pt;}
.ws84{word-spacing:0.709333pt;}
.ws90{word-spacing:0.760000pt;}
.wse0{word-spacing:0.861333pt;}
.ws58{word-spacing:0.912000pt;}
.wsf3{word-spacing:1.013333pt;}
.ws45{word-spacing:1.064000pt;}
.ws75{word-spacing:1.469333pt;}
.ws4f{word-spacing:1.520000pt;}
.wsf0{word-spacing:1.773333pt;}
.wsde{word-spacing:1.800000pt;}
.wsf4{word-spacing:2.026667pt;}
.ws4b{word-spacing:2.128000pt;}
.ws48{word-spacing:2.280000pt;}
.wsb8{word-spacing:2.320000pt;}
.ws76{word-spacing:2.381333pt;}
.wsf9{word-spacing:2.482667pt;}
.ws21{word-spacing:2.584000pt;}
.wsb3{word-spacing:3.040000pt;}
.ws50{word-spacing:3.090667pt;}
.ws95{word-spacing:3.293333pt;}
.ws74{word-spacing:3.344000pt;}
.wsfd{word-spacing:3.445333pt;}
.ws15{word-spacing:3.496000pt;}
.wsf1{word-spacing:3.597333pt;}
.wsfb{word-spacing:3.648000pt;}
.wsc2{word-spacing:3.749333pt;}
.wsf6{word-spacing:3.850667pt;}
.wsdb{word-spacing:3.901333pt;}
.ws8a{word-spacing:4.205333pt;}
.ws2b{word-spacing:4.306667pt;}
.ws1d{word-spacing:4.408000pt;}
.ws72{word-spacing:4.560000pt;}
.wsd2{word-spacing:4.610667pt;}
.ws20{word-spacing:4.661333pt;}
.wsf{word-spacing:4.762667pt;}
.wse9{word-spacing:4.864000pt;}
.ws5b{word-spacing:4.914667pt;}
.ws34{word-spacing:5.117333pt;}
.ws6b{word-spacing:5.168000pt;}
.wsd{word-spacing:5.269333pt;}
.ws63{word-spacing:5.421333pt;}
.ws98{word-spacing:5.472000pt;}
.ws91{word-spacing:5.522667pt;}
.wsd0{word-spacing:5.573333pt;}
.ws1f{word-spacing:5.624000pt;}
.ws56{word-spacing:5.674667pt;}
.ws42{word-spacing:5.725333pt;}
.ws39{word-spacing:5.776000pt;}
.wse5{word-spacing:5.826667pt;}
.wsff{word-spacing:5.928000pt;}
.wsc3{word-spacing:5.978667pt;}
.ws73{word-spacing:6.130667pt;}
.ws70{word-spacing:6.232000pt;}
.ws3a{word-spacing:6.333333pt;}
.wscc{word-spacing:6.384000pt;}
.ws46{word-spacing:6.434667pt;}
.ws87{word-spacing:6.536000pt;}
.ws80{word-spacing:6.738667pt;}
.ws11{word-spacing:6.840000pt;}
.ws26{word-spacing:6.890667pt;}
.ws77{word-spacing:6.941333pt;}
.wsd6{word-spacing:7.042667pt;}
.ws8{word-spacing:7.093333pt;}
.ws40{word-spacing:7.144000pt;}
.ws8d{word-spacing:7.194667pt;}
.ws1c{word-spacing:7.245333pt;}
.ws96{word-spacing:7.296000pt;}
.wsd1{word-spacing:7.346667pt;}
.ws3e{word-spacing:7.397333pt;}
.ws5d{word-spacing:7.498667pt;}
.ws7a{word-spacing:7.549333pt;}
.ws19{word-spacing:7.600000pt;}
.wsc9{word-spacing:7.650667pt;}
.wsa6{word-spacing:7.701333pt;}
.ws9e{word-spacing:7.752000pt;}
.wsc1{word-spacing:7.802667pt;}
.ws97{word-spacing:7.904000pt;}
.wsa5{word-spacing:7.954667pt;}
.wscd{word-spacing:8.005333pt;}
.ws53{word-spacing:8.056000pt;}
.ws85{word-spacing:8.106667pt;}
.ws6c{word-spacing:8.208000pt;}
.ws6a{word-spacing:8.309333pt;}
.wsb6{word-spacing:8.360000pt;}
.wsa0{word-spacing:8.410667pt;}
.wsb1{word-spacing:8.461333pt;}
.ws3d{word-spacing:8.512000pt;}
.ws3b{word-spacing:8.562667pt;}
.ws57{word-spacing:8.613333pt;}
.ws7c{word-spacing:8.664000pt;}
.ws8e{word-spacing:8.714667pt;}
.ws5c{word-spacing:8.765333pt;}
.ws13{word-spacing:8.816000pt;}
.wsa3{word-spacing:8.917333pt;}
.wsb2{word-spacing:8.968000pt;}
.wsdc{word-spacing:9.018667pt;}
.ws64{word-spacing:9.120000pt;}
.wsbe{word-spacing:9.170667pt;}
.wsd5{word-spacing:9.272000pt;}
.ws22{word-spacing:9.322667pt;}
.wsd8{word-spacing:9.373333pt;}
.ws1e{word-spacing:9.424000pt;}
.ws69{word-spacing:9.474667pt;}
.wse7{word-spacing:9.525333pt;}
.ws27{word-spacing:9.576000pt;}
.ws17{word-spacing:9.626667pt;}
.wsfe{word-spacing:9.677333pt;}
.ws2e{word-spacing:9.728000pt;}
.ws92{word-spacing:9.778667pt;}
.ws67{word-spacing:9.880000pt;}
.wsd9{word-spacing:9.930667pt;}
.wscf{word-spacing:9.981333pt;}
.ws8b{word-spacing:10.032000pt;}
.ws23{word-spacing:10.133333pt;}
.wsee{word-spacing:10.184000pt;}
.ws9c{word-spacing:10.336000pt;}
.ws54{word-spacing:10.488000pt;}
.wsc6{word-spacing:10.538667pt;}
.wsfa{word-spacing:10.589333pt;}
.ws7f{word-spacing:10.640000pt;}
.ws101{word-spacing:10.733333pt;}
.ws8f{word-spacing:10.741333pt;}
.ws6f{word-spacing:10.792000pt;}
.wsc5{word-spacing:10.893333pt;}
.ws61{word-spacing:10.994667pt;}
.wsa4{word-spacing:11.146667pt;}
.ws1b{word-spacing:11.197333pt;}
.ws2f{word-spacing:11.298667pt;}
.ws49{word-spacing:11.349333pt;}
.wsb{word-spacing:11.400000pt;}
.wsec{word-spacing:11.450667pt;}
.ws28{word-spacing:11.552000pt;}
.ws35{word-spacing:11.602667pt;}
.ws10{word-spacing:11.653333pt;}
.ws68{word-spacing:11.704000pt;}
.wsb4{word-spacing:11.805333pt;}
.wsbf{word-spacing:11.856000pt;}
.ws2c{word-spacing:11.906667pt;}
.ws88{word-spacing:12.058667pt;}
.ws3f{word-spacing:12.160000pt;}
.ws7b{word-spacing:12.261333pt;}
.ws14{word-spacing:12.362667pt;}
.ws30{word-spacing:12.413333pt;}
.wsd4{word-spacing:12.464000pt;}
.ws4e{word-spacing:12.514667pt;}
.wsce{word-spacing:12.717333pt;}
.wsfc{word-spacing:12.768000pt;}
.ws16{word-spacing:12.920000pt;}
.wseb{word-spacing:12.970667pt;}
.wscb{word-spacing:13.072000pt;}
.ws1a{word-spacing:13.224000pt;}
.wsd3{word-spacing:13.376000pt;}
.ws102{word-spacing:13.426667pt;}
.ws7d{word-spacing:13.629333pt;}
.ws4d{word-spacing:13.730667pt;}
.ws55{word-spacing:13.781333pt;}
.wsca{word-spacing:13.832000pt;}
.ws8c{word-spacing:13.882667pt;}
.ws81{word-spacing:13.933333pt;}
.ws9{word-spacing:13.984000pt;}
.ws2d{word-spacing:14.085333pt;}
.ws71{word-spacing:14.186667pt;}
.ws33{word-spacing:14.237333pt;}
.ws18{word-spacing:14.490667pt;}
.wse4{word-spacing:14.592000pt;}
.ws6e{word-spacing:14.642667pt;}
.wsb7{word-spacing:14.744000pt;}
.wsef{word-spacing:14.794667pt;}
.wsed{word-spacing:14.845333pt;}
.wsf8{word-spacing:14.896000pt;}
.wsc0{word-spacing:15.098667pt;}
.ws83{word-spacing:15.149333pt;}
.ws7e{word-spacing:15.250667pt;}
.ws7{word-spacing:15.352000pt;}
.ws103{word-spacing:15.402667pt;}
.wsbd{word-spacing:15.453333pt;}
.ws31{word-spacing:15.554667pt;}
.wse{word-spacing:15.605333pt;}
.ws24{word-spacing:15.656000pt;}
.ws32{word-spacing:15.858667pt;}
.ws12{word-spacing:15.909333pt;}
.wsf7{word-spacing:16.010667pt;}
.ws5f{word-spacing:16.061333pt;}
.ws9f{word-spacing:16.112000pt;}
.wsa{word-spacing:16.162667pt;}
.wse3{word-spacing:16.213333pt;}
.ws4c{word-spacing:16.314667pt;}
.ws5a{word-spacing:16.365333pt;}
.ws9d{word-spacing:16.466667pt;}
.wsbc{word-spacing:16.669333pt;}
.ws29{word-spacing:16.821333pt;}
.ws52{word-spacing:16.872000pt;}
.wsc4{word-spacing:16.922667pt;}
.ws82{word-spacing:17.074667pt;}
.ws59{word-spacing:17.277333pt;}
.wsc7{word-spacing:17.328000pt;}
.wsf5{word-spacing:17.480000pt;}
.ws37{word-spacing:17.632000pt;}
.wsd7{word-spacing:17.682667pt;}
.wse8{word-spacing:17.733333pt;}
.wsdd{word-spacing:17.885333pt;}
.ws65{word-spacing:17.936000pt;}
.ws2a{word-spacing:17.986667pt;}
.ws25{word-spacing:18.037333pt;}
.ws62{word-spacing:18.088000pt;}
.ws6{word-spacing:18.240000pt;}
.ws9b{word-spacing:18.392000pt;}
.ws100{word-spacing:18.442667pt;}
.ws5{word-spacing:18.544000pt;}
.wsea{word-spacing:18.848000pt;}
.wse6{word-spacing:19.000000pt;}
.wsc8{word-spacing:19.050667pt;}
.ws4{word-spacing:19.202667pt;}
.ws66{word-spacing:19.658667pt;}
.ws5e{word-spacing:19.861333pt;}
.ws89{word-spacing:20.064000pt;}
.ws78{word-spacing:20.317333pt;}
.wsf2{word-spacing:20.418667pt;}
.ws93{word-spacing:20.570667pt;}
.ws99{word-spacing:20.976000pt;}
.ws44{word-spacing:21.229333pt;}
.wsa7{word-spacing:22.090667pt;}
.wse2{word-spacing:22.850667pt;}
.ws47{word-spacing:23.104000pt;}
.wsa8{word-spacing:23.306667pt;}
.ws41{word-spacing:23.610667pt;}
.wsda{word-spacing:26.346667pt;}
.wse1{word-spacing:28.474667pt;}
.ws9a{word-spacing:29.690667pt;}
.wsb5{word-spacing:36.885333pt;}
.ws4a{word-spacing:37.189333pt;}
.wsba{word-spacing:75.480000pt;}
.wsb9{word-spacing:75.960000pt;}
.wsbb{word-spacing:79.040000pt;}
.wsb0{word-spacing:150.120000pt;}
.wsac{word-spacing:154.080000pt;}
.wsae{word-spacing:238.240000pt;}
.wsaa{word-spacing:270.720000pt;}
.wsaf{word-spacing:326.280000pt;}
.wsab{word-spacing:335.547733pt;}
.wsad{word-spacing:396.280000pt;}
.ws6d{word-spacing:1333.901867pt;}
._a{margin-left:-2519.815142pt;}
._12{margin-left:-33.744000pt;}
._b{margin-left:-29.690667pt;}
._0{margin-left:-27.005333pt;}
._1{margin-left:-25.637333pt;}
._3{margin-left:-24.480000pt;}
._11{margin-left:-23.306667pt;}
._10{margin-left:-21.432000pt;}
._e{margin-left:-20.266667pt;}
._f{margin-left:-19.152000pt;}
._c{margin-left:-18.189333pt;}
._6{margin-left:-16.416000pt;}
._8{margin-left:-15.290778pt;}
._d{margin-left:-13.224000pt;}
._25{margin-left:-11.120000pt;}
._4{margin-left:-8.805333pt;}
._5a{margin-left:-6.617067pt;}
._58{margin-left:-5.235733pt;}
._7{margin-left:-3.344858pt;}
._59{margin-left:-2.220209pt;}
._5{margin-left:-1.248000pt;}
._2{width:1.146667pt;}
._5b{width:2.306667pt;}
._5c{width:6.040000pt;}
._5d{width:8.120000pt;}
._3f{width:11.120000pt;}
._42{width:73.800000pt;}
._40{width:85.800000pt;}
._48{width:90.760000pt;}
._2b{width:93.040000pt;}
._46{width:103.840000pt;}
._29{width:108.600000pt;}
._41{width:112.200000pt;}
._53{width:113.520000pt;}
._43{width:114.640000pt;}
._49{width:118.160000pt;}
._35{width:120.920000pt;}
._54{width:125.400000pt;}
._56{width:130.640000pt;}
._4e{width:134.360000pt;}
._34{width:137.240000pt;}
._27{width:139.640000pt;}
._32{width:143.160000pt;}
._50{width:145.760000pt;}
._28{width:148.520000pt;}
._57{width:153.280000pt;}
._2e{width:161.240000pt;}
._4a{width:162.160000pt;}
._37{width:163.440000pt;}
._22{width:165.200000pt;}
._4c{width:169.120000pt;}
._38{width:172.080000pt;}
._44{width:175.560000pt;}
._45{width:184.400000pt;}
._4d{width:187.760000pt;}
._47{width:189.960000pt;}
._3e{width:192.040000pt;}
._3b{width:196.520000pt;}
._39{width:205.400000pt;}
._51{width:206.920000pt;}
._52{width:217.760000pt;}
._55{width:227.120000pt;}
._2f{width:235.560000pt;}
._20{width:237.280000pt;}
._26{width:238.280000pt;}
._36{width:249.360000pt;}
._1f{width:253.680000pt;}
._3a{width:257.800000pt;}
._18{width:281.800000pt;}
._4f{width:286.760000pt;}
._30{width:292.920000pt;}
._4b{width:295.080000pt;}
._19{width:296.040000pt;}
._2a{width:306.280000pt;}
._1d{width:316.000000pt;}
._1c{width:320.480000pt;}
._1b{width:329.360000pt;}
._2d{width:337.400000pt;}
._2c{width:338.320000pt;}
._1e{width:341.840000pt;}
._14{width:347.120000pt;}
._16{width:352.880000pt;}
._3c{width:360.560000pt;}
._23{width:364.880000pt;}
._13{width:367.200000pt;}
._33{width:370.760000pt;}
._17{width:373.760000pt;}
._1a{width:375.120000pt;}
._3d{width:393.000000pt;}
._24{width:397.360000pt;}
._21{width:409.360000pt;}
._31{width:496.880000pt;}
._15{width:753.440000pt;}
._9{width:1350.817287pt;}
.fsb{font-size:24.000000pt;}
.fs6{font-size:30.000000pt;}
.fs7{font-size:34.666667pt;}
.fs5{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:46.666667pt;}
.fs2{font-size:50.666667pt;}
.fs9{font-size:51.813867pt;}
.fsa{font-size:52.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:61.333333pt;}
.fs4{font-size:80.000000pt;}
.fs8{font-size:119.459200pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:24.757867pt;}
.y1e{bottom:54.962800pt;}
.y4f{bottom:63.326933pt;}
.y4e{bottom:63.339067pt;}
.y1d{bottom:66.298800pt;}
.y1{bottom:74.866533pt;}
.y1c{bottom:77.634800pt;}
.y1bb{bottom:106.785467pt;}
.y107{bottom:107.510533pt;}
.y10d{bottom:107.523200pt;}
.y5{bottom:107.753600pt;}
.y155{bottom:107.819467pt;}
.y170{bottom:107.870133pt;}
.yb4{bottom:107.908133pt;}
.y82{bottom:108.070133pt;}
.yd0{bottom:108.102133pt;}
.y101{bottom:108.122133pt;}
.ya{bottom:108.285600pt;}
.y1ef{bottom:108.385133pt;}
.y1ba{bottom:122.783467pt;}
.y106{bottom:123.508533pt;}
.y10c{bottom:123.521200pt;}
.y4{bottom:123.751600pt;}
.y154{bottom:123.817467pt;}
.y16f{bottom:123.868133pt;}
.yb3{bottom:123.906133pt;}
.y1ee{bottom:124.053467pt;}
.y81{bottom:124.068133pt;}
.ycf{bottom:124.100133pt;}
.y100{bottom:124.120133pt;}
.y9{bottom:124.283600pt;}
.y105{bottom:139.506533pt;}
.y10b{bottom:139.519200pt;}
.y1ed{bottom:139.721800pt;}
.y3{bottom:139.749600pt;}
.y153{bottom:139.815467pt;}
.y16e{bottom:139.866133pt;}
.yb2{bottom:139.904133pt;}
.y80{bottom:140.066133pt;}
.yce{bottom:140.098133pt;}
.yff{bottom:140.118133pt;}
.y8{bottom:140.281600pt;}
.y1b9{bottom:146.783467pt;}
.y1ec{bottom:155.390133pt;}
.y104{bottom:155.504533pt;}
.y10a{bottom:155.517200pt;}
.y152{bottom:155.813467pt;}
.y16d{bottom:155.864133pt;}
.yb1{bottom:155.902133pt;}
.y7f{bottom:156.064133pt;}
.ycd{bottom:156.096133pt;}
.yfe{bottom:156.116133pt;}
.y7{bottom:156.279600pt;}
.y2{bottom:164.289467pt;}
.y1eb{bottom:171.058467pt;}
.y103{bottom:171.502533pt;}
.y109{bottom:171.515200pt;}
.y151{bottom:171.811467pt;}
.y16c{bottom:171.862133pt;}
.yb0{bottom:171.900133pt;}
.y7e{bottom:172.062133pt;}
.ycc{bottom:172.094133pt;}
.yfd{bottom:172.114133pt;}
.y6{bottom:172.277600pt;}
.y1ea{bottom:186.726800pt;}
.y1b8{bottom:186.877467pt;}
.y102{bottom:187.500533pt;}
.y108{bottom:187.513200pt;}
.y150{bottom:187.809467pt;}
.y16b{bottom:187.860133pt;}
.yaf{bottom:187.898133pt;}
.y7d{bottom:188.060133pt;}
.ycb{bottom:188.092133pt;}
.yfc{bottom:188.112133pt;}
.y1e9{bottom:202.395133pt;}
.y1b7{bottom:202.875467pt;}
.y14f{bottom:203.807467pt;}
.y16a{bottom:203.858133pt;}
.yae{bottom:203.896133pt;}
.y7c{bottom:204.058133pt;}
.yca{bottom:204.090133pt;}
.yfb{bottom:204.110133pt;}
.y1e8{bottom:218.063467pt;}
.y1b6{bottom:218.873467pt;}
.y14e{bottom:219.805467pt;}
.y169{bottom:219.856133pt;}
.yad{bottom:219.894133pt;}
.y7b{bottom:220.056133pt;}
.yc9{bottom:220.088133pt;}
.yfa{bottom:220.108133pt;}
.y1e7{bottom:233.731800pt;}
.y13c{bottom:233.867200pt;}
.y1b5{bottom:234.871467pt;}
.y14d{bottom:235.803467pt;}
.y168{bottom:235.854133pt;}
.yac{bottom:235.892133pt;}
.y7a{bottom:236.054133pt;}
.yc8{bottom:236.086133pt;}
.yf9{bottom:236.106133pt;}
.y4a{bottom:238.230400pt;}
.y13b{bottom:247.367200pt;}
.y33{bottom:248.191733pt;}
.y1e6{bottom:249.400133pt;}
.y1b4{bottom:250.869467pt;}
.y14c{bottom:251.801467pt;}
.y167{bottom:251.852133pt;}
.yab{bottom:251.890133pt;}
.y79{bottom:252.052133pt;}
.yc7{bottom:252.084133pt;}
.yf8{bottom:252.104133pt;}
.y49{bottom:254.228400pt;}
.y13a{bottom:260.867200pt;}
.y1e5{bottom:265.068467pt;}
.y1b3{bottom:266.867467pt;}
.y14b{bottom:267.799467pt;}
.y166{bottom:267.850133pt;}
.yaa{bottom:267.888133pt;}
.y78{bottom:268.050133pt;}
.yc6{bottom:268.082133pt;}
.yf7{bottom:268.102133pt;}
.y48{bottom:270.226400pt;}
.y139{bottom:274.367200pt;}
.y32{bottom:278.191733pt;}
.y1e4{bottom:280.736800pt;}
.y21a{bottom:281.463467pt;}
.y1b2{bottom:282.865467pt;}
.y14a{bottom:283.797467pt;}
.y165{bottom:283.848133pt;}
.ya9{bottom:283.886133pt;}
.yc5{bottom:284.080133pt;}
.yf6{bottom:284.100133pt;}
.y47{bottom:286.224400pt;}
.y138{bottom:287.867200pt;}
.y77{bottom:292.050133pt;}
.y1e3{bottom:296.405133pt;}
.y219{bottom:297.131800pt;}
.y242{bottom:297.208133pt;}
.y1b1{bottom:298.863467pt;}
.y149{bottom:299.795467pt;}
.y164{bottom:299.846133pt;}
.ya8{bottom:299.884133pt;}
.yc4{bottom:300.078133pt;}
.yf5{bottom:300.098133pt;}
.y137{bottom:301.367200pt;}
.y46{bottom:302.222400pt;}
.y31{bottom:306.191733pt;}
.y1e2{bottom:312.073467pt;}
.y218{bottom:312.800133pt;}
.y241{bottom:313.206133pt;}
.y1b0{bottom:314.861467pt;}
.y136{bottom:314.867200pt;}
.y148{bottom:315.793467pt;}
.y163{bottom:315.844133pt;}
.ya7{bottom:315.882133pt;}
.yc3{bottom:316.076133pt;}
.yf4{bottom:316.096133pt;}
.y45{bottom:318.220400pt;}
.y30{bottom:320.191733pt;}
.y76{bottom:324.050133pt;}
.y1e1{bottom:327.741800pt;}
.y135{bottom:328.367200pt;}
.y217{bottom:328.468467pt;}
.y240{bottom:329.204133pt;}
.y1af{bottom:330.859467pt;}
.y147{bottom:331.791467pt;}
.y162{bottom:331.842133pt;}
.ya6{bottom:331.880133pt;}
.yc2{bottom:332.074133pt;}
.yf3{bottom:332.094133pt;}
.y44{bottom:334.218400pt;}
.y134{bottom:341.867200pt;}
.y1e0{bottom:343.410133pt;}
.y216{bottom:344.136800pt;}
.y23f{bottom:345.202133pt;}
.y1ae{bottom:346.857467pt;}
.y146{bottom:347.789467pt;}
.y161{bottom:347.840133pt;}
.ya5{bottom:347.878133pt;}
.yc1{bottom:348.072133pt;}
.yf2{bottom:348.092133pt;}
.y2f{bottom:348.191733pt;}
.y43{bottom:350.216400pt;}
.y133{bottom:355.367200pt;}
.y1df{bottom:359.078467pt;}
.y215{bottom:359.805133pt;}
.y23e{bottom:361.200133pt;}
.y2e{bottom:362.191733pt;}
.y1ad{bottom:362.855467pt;}
.y145{bottom:363.787467pt;}
.y160{bottom:363.838133pt;}
.ya4{bottom:363.876133pt;}
.yc0{bottom:364.070133pt;}
.yf1{bottom:364.090133pt;}
.y75{bottom:364.122133pt;}
.y42{bottom:366.214400pt;}
.y132{bottom:368.867200pt;}
.y1de{bottom:374.746800pt;}
.y214{bottom:375.473467pt;}
.y2d{bottom:376.191733pt;}
.y1ac{bottom:378.853467pt;}
.y144{bottom:379.785467pt;}
.y15f{bottom:379.836133pt;}
.ybf{bottom:380.068133pt;}
.yf0{bottom:380.088133pt;}
.y74{bottom:380.120133pt;}
.y41{bottom:382.212400pt;}
.y131{bottom:382.367200pt;}
.y23d{bottom:385.200133pt;}
.ya3{bottom:387.876133pt;}
.y2c{bottom:390.191733pt;}
.y1dd{bottom:390.415133pt;}
.y213{bottom:391.141800pt;}
.y1ab{bottom:394.851467pt;}
.y143{bottom:395.783467pt;}
.y15e{bottom:395.834133pt;}
.y130{bottom:395.867200pt;}
.ybe{bottom:396.066133pt;}
.yef{bottom:396.086133pt;}
.y73{bottom:396.118133pt;}
.y40{bottom:398.210400pt;}
.y2b{bottom:404.191733pt;}
.y1dc{bottom:406.083467pt;}
.y212{bottom:406.810133pt;}
.y12f{bottom:409.367200pt;}
.y1aa{bottom:410.849467pt;}
.y15d{bottom:411.832133pt;}
.ybd{bottom:412.064133pt;}
.yee{bottom:412.084133pt;}
.y72{bottom:412.116133pt;}
.y3f{bottom:414.208400pt;}
.y2a{bottom:418.191733pt;}
.y142{bottom:419.783467pt;}
.y1db{bottom:421.751800pt;}
.y23c{bottom:422.408467pt;}
.y211{bottom:422.478467pt;}
.y12e{bottom:422.867200pt;}
.y1a9{bottom:426.847467pt;}
.y15c{bottom:427.830133pt;}
.ybc{bottom:428.062133pt;}
.yed{bottom:428.082133pt;}
.y71{bottom:428.114133pt;}
.y3e{bottom:430.206400pt;}
.ya2{bottom:435.269467pt;}
.y12d{bottom:436.367200pt;}
.y1da{bottom:437.420133pt;}
.y23b{bottom:438.076800pt;}
.y210{bottom:438.146800pt;}
.y1a8{bottom:442.845467pt;}
.y15b{bottom:443.828133pt;}
.ybb{bottom:444.060133pt;}
.yec{bottom:444.080133pt;}
.y70{bottom:444.112133pt;}
.y29{bottom:446.191733pt;}
.y3d{bottom:446.204400pt;}
.y12c{bottom:449.867200pt;}
.ya1{bottom:451.267467pt;}
.y1d9{bottom:453.088467pt;}
.y23a{bottom:453.745133pt;}
.y20f{bottom:453.815133pt;}
.y1a7{bottom:458.843467pt;}
.y141{bottom:459.791467pt;}
.y15a{bottom:459.826133pt;}
.yba{bottom:460.058133pt;}
.yeb{bottom:460.078133pt;}
.y6f{bottom:460.110133pt;}
.y28{bottom:460.191733pt;}
.y3c{bottom:462.202400pt;}
.y12b{bottom:463.367200pt;}
.ya0{bottom:467.265467pt;}
.y1d8{bottom:468.756800pt;}
.y239{bottom:469.413467pt;}
.y20e{bottom:469.483467pt;}
.y27{bottom:474.191733pt;}
.y1a6{bottom:474.841467pt;}
.y140{bottom:475.789467pt;}
.y159{bottom:475.824133pt;}
.yb9{bottom:476.056133pt;}
.yea{bottom:476.076133pt;}
.y6e{bottom:476.108133pt;}
.y3b{bottom:478.200400pt;}
.y9f{bottom:483.263467pt;}
.y1d7{bottom:484.425133pt;}
.y238{bottom:485.081800pt;}
.y20d{bottom:485.151800pt;}
.y12a{bottom:487.267200pt;}
.y26{bottom:488.191733pt;}
.y1a5{bottom:490.839467pt;}
.y13f{bottom:491.787467pt;}
.y158{bottom:491.822133pt;}
.yb8{bottom:492.054133pt;}
.ye9{bottom:492.074133pt;}
.y6d{bottom:492.106133pt;}
.y3a{bottom:494.198400pt;}
.y9e{bottom:499.261467pt;}
.y1d6{bottom:500.093467pt;}
.y237{bottom:500.750133pt;}
.y20c{bottom:500.820133pt;}
.y129{bottom:501.267200pt;}
.y25{bottom:502.191733pt;}
.y1a4{bottom:506.837467pt;}
.y13e{bottom:507.785467pt;}
.y157{bottom:507.820133pt;}
.yb7{bottom:508.052133pt;}
.ye8{bottom:508.072133pt;}
.y6c{bottom:508.104133pt;}
.y39{bottom:510.196400pt;}
.y9d{bottom:515.259467pt;}
.y1d5{bottom:515.761800pt;}
.y24{bottom:516.191733pt;}
.y236{bottom:516.418467pt;}
.y20b{bottom:516.488467pt;}
.y1a3{bottom:522.835467pt;}
.y13d{bottom:523.783467pt;}
.y156{bottom:523.818133pt;}
.yb6{bottom:524.050133pt;}
.ye7{bottom:524.070133pt;}
.y6b{bottom:524.102133pt;}
.y38{bottom:526.194400pt;}
.y128{bottom:526.300133pt;}
.y23{bottom:530.191733pt;}
.y9c{bottom:531.257467pt;}
.y1d4{bottom:531.430133pt;}
.y235{bottom:532.086800pt;}
.y20a{bottom:532.156800pt;}
.y1a2{bottom:538.833467pt;}
.ye6{bottom:540.068133pt;}
.y6a{bottom:540.100133pt;}
.y127{bottom:540.300133pt;}
.y37{bottom:542.192400pt;}
.y1d3{bottom:547.098467pt;}
.y9b{bottom:547.255467pt;}
.y234{bottom:547.755133pt;}
.y209{bottom:547.825133pt;}
.yb5{bottom:548.050133pt;}
.y1a1{bottom:554.831467pt;}
.ye5{bottom:556.066133pt;}
.y69{bottom:556.098133pt;}
.y36{bottom:558.190400pt;}
.y22{bottom:558.191733pt;}
.y1d2{bottom:562.766800pt;}
.y9a{bottom:563.253467pt;}
.y233{bottom:563.423467pt;}
.y208{bottom:563.493467pt;}
.y1a0{bottom:570.829467pt;}
.ye4{bottom:572.064133pt;}
.y68{bottom:572.096133pt;}
.y21{bottom:572.191733pt;}
.y188{bottom:574.150000pt;}
.y35{bottom:574.188400pt;}
.y1d1{bottom:578.435133pt;}
.y232{bottom:579.091800pt;}
.y207{bottom:579.161800pt;}
.y99{bottom:579.251467pt;}
.y126{bottom:583.700133pt;}
.y20{bottom:586.191733pt;}
.y19f{bottom:586.827467pt;}
.y187{bottom:587.650000pt;}
.ye3{bottom:588.062133pt;}
.y67{bottom:588.094133pt;}
.y1d0{bottom:594.103467pt;}
.y231{bottom:594.760133pt;}
.y206{bottom:594.830133pt;}
.y98{bottom:595.249467pt;}
.y125{bottom:597.450133pt;}
.y34{bottom:598.191733pt;}
.y1f{bottom:600.191733pt;}
.y186{bottom:601.150000pt;}
.y19e{bottom:602.825467pt;}
.ye2{bottom:604.060133pt;}
.y66{bottom:604.092133pt;}
.y1cf{bottom:609.771800pt;}
.y230{bottom:610.428467pt;}
.y205{bottom:610.498467pt;}
.y124{bottom:610.950133pt;}
.y97{bottom:611.247467pt;}
.y185{bottom:614.650000pt;}
.y19d{bottom:618.823467pt;}
.ye1{bottom:620.058133pt;}
.y65{bottom:620.090133pt;}
.y123{bottom:624.450133pt;}
.y1ce{bottom:625.440133pt;}
.y22f{bottom:626.096800pt;}
.y204{bottom:626.166800pt;}
.y96{bottom:627.245467pt;}
.y184{bottom:628.150000pt;}
.y19c{bottom:634.821467pt;}
.ye0{bottom:636.056133pt;}
.y64{bottom:636.088133pt;}
.y122{bottom:637.950133pt;}
.y1cd{bottom:641.108467pt;}
.y183{bottom:641.650000pt;}
.y22e{bottom:641.765133pt;}
.y203{bottom:641.835133pt;}
.y95{bottom:643.243467pt;}
.y19b{bottom:650.819467pt;}
.y121{bottom:651.450133pt;}
.ydf{bottom:652.054133pt;}
.y63{bottom:652.086133pt;}
.y182{bottom:655.150000pt;}
.y1cc{bottom:656.776800pt;}
.y22d{bottom:657.433467pt;}
.y202{bottom:657.503467pt;}
.y94{bottom:659.241467pt;}
.y120{bottom:664.950133pt;}
.y19a{bottom:666.817467pt;}
.yde{bottom:668.052133pt;}
.y62{bottom:668.084133pt;}
.y181{bottom:668.650000pt;}
.y1cb{bottom:672.445133pt;}
.y22c{bottom:673.101800pt;}
.y201{bottom:673.171800pt;}
.y1b{bottom:673.614933pt;}
.y93{bottom:675.239467pt;}
.y11f{bottom:678.450133pt;}
.y180{bottom:682.150000pt;}
.y199{bottom:682.815467pt;}
.ydd{bottom:684.050133pt;}
.y61{bottom:684.082133pt;}
.y1a{bottom:686.948267pt;}
.y1ca{bottom:688.113467pt;}
.y22b{bottom:688.770133pt;}
.y200{bottom:688.840133pt;}
.y92{bottom:691.237467pt;}
.y11e{bottom:691.950133pt;}
.y17f{bottom:695.650000pt;}
.y198{bottom:698.813467pt;}
.y60{bottom:700.080133pt;}
.y19{bottom:700.281600pt;}
.y1c9{bottom:703.781800pt;}
.y22a{bottom:704.438467pt;}
.y1ff{bottom:704.508467pt;}
.y11d{bottom:705.450133pt;}
.y91{bottom:707.235467pt;}
.ydc{bottom:708.050133pt;}
.y17e{bottom:709.150000pt;}
.y18{bottom:713.614933pt;}
.y197{bottom:714.811467pt;}
.y5f{bottom:716.078133pt;}
.y11c{bottom:718.950133pt;}
.y1c8{bottom:719.450133pt;}
.y229{bottom:720.106800pt;}
.y1fe{bottom:720.176800pt;}
.y17d{bottom:722.650000pt;}
.y90{bottom:723.233467pt;}
.y17{bottom:726.948267pt;}
.y196{bottom:730.809467pt;}
.y5e{bottom:732.076133pt;}
.y11b{bottom:732.450133pt;}
.y228{bottom:735.775133pt;}
.y1fd{bottom:735.845133pt;}
.y17c{bottom:736.150000pt;}
.y8f{bottom:739.231467pt;}
.y16{bottom:740.281600pt;}
.y1c7{bottom:742.804133pt;}
.y11a{bottom:745.950133pt;}
.y195{bottom:746.807467pt;}
.ydb{bottom:748.062133pt;}
.y5d{bottom:748.074133pt;}
.y17b{bottom:749.650000pt;}
.y227{bottom:751.443467pt;}
.y1fc{bottom:751.513467pt;}
.y15{bottom:753.614933pt;}
.y8e{bottom:755.229467pt;}
.y119{bottom:759.450133pt;}
.y194{bottom:762.805467pt;}
.y17a{bottom:763.150000pt;}
.yda{bottom:764.060133pt;}
.y5c{bottom:764.072133pt;}
.y14{bottom:766.948267pt;}
.y226{bottom:767.111800pt;}
.y1fb{bottom:767.181800pt;}
.y8d{bottom:771.227467pt;}
.y118{bottom:772.950133pt;}
.y179{bottom:776.650000pt;}
.y1c6{bottom:778.802800pt;}
.y193{bottom:778.803467pt;}
.yd9{bottom:780.058133pt;}
.y5b{bottom:780.070133pt;}
.y13{bottom:780.281600pt;}
.y225{bottom:782.780133pt;}
.y1fa{bottom:782.850133pt;}
.y117{bottom:786.450133pt;}
.y8c{bottom:787.225467pt;}
.y178{bottom:790.150000pt;}
.y12{bottom:793.614933pt;}
.y1c5{bottom:794.800800pt;}
.y192{bottom:794.801467pt;}
.yd8{bottom:796.056133pt;}
.y5a{bottom:796.068133pt;}
.y224{bottom:798.448467pt;}
.y1f9{bottom:798.518467pt;}
.y116{bottom:799.950133pt;}
.y8b{bottom:803.223467pt;}
.y177{bottom:803.650000pt;}
.y11{bottom:806.948267pt;}
.y1c4{bottom:810.798800pt;}
.y191{bottom:810.799467pt;}
.yd7{bottom:812.054133pt;}
.y59{bottom:812.066133pt;}
.y115{bottom:813.450133pt;}
.y223{bottom:814.116800pt;}
.y1f8{bottom:814.186800pt;}
.y176{bottom:817.150000pt;}
.y8a{bottom:819.221467pt;}
.y10{bottom:820.281600pt;}
.y1c3{bottom:826.796800pt;}
.y190{bottom:826.797467pt;}
.y114{bottom:826.950133pt;}
.yd6{bottom:828.052133pt;}
.y58{bottom:828.064133pt;}
.y222{bottom:829.785133pt;}
.y1f7{bottom:829.855133pt;}
.y89{bottom:835.219467pt;}
.y173{bottom:835.850000pt;}
.yf{bottom:836.951600pt;}
.y113{bottom:840.450133pt;}
.y1c2{bottom:842.794800pt;}
.y18f{bottom:842.795467pt;}
.yd5{bottom:844.050133pt;}
.y57{bottom:844.062133pt;}
.y221{bottom:845.453467pt;}
.y1f6{bottom:845.523467pt;}
.y172{bottom:849.850000pt;}
.y88{bottom:851.217467pt;}
.ye{bottom:852.951600pt;}
.y112{bottom:853.950133pt;}
.y1c1{bottom:858.792800pt;}
.y18e{bottom:858.793467pt;}
.y56{bottom:860.060133pt;}
.y220{bottom:861.121800pt;}
.y1f5{bottom:861.191800pt;}
.y87{bottom:867.215467pt;}
.yd4{bottom:868.050133pt;}
.y175{bottom:873.750000pt;}
.y1c0{bottom:874.790800pt;}
.y18d{bottom:874.791467pt;}
.y55{bottom:876.058133pt;}
.y21f{bottom:876.790133pt;}
.y1f4{bottom:876.860133pt;}
.y110{bottom:877.850133pt;}
.yd{bottom:878.284933pt;}
.y86{bottom:883.213467pt;}
.y174{bottom:887.750000pt;}
.y1bf{bottom:890.788800pt;}
.y18c{bottom:890.789467pt;}
.y54{bottom:892.056133pt;}
.y21e{bottom:892.458467pt;}
.y1f3{bottom:892.528467pt;}
.y85{bottom:899.211467pt;}
.y111{bottom:901.750133pt;}
.yc{bottom:902.284933pt;}
.y1be{bottom:906.786800pt;}
.y18b{bottom:906.787467pt;}
.y53{bottom:908.054133pt;}
.yd3{bottom:908.103467pt;}
.y21d{bottom:908.126800pt;}
.y1f2{bottom:908.196800pt;}
.y171{bottom:912.783467pt;}
.y84{bottom:915.209467pt;}
.y1bd{bottom:922.784800pt;}
.y18a{bottom:922.785467pt;}
.y21c{bottom:923.795133pt;}
.y1f1{bottom:923.865133pt;}
.y52{bottom:924.052133pt;}
.yd2{bottom:924.101467pt;}
.y10f{bottom:926.783467pt;}
.yb{bottom:938.283467pt;}
.y1bc{bottom:938.782800pt;}
.y189{bottom:938.783467pt;}
.y83{bottom:939.209467pt;}
.y21b{bottom:939.463467pt;}
.y1f0{bottom:939.533467pt;}
.y51{bottom:940.050133pt;}
.yd1{bottom:940.099467pt;}
.y10e{bottom:940.783467pt;}
.y4b{bottom:951.529200pt;}
.y4d{bottom:976.287067pt;}
.y50{bottom:979.844267pt;}
.h8{height:22.860000pt;}
.h9{height:26.416000pt;}
.h2{height:30.293333pt;}
.ha{height:30.480000pt;}
.hf{height:31.480000pt;}
.h10{height:33.460000pt;}
.h4{height:36.328000pt;}
.hb{height:38.608000pt;}
.he{height:39.624000pt;}
.h5{height:40.000000pt;}
.h3{height:46.736000pt;}
.h7{height:47.760000pt;}
.hc{height:56.693333pt;}
.h6{height:60.960000pt;}
.hd{height:90.311155pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:631.181333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:76.195333pt;}
.x14{left:84.166800pt;}
.x1{left:87.458267pt;}
.xb{left:88.862000pt;}
.x19{left:95.468267pt;}
.xf{left:100.124933pt;}
.x1b{left:107.454933pt;}
.x15{left:152.678267pt;}
.x13{left:166.106800pt;}
.x7{left:177.219333pt;}
.x12{left:181.122267pt;}
.x17{left:281.708267pt;}
.x6{left:300.774800pt;}
.x4{left:307.410400pt;}
.x5{left:386.823067pt;}
.xc{left:403.313333pt;}
.x2{left:414.574933pt;}
.xd{left:415.980000pt;}
.x1a{left:423.310000pt;}
.x10{left:427.255733pt;}
.x1c{left:434.576600pt;}
.x3{left:438.736400pt;}
.x16{left:445.708267pt;}
.xa{left:491.354400pt;}
.x11{left:495.782267pt;}
.x18{left:568.708267pt;}
.xe{left:652.506400pt;}
.x8{left:688.450533pt;}
}




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