
    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_231ce33d89b9ac12707a0cab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4d0f5d6ad78f839cbacf83f5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_026c36b4ae0bb573348039a0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_e7f52a159325b4ad6343bef7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5b636cacc86d0b704bd4102e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.917000;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_6e97ac97a05b083d52809da4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_188ef0dc2b842a18cb45031d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.083008;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_2c393eff3f3656df81563be2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_bbdcd48e6c84ea0c28a6b43f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_a10f5a70a6e66a0a253e3dc5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.022949;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_5697323f894e66a92a32cb45.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_86116c7e947af84d52fb93b5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a19883a242406b75ac1850dc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_4e9fac568b054aa96be0d76f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.885254;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_04eb98e004d35987cd0e0471.woff')format("woff");}.fff{font-family:fff;line-height:0.768555;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_77e1923d084560350bac0206.woff')format("woff");}.ff10{font-family:ff10;line-height:0.952148;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_5cda60e9be429d499b90219b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.975149;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:ff12;src:url('chunks/assets/font_db4d77dbbb020c58379e7ab8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.961939;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:ff13;src:url('chunks/assets/font_e319d8fd6f9a6d4dce2b8655.woff')format("woff");}.ff13{font-family:ff13;line-height:0.961939;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:ff14;src:url('chunks/assets/font_c1c51eba4df011f0a1d2b6ec.woff')format("woff");}.ff14{font-family:ff14;line-height:0.748047;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:ff15;src:url('chunks/assets/font_79b0889101963d32cdcebed3.woff')format("woff");}.ff15{font-family:ff15;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a09ba077288ba47d23598f40.woff')format("woff");}.ff16{font-family:ff16;line-height:0.940918;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:ff17;src:url('chunks/assets/font_5e3c671289ec551503dc8150.woff')format("woff");}.ff17{font-family:ff17;line-height:0.940918;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:ff18;src:url('chunks/assets/font_53fdd2ebf11a34fd4de6de16.woff')format("woff");}.ff18{font-family:ff18;line-height:0.937500;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:ff19;src:url('chunks/assets/font_22e12801e2a8c8428ddd1905.woff')format("woff");}.ff19{font-family:ff19;line-height:0.963867;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:ff1a;src:url('chunks/assets/font_6d11273bf19da85fec608928.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.030273;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;}
.m5{transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249998,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.md{transform:matrix(0.176878,-0.176675,0.176878,0.176675,0,0);-ms-transform:matrix(0.176878,-0.176675,0.176878,0.176675,0,0);-webkit-transform:matrix(0.176878,-0.176675,0.176878,0.176675,0,0);}
.mf{transform:matrix(0.177014,-0.176539,0.177014,0.176539,0,0);-ms-transform:matrix(0.177014,-0.176539,0.177014,0.176539,0,0);-webkit-transform:matrix(0.177014,-0.176539,0.177014,0.176539,0,0);}
.m7{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253533,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-28.294417px;}
.v3{vertical-align:-26.640000px;}
.v12{vertical-align:-20.448000px;}
.v4{vertical-align:-8.220000px;}
.v10{vertical-align:-6.773293px;}
.v5{vertical-align:-2.760000px;}
.v7{vertical-align:-1.570201px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.867937px;}
.v6{vertical-align:3.109018px;}
.v11{vertical-align:7.080000px;}
.va{vertical-align:9.060000px;}
.v2{vertical-align:32.400000px;}
.v9{vertical-align:76.975467px;}
.vb{vertical-align:95.970258px;}
.ve{vertical-align:98.100000px;}
.vd{vertical-align:103.471153px;}
.vc{vertical-align:106.162560px;}
.v1{vertical-align:124.692000px;}
.ls3f{letter-spacing:-24.436871px;}
.ls41{letter-spacing:-8.101108px;}
.lsf{letter-spacing:-4.734000px;}
.ls24{letter-spacing:-1.512000px;}
.ls28{letter-spacing:-0.649026px;}
.ls1a{letter-spacing:-0.488400px;}
.lsb{letter-spacing:-0.373800px;}
.ls19{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.344400px;}
.lsd{letter-spacing:-0.332400px;}
.ls7{letter-spacing:-0.327000px;}
.ls13{letter-spacing:-0.326400px;}
.ls34{letter-spacing:-0.325686px;}
.ls51{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.310200px;}
.ls10{letter-spacing:-0.292200px;}
.ls12{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.266302px;}
.ls37{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.187203px;}
.ls6{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.111348px;}
.ls4a{letter-spacing:-0.087199px;}
.ls11{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.071711px;}
.ls46{letter-spacing:-0.064404px;}
.ls18{letter-spacing:-0.036000px;}
.ls3c{letter-spacing:-0.015840px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.018346px;}
.ls1{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.072000px;}
.ls49{letter-spacing:0.074173px;}
.lsa{letter-spacing:0.089400px;}
.ls16{letter-spacing:0.108000px;}
.ls48{letter-spacing:0.117592px;}
.ls42{letter-spacing:0.133800px;}
.ls9{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.147469px;}
.ls44{letter-spacing:0.155583px;}
.ls4{letter-spacing:0.168000px;}
.ls25{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181800px;}
.ls23{letter-spacing:0.188660px;}
.ls2c{letter-spacing:0.196625px;}
.ls3{letter-spacing:0.205200px;}
.ls29{letter-spacing:0.208800px;}
.ls1c{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.217440px;}
.ls31{letter-spacing:0.224801px;}
.ls40{letter-spacing:0.229200px;}
.ls4e{letter-spacing:0.235152px;}
.ls38{letter-spacing:0.236160px;}
.ls0{letter-spacing:0.245400px;}
.ls14{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.291600px;}
.ls4d{letter-spacing:0.324000px;}
.ls39{letter-spacing:0.330000px;}
.ls30{letter-spacing:0.334705px;}
.ls3d{letter-spacing:0.353400px;}
.ls47{letter-spacing:0.369058px;}
.ls27{letter-spacing:0.531936px;}
.ls3e{letter-spacing:0.566334px;}
.ls3a{letter-spacing:0.598800px;}
.ls17{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.732000px;}
.ls1e{letter-spacing:0.847051px;}
.ls52{letter-spacing:1.116000px;}
.lse{letter-spacing:1.512000px;}
.ls21{letter-spacing:108.202236px;}
.ls32{letter-spacing:236.701636px;}
.ls33{letter-spacing:236.807488px;}
.ls4f{letter-spacing:241.429440px;}
.ls4b{letter-spacing:263.029440px;}
.ls4c{letter-spacing:263.149440px;}
.ls20{letter-spacing:358.021212px;}
.ls1f{letter-spacing:372.153021px;}
.ls22{letter-spacing:504.206924px;}
.ls2b{letter-spacing:543.098769px;}
.ls50{letter-spacing:543.104675px;}
.ls45{letter-spacing:684.449773px;}
.ls43{letter-spacing:914.307542px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(5,102,107),0 0.015em rgb(5,102,107),0.015em 0 rgb(5,102,107),0 -0.015em  rgb(5,102,107);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(5,102,107);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7b{word-spacing:-192.240000px;}
.ws46{word-spacing:-97.062478px;}
.ws1c{word-spacing:-56.700000px;}
.ws25{word-spacing:-50.274000px;}
.ws18{word-spacing:-44.136000px;}
.ws4a{word-spacing:-44.086032px;}
.ws23{word-spacing:-44.064000px;}
.ws45{word-spacing:-44.059032px;}
.ws8{word-spacing:-43.877232px;}
.wsf{word-spacing:-43.848000px;}
.ws10{word-spacing:-43.776000px;}
.ws7a{word-spacing:-43.675440px;}
.ws96{word-spacing:-43.632000px;}
.ws7d{word-spacing:-43.612584px;}
.ws11{word-spacing:-43.560000px;}
.ws12{word-spacing:-43.550832px;}
.ws1{word-spacing:-43.446240px;}
.ws3{word-spacing:-40.721760px;}
.ws2{word-spacing:-40.598160px;}
.wse{word-spacing:-39.143232px;}
.ws7c{word-spacing:-34.084512px;}
.ws2a{word-spacing:-34.055280px;}
.ws26{word-spacing:-32.544000px;}
.ws27{word-spacing:-32.256000px;}
.ws43{word-spacing:-31.592979px;}
.ws13{word-spacing:-29.520000px;}
.ws0{word-spacing:-29.466432px;}
.wsb{word-spacing:-29.232000px;}
.ws97{word-spacing:-28.944000px;}
.wsd{word-spacing:-26.016480px;}
.ws17{word-spacing:-24.408720px;}
.ws1b{word-spacing:-24.408000px;}
.ws48{word-spacing:-23.971677px;}
.ws69{word-spacing:-22.603182px;}
.ws44{word-spacing:-22.104000px;}
.ws6{word-spacing:-22.068000px;}
.ws9b{word-spacing:-22.032000px;}
.ws99{word-spacing:-21.960000px;}
.ws19{word-spacing:-21.953232px;}
.ws5{word-spacing:-21.924000px;}
.ws49{word-spacing:-21.912172px;}
.ws24{word-spacing:-21.641760px;}
.ws21{word-spacing:-21.636000px;}
.ws80{word-spacing:-20.828160px;}
.ws6e{word-spacing:-20.723040px;}
.ws41{word-spacing:-20.412000px;}
.ws73{word-spacing:-19.439280px;}
.ws75{word-spacing:-19.423440px;}
.ws4{word-spacing:-18.711240px;}
.ws9{word-spacing:-17.129952px;}
.wsa{word-spacing:-17.100720px;}
.ws14{word-spacing:-16.423598px;}
.ws15{word-spacing:-16.411305px;}
.ws90{word-spacing:-16.050221px;}
.ws57{word-spacing:-16.050047px;}
.ws95{word-spacing:-16.028850px;}
.ws5c{word-spacing:-16.028675px;}
.ws94{word-spacing:-15.978509px;}
.ws5b{word-spacing:-15.978335px;}
.ws55{word-spacing:-14.797599px;}
.ws50{word-spacing:-14.775380px;}
.ws22{word-spacing:-14.645232px;}
.ws20{word-spacing:-14.616000px;}
.ws5e{word-spacing:-14.301543px;}
.ws2d{word-spacing:-14.212455px;}
.ws2f{word-spacing:-14.212360px;}
.ws5d{word-spacing:-14.062207px;}
.ws5f{word-spacing:-14.057761px;}
.ws6c{word-spacing:-13.245465px;}
.ws63{word-spacing:-13.222861px;}
.ws8b{word-spacing:-12.649124px;}
.ws87{word-spacing:-11.554905px;}
.ws89{word-spacing:-11.500356px;}
.ws84{word-spacing:-11.480731px;}
.ws88{word-spacing:-11.393532px;}
.ws67{word-spacing:-11.301808px;}
.ws64{word-spacing:-11.301591px;}
.ws82{word-spacing:-10.597598px;}
.ws83{word-spacing:-10.533194px;}
.ws16{word-spacing:-9.219834px;}
.ws7f{word-spacing:-8.786880px;}
.ws9a{word-spacing:-0.864000px;}
.ws98{word-spacing:-0.264240px;}
.ws42{word-spacing:-0.256161px;}
.ws47{word-spacing:-0.096957px;}
.ws6d{word-spacing:-0.084240px;}
.ws8a{word-spacing:-0.050887px;}
.ws85{word-spacing:-0.050800px;}
.ws7{word-spacing:0.000000px;}
.ws56{word-spacing:0.079240px;}
.ws66{word-spacing:0.148464px;}
.ws68{word-spacing:0.389718px;}
.ws65{word-spacing:0.556739px;}
.ws81{word-spacing:16.099596px;}
.ws38{word-spacing:31.089665px;}
.ws34{word-spacing:45.315686px;}
.ws3c{word-spacing:57.783082px;}
.ws8e{word-spacing:62.395440px;}
.ws8c{word-spacing:62.556000px;}
.ws8f{word-spacing:63.072000px;}
.ws8d{word-spacing:63.284304px;}
.ws33{word-spacing:81.430388px;}
.ws3a{word-spacing:82.876778px;}
.ws37{word-spacing:83.012444px;}
.ws53{word-spacing:93.773705px;}
.ws51{word-spacing:93.790090px;}
.ws4b{word-spacing:93.806475px;}
.ws4e{word-spacing:93.912981px;}
.ws4d{word-spacing:108.692621px;}
.ws1e{word-spacing:108.744000px;}
.ws4f{word-spacing:108.774548px;}
.ws52{word-spacing:108.815512px;}
.ws1a{word-spacing:109.464000px;}
.ws71{word-spacing:112.417680px;}
.ws2c{word-spacing:112.596000px;}
.ws4c{word-spacing:113.010177px;}
.ws54{word-spacing:113.092104px;}
.ws3d{word-spacing:118.983550px;}
.ws1d{word-spacing:121.584000px;}
.ws1f{word-spacing:133.824000px;}
.ws72{word-spacing:166.837680px;}
.ws32{word-spacing:172.437117px;}
.ws3f{word-spacing:190.342040px;}
.ws58{word-spacing:195.986443px;}
.ws91{word-spacing:195.988574px;}
.ws77{word-spacing:197.405040px;}
.ws6b{word-spacing:202.507252px;}
.ws61{word-spacing:202.571276px;}
.ws79{word-spacing:205.205040px;}
.ws74{word-spacing:205.505040px;}
.ws6a{word-spacing:211.182940px;}
.ws60{word-spacing:211.246964px;}
.ws2e{word-spacing:213.484290px;}
.ws39{word-spacing:214.930681px;}
.ws36{word-spacing:216.530402px;}
.ws30{word-spacing:232.951721px;}
.ws35{word-spacing:276.199923px;}
.ws3b{word-spacing:302.172068px;}
.ws29{word-spacing:321.565056px;}
.ws28{word-spacing:321.822960px;}
.ws62{word-spacing:340.441222px;}
.ws31{word-spacing:345.443981px;}
.ws2b{word-spacing:347.616000px;}
.ws78{word-spacing:426.065040px;}
.ws5a{word-spacing:459.950891px;}
.ws93{word-spacing:459.955893px;}
.ws7e{word-spacing:533.637120px;}
.ws6f{word-spacing:605.006880px;}
.ws40{word-spacing:623.620787px;}
.ws3e{word-spacing:647.203243px;}
.ws70{word-spacing:652.886880px;}
.ws59{word-spacing:685.081815px;}
.ws92{word-spacing:685.089265px;}
.ws86{word-spacing:695.973489px;}
.wsc{word-spacing:1172.942400px;}
.ws76{word-spacing:1339.589520px;}
._5c{margin-left:-4319.568000px;}
._38{margin-left:-3132.293332px;}
._33{margin-left:-2551.226428px;}
._50{margin-left:-996.149224px;}
._59{margin-left:-994.845953px;}
._5a{margin-left:-973.334880px;}
._3e{margin-left:-58.230148px;}
._58{margin-left:-56.419949px;}
._4d{margin-left:-34.789471px;}
._51{margin-left:-31.662846px;}
._54{margin-left:-30.627239px;}
._3f{margin-left:-29.174959px;}
._47{margin-left:-25.224183px;}
._4b{margin-left:-23.497529px;}
._42{margin-left:-22.185125px;}
._41{margin-left:-20.057784px;}
._4{margin-left:-14.485680px;}
._43{margin-left:-13.117014px;}
._52{margin-left:-11.346124px;}
._9{margin-left:-9.507216px;}
._39{margin-left:-7.997328px;}
._5{margin-left:-6.490512px;}
._0{margin-left:-5.184000px;}
._6{margin-left:-4.116000px;}
._2{margin-left:-2.448000px;}
._1{margin-left:-1.008000px;}
._3{width:1.409040px;}
._8{width:3.327216px;}
._7{width:4.595664px;}
._4a{width:7.439655px;}
._49{width:9.185673px;}
._55{width:12.703861px;}
._48{width:13.810940px;}
._44{width:15.515950px;}
._45{width:16.562867px;}
._4e{width:18.536458px;}
._12{width:20.616000px;}
._53{width:22.098524px;}
._4c{width:24.155384px;}
._40{width:25.544842px;}
._46{width:28.111288px;}
._56{width:32.363625px;}
._3c{width:34.054205px;}
._a{width:45.843744px;}
._16{width:48.587965px;}
._5b{width:49.917102px;}
._e{width:59.676000px;}
._11{width:64.620000px;}
._2d{width:70.517579px;}
._10{width:79.752000px;}
._21{width:83.114496px;}
._30{width:84.523536px;}
._23{width:95.009150px;}
._f{width:96.804000px;}
._29{width:120.907497px;}
._35{width:132.058216px;}
._17{width:134.597157px;}
._22{width:144.472161px;}
._b{width:145.956000px;}
._2f{width:147.023158px;}
._27{width:148.606745px;}
._1a{width:152.816513px;}
._14{width:153.922935px;}
._1e{width:155.516473px;}
._c{width:158.196000px;}
._31{width:161.388643px;}
._26{width:165.134484px;}
._28{width:170.940117px;}
._25{width:174.280385px;}
._3b{width:191.432400px;}
._20{width:195.471337px;}
._36{width:197.565091px;}
._1b{width:201.256900px;}
._2a{width:203.520815px;}
._2b{width:205.741452px;}
._1c{width:212.576479px;}
._15{width:215.029054px;}
._2e{width:224.760541px;}
._2c{width:229.978309px;}
._24{width:240.193330px;}
._18{width:245.466144px;}
._19{width:249.679543px;}
._1f{width:277.901491px;}
._d{width:338.328000px;}
._1d{width:358.838737px;}
._34{width:456.635598px;}
._37{width:495.699930px;}
._57{width:497.267457px;}
._4f{width:498.599427px;}
._3d{width:586.235929px;}
._3a{width:593.026608px;}
._13{width:1218.846960px;}
._32{width:1272.657811px;}
.fc13{color:rgb(214,87,0);}
.fc9{color:rgb(255,192,0);}
.fca{color:rgb(126,150,50);}
.fc7{color:rgb(183,4,171);}
.fc8{color:rgb(29,10,194);}
.fc11{color:rgb(5,102,107);}
.fc1b{color:rgb(171,60,25);}
.fc4{color:rgb(165,0,33);}
.fc2{color:rgb(0,32,96);}
.fcc{color:rgb(64,64,64);}
.fc1d{color:rgb(32,69,90);}
.fcb{color:rgb(12,155,116);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fcd{color:transparent;}
.fce{color:rgb(89,89,89);}
.fc3{color:rgb(255,102,0);}
.fcf{color:rgb(19,80,27);}
.fc16{color:rgb(192,0,0);}
.fc12{color:rgb(0,79,108);}
.fc14{color:rgb(202,251,237);}
.fc6{color:rgb(241,190,12);}
.fc1a{color:rgb(84,64,19);}
.fc10{color:rgb(56,112,37);}
.fc15{color:rgb(228,244,223);}
.fc5{color:rgb(8,79,106);}
.fc18{color:rgb(242,242,242);}
.fc17{color:rgb(255,0,0);}
.fc19{color:rgb(0,0,165);}
.fc1e{color:rgb(0,255,0);}
.fc1c{color:rgb(194,148,1);}
.fs4c{font-size:36.037391px;}
.fs48{font-size:38.880000px;}
.fs11{font-size:40.795726px;}
.fs4a{font-size:46.892027px;}
.fs26{font-size:49.156232px;}
.fs25{font-size:49.254544px;}
.fs32{font-size:50.567487px;}
.fs30{font-size:50.583480px;}
.fs2f{font-size:50.612680px;}
.fs31{font-size:50.635764px;}
.fs4b{font-size:50.799696px;}
.fs4e{font-size:50.886533px;}
.fs28{font-size:54.563417px;}
.fs27{font-size:54.565464px;}
.fs35{font-size:55.672862px;}
.fs36{font-size:55.673933px;}
.fs2e{font-size:55.784208px;}
.fs4{font-size:59.760000px;}
.fs1b{font-size:62.886549px;}
.fs1a{font-size:62.886970px;}
.fs34{font-size:65.137249px;}
.fs33{font-size:65.248594px;}
.fs29{font-size:65.377788px;}
.fs2a{font-size:65.476101px;}
.fs2d{font-size:70.923342px;}
.fs51{font-size:70.924113px;}
.fs2c{font-size:71.017906px;}
.fs50{font-size:71.018679px;}
.fse{font-size:72.000000px;}
.fs16{font-size:72.144000px;}
.fs4d{font-size:72.508967px;}
.fs49{font-size:72.595805px;}
.fs10{font-size:72.616393px;}
.fsf{font-size:72.670787px;}
.fs22{font-size:73.734348px;}
.fs2b{font-size:73.832660px;}
.fs6{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fs3e{font-size:84.727180px;}
.fs15{font-size:89.953689px;}
.fs47{font-size:92.160000px;}
.fs17{font-size:95.760000px;}
.fs18{font-size:95.904000px;}
.fs1e{font-size:96.956514px;}
.fs1f{font-size:97.062478px;}
.fs24{font-size:98.312463px;}
.fs23{font-size:98.410776px;}
.fs45{font-size:100.818047px;}
.fs40{font-size:100.854432px;}
.fs39{font-size:101.301939px;}
.fs44{font-size:103.471153px;}
.fs41{font-size:103.508496px;}
.fs3a{font-size:103.967780px;}
.fs21{font-size:105.963404px;}
.fs20{font-size:106.069367px;}
.fs7{font-size:108.000000px;}
.fs14{font-size:108.144000px;}
.fs37{font-size:111.345724px;}
.fs1d{font-size:116.606338px;}
.fs12{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsc{font-size:128.160000px;}
.fs3c{font-size:135.563488px;}
.fs3d{font-size:136.455353px;}
.fs13{font-size:139.322904px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fs46{font-size:151.227070px;}
.fs42{font-size:151.281648px;}
.fs3b{font-size:151.952909px;}
.fs43{font-size:153.880176px;}
.fs3f{font-size:153.935712px;}
.fs1c{font-size:155.630437px;}
.fs5{font-size:167.760000px;}
.fs19{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.fs9{font-size:216.000000px;}
.fsa{font-size:216.144000px;}
.fs38{font-size:264.240000px;}
.fs4f{font-size:264.384000px;}
.fsd{font-size:360.144000px;}
.y126{bottom:-88.804813px;}
.y121{bottom:-88.804809px;}
.y125{bottom:-83.802050px;}
.y120{bottom:-83.802046px;}
.y11f{bottom:-71.989969px;}
.y128{bottom:-71.434115px;}
.y124{bottom:-71.434111px;}
.y123{bottom:-71.017214px;}
.y11e{bottom:-66.987207px;}
.y127{bottom:-66.570318px;}
.y122{bottom:-66.570314px;}
.y11d{bottom:-64.624792px;}
.yb2{bottom:-47.236652px;}
.yb0{bottom:-47.236639px;}
.y135{bottom:-42.727680px;}
.y134{bottom:-42.727679px;}
.y133{bottom:-42.727677px;}
.y132{bottom:-42.727676px;}
.y131{bottom:-42.727674px;}
.y130{bottom:-42.727673px;}
.y12f{bottom:-42.727671px;}
.y12e{bottom:-42.727670px;}
.y0{bottom:0.000000px;}
.yc6{bottom:0.036999px;}
.y118{bottom:3.829837px;}
.y1c5{bottom:3.829878px;}
.y8b{bottom:4.318053px;}
.y9f{bottom:4.337680px;}
.y9b{bottom:4.341606px;}
.y89{bottom:4.710603px;}
.ya3{bottom:4.710627px;}
.y91{bottom:5.888254px;}
.y16e{bottom:7.034260px;}
.y81{bottom:7.065904px;}
.ya7{bottom:7.458455px;}
.y129{bottom:8.072400px;}
.y136{bottom:8.135025px;}
.y6d{bottom:8.565000px;}
.y7e{bottom:8.636105px;}
.y1b5{bottom:10.440000px;}
.yb{bottom:11.412000px;}
.yb1{bottom:11.620346px;}
.yaa{bottom:12.528000px;}
.y116{bottom:13.806405px;}
.y1c3{bottom:13.806555px;}
.y143{bottom:14.629140px;}
.ya4{bottom:14.916909px;}
.y1b4{bottom:14.940000px;}
.y5d{bottom:15.225000px;}
.y4f{bottom:15.270000px;}
.y2e{bottom:15.686668px;}
.ydf{bottom:16.252279px;}
.y108{bottom:16.259448px;}
.yeb{bottom:16.283002px;}
.yfd{bottom:16.284026px;}
.yf6{bottom:16.308604px;}
.yd4{bottom:16.334206px;}
.y84{bottom:16.487110px;}
.y10d{bottom:17.316358px;}
.y37{bottom:17.316540px;}
.y16b{bottom:18.548626px;}
.y13b{bottom:19.055128px;}
.y82{bottom:20.805163px;}
.ybe{bottom:20.942521px;}
.y44{bottom:21.037979px;}
.y86{bottom:21.213415px;}
.ybd{bottom:21.339884px;}
.y1aa{bottom:22.608000px;}
.y145{bottom:23.843001px;}
.y153{bottom:24.480000px;}
.y113{bottom:24.610387px;}
.y1c0{bottom:24.610654px;}
.ya5{bottom:25.138918px;}
.y16{bottom:26.496000px;}
.y80{bottom:26.709119px;}
.y13d{bottom:28.268988px;}
.y157{bottom:28.584000px;}
.ya9{bottom:29.456970px;}
.y115{bottom:30.260620px;}
.y1c2{bottom:30.260949px;}
.y79{bottom:30.780000px;}
.y16f{bottom:31.212000px;}
.y1ab{bottom:32.076000px;}
.y154{bottom:33.984000px;}
.y87{bottom:34.952674px;}
.y83{bottom:35.345224px;}
.ydd{bottom:35.648509px;}
.y106{bottom:35.651581px;}
.ye9{bottom:35.668991px;}
.yfc{bottom:35.676159px;}
.yf4{bottom:35.700737px;}
.yd2{bottom:35.720195px;}
.ya{bottom:36.432000px;}
.y1d4{bottom:37.080000px;}
.yec{bottom:38.378911px;}
.y142{bottom:39.236546px;}
.y144{bottom:40.544860px;}
.yf7{bottom:41.205394px;}
.y18e{bottom:42.041435px;}
.yfe{bottom:42.434300px;}
.y13a{bottom:43.690370px;}
.y31{bottom:43.713319px;}
.y173{bottom:44.155912px;}
.y64{bottom:44.565000px;}
.y13c{bottom:44.970847px;}
.y85{bottom:45.551531px;}
.ya2{bottom:45.794832px;}
.y164{bottom:47.018040px;}
.y17a{bottom:48.118830px;}
.y7f{bottom:49.869583px;}
.y16d{bottom:50.512682px;}
.yd6{bottom:51.573080px;}
.yff{bottom:51.602778px;}
.ye2{bottom:51.624284px;}
.yed{bottom:51.627356px;}
.ycb{bottom:51.675489px;}
.y15{bottom:51.696000px;}
.y30{bottom:55.952038px;}
.y117{bottom:57.778845px;}
.y112{bottom:57.778882px;}
.y1c4{bottom:57.779473px;}
.y1bf{bottom:57.779510px;}
.y18c{bottom:61.775163px;}
.y141{bottom:62.507804px;}
.y12a{bottom:63.658988px;}
.y137{bottom:63.703691px;}
.y11b{bottom:65.848170px;}
.y5c{bottom:66.450000px;}
.y4e{bottom:66.525000px;}
.ya1{bottom:66.600332px;}
.y172{bottom:66.715456px;}
.y1d3{bottom:69.480000px;}
.y24{bottom:72.072000px;}
.y43{bottom:72.183418px;}
.y179{bottom:72.660055px;}
.y165{bottom:73.676445px;}
.yd7{bottom:73.724107px;}
.ye3{bottom:73.744588px;}
.y100{bottom:73.748685px;}
.yee{bottom:73.769167px;}
.ycc{bottom:73.795793px;}
.ya8{bottom:76.194003px;}
.y119{bottom:76.597183px;}
.y1c6{bottom:76.598016px;}
.y14{bottom:76.896000px;}
.y114{bottom:77.022742px;}
.y1c1{bottom:77.023579px;}
.y111{bottom:77.140953px;}
.y1be{bottom:77.141792px;}
.y18d{bottom:79.685312px;}
.y2d{bottom:80.662372px;}
.y65{bottom:84.750000px;}
.ya0{bottom:87.032573px;}
.y160{bottom:89.244000px;}
.y5e{bottom:89.610000px;}
.y50{bottom:89.670000px;}
.y11a{bottom:91.612194px;}
.y1b{bottom:92.808000px;}
.y16c{bottom:93.099238px;}
.yd8{bottom:95.864893px;}
.y101{bottom:95.868989px;}
.ye4{bottom:95.885374px;}
.yef{bottom:95.920193px;}
.ycd{bottom:95.936579px;}
.y13f{bottom:100.727223px;}
.y54{bottom:101.550000px;}
.y46{bottom:101.625000px;}
.y1d2{bottom:101.880000px;}
.y13{bottom:102.132000px;}
.yb7{bottom:102.204000px;}
.y13e{bottom:102.954132px;}
.yde{bottom:104.661810px;}
.y107{bottom:104.696629px;}
.yea{bottom:104.713014px;}
.yf5{bottom:104.717111px;}
.yd3{bottom:104.764219px;}
.y9e{bottom:107.445185px;}
.y6e{bottom:110.805000px;}
.y2c{bottom:113.485932px;}
.y23{bottom:115.272000px;}
.yd9{bottom:118.005679px;}
.y102{bottom:118.009775px;}
.ye5{bottom:118.036401px;}
.yf8{bottom:118.040498px;}
.yf0{bottom:118.060979px;}
.yce{bottom:118.087606px;}
.y12b{bottom:119.244072px;}
.y138{bottom:119.275831px;}
.y19{bottom:119.772000px;}
.y66{bottom:124.950000px;}
.y9d{bottom:127.878211px;}
.y18f{bottom:131.393179px;}
.y1d1{bottom:134.280000px;}
.y191{bottom:135.300848px;}
.y10c{bottom:135.562697px;}
.y192{bottom:136.151128px;}
.y76{bottom:136.224000px;}
.y55{bottom:139.680000px;}
.y47{bottom:139.755000px;}
.yc3{bottom:139.907414px;}
.yda{bottom:140.156706px;}
.y103{bottom:140.160802px;}
.ye6{bottom:140.177187px;}
.yf9{bottom:140.181284px;}
.yf1{bottom:140.212006px;}
.ycf{bottom:140.228392px;}
.y2b{bottom:146.938423px;}
.y72{bottom:147.930000px;}
.y9c{bottom:148.306526px;}
.yc8{bottom:156.105906px;}
.ye{bottom:157.065000px;}
.y18{bottom:158.115000px;}
.y29{bottom:158.361202px;}
.y10a{bottom:158.492031px;}
.y190{bottom:162.111798px;}
.ydb{bottom:162.297492px;}
.y104{bottom:162.301588px;}
.ye7{bottom:162.328214px;}
.yfa{bottom:162.332311px;}
.yf2{bottom:162.352792px;}
.yd0{bottom:162.369178px;}
.y61{bottom:162.540000px;}
.y12d{bottom:162.734208px;}
.y67{bottom:165.135000px;}
.y11c{bottom:166.492121px;}
.y1d0{bottom:166.680000px;}
.y9a{bottom:168.719138px;}
.yc2{bottom:169.080463px;}
.y2f{bottom:169.801009px;}
.y62{bottom:172.950000px;}
.y12c{bottom:174.830313px;}
.y139{bottom:174.844498px;}
.y56{bottom:177.810000px;}
.y48{bottom:177.870000px;}
.y53{bottom:181.620000px;}
.y45{bottom:183.780000px;}
.ydc{bottom:184.448518px;}
.y105{bottom:184.452615px;}
.ye8{bottom:184.469000px;}
.yfb{bottom:184.473097px;}
.yf3{bottom:184.493578px;}
.yd1{bottom:184.520205px;}
.y168{bottom:185.641746px;}
.y71{bottom:186.015000px;}
.y99{bottom:189.155304px;}
.y174{bottom:190.129432px;}
.y189{bottom:192.142957px;}
.y63{bottom:192.240000px;}
.yac{bottom:193.500000px;}
.y10b{bottom:194.529694px;}
.y18a{bottom:194.938026px;}
.y1cf{bottom:199.080000px;}
.y17b{bottom:200.009171px;}
.y22{bottom:201.705000px;}
.y32{bottom:202.188283px;}
.y2a{bottom:202.817211px;}
.y27{bottom:202.913565px;}
.y68{bottom:205.350000px;}
.y98{bottom:209.583619px;}
.y167{bottom:214.299532px;}
.y57{bottom:215.925000px;}
.y49{bottom:216.000000px;}
.y18b{bottom:219.749915px;}
.yf{bottom:222.810000px;}
.y97{bottom:229.996232px;}
.ybc{bottom:231.918969px;}
.ybf{bottom:232.735770px;}
.y1ad{bottom:233.925000px;}
.y185{bottom:236.693370px;}
.y36{bottom:239.685000px;}
.y166{bottom:244.290237px;}
.y69{bottom:245.520000px;}
.y187{bottom:245.692494px;}
.y188{bottom:245.954815px;}
.y25{bottom:248.400000px;}
.y96{bottom:250.432398px;}
.y58{bottom:254.055000px;}
.y4a{bottom:254.130000px;}
.yca{bottom:254.301755px;}
.yd5{bottom:257.251129px;}
.y186{bottom:258.546192px;}
.y1b2{bottom:259.230000px;}
.y140{bottom:259.314845px;}
.ye1{bottom:259.954722px;}
.y162{bottom:260.430000px;}
.y19f{bottom:261.150000px;}
.y1af{bottom:262.470000px;}
.y1ce{bottom:263.910000px;}
.y178{bottom:268.193878px;}
.y1ac{bottom:269.925000px;}
.y95{bottom:270.860712px;}
.y28{bottom:272.305964px;}
.y163{bottom:272.698189px;}
.y171{bottom:273.014816px;}
.y35{bottom:275.685000px;}
.yd{bottom:280.875000px;}
.yc1{bottom:282.163283px;}
.yc0{bottom:284.580573px;}
.y6a{bottom:285.690000px;}
.y156{bottom:289.830000px;}
.y94{bottom:291.273325px;}
.y77{bottom:291.810000px;}
.y59{bottom:292.170000px;}
.y4b{bottom:292.245000px;}
.y161{bottom:292.830000px;}
.y15f{bottom:293.040000px;}
.y1b1{bottom:295.230000px;}
.ybb{bottom:296.002582px;}
.y1cd{bottom:296.310000px;}
.y60{bottom:306.900000px;}
.y52{bottom:306.930000px;}
.y17d{bottom:307.875000px;}
.y1d8{bottom:308.955000px;}
.y34{bottom:311.685000px;}
.y93{bottom:311.709491px;}
.yc{bottom:313.275000px;}
.y17e{bottom:322.125000px;}
.y1dc{bottom:324.570000px;}
.y155{bottom:325.875000px;}
.y6b{bottom:325.905000px;}
.y1cc{bottom:328.710000px;}
.y5a{bottom:330.300000px;}
.y4c{bottom:330.375000px;}
.y92{bottom:332.137806px;}
.y158{bottom:333.510000px;}
.y70{bottom:336.060000px;}
.y1b7{bottom:337.035000px;}
.y175{bottom:337.575000px;}
.y169{bottom:340.275000px;}
.y1d7{bottom:341.355000px;}
.y74{bottom:345.060000px;}
.y5f{bottom:347.760000px;}
.y51{bottom:347.790000px;}
.y1b6{bottom:354.135000px;}
.y90{bottom:355.690820px;}
.y1db{bottom:356.970000px;}
.y1b8{bottom:362.490000px;}
.y1a{bottom:364.215000px;}
.y17c{bottom:365.475000px;}
.y6c{bottom:366.090000px;}
.yc9{bottom:367.016862px;}
.y5b{bottom:368.430000px;}
.y4d{bottom:368.490000px;}
.y1f{bottom:373.110000px;}
.y26{bottom:378.832507px;}
.y8f{bottom:379.267388px;}
.y6f{bottom:380.160000px;}
.y181{bottom:387.465000px;}
.y73{bottom:389.160000px;}
.y1da{bottom:389.370000px;}
.y10{bottom:393.270000px;}
.y1cb{bottom:393.510000px;}
.y8e{bottom:399.695703px;}
.y180{bottom:404.535000px;}
.y1d6{bottom:406.185000px;}
.y1c7{bottom:407.190000px;}
.ye0{bottom:412.701435px;}
.y182{bottom:412.890000px;}
.y38{bottom:415.494957px;}
.yad{bottom:417.855000px;}
.y8d{bottom:420.108316px;}
.yab{bottom:434.310000px;}
.y2{bottom:435.600000px;}
.y17{bottom:439.920000px;}
.y8c{bottom:440.544482px;}
.y41{bottom:442.155000px;}
.y75{bottom:449.460000px;}
.yae{bottom:451.770000px;}
.y42{bottom:452.381787px;}
.y1d9{bottom:454.215000px;}
.y1ca{bottom:458.355000px;}
.y8a{bottom:460.972796px;}
.y14b{bottom:461.490000px;}
.yc7{bottom:462.031762px;}
.y17f{bottom:476.535000px;}
.y1{bottom:478.440000px;}
.y88{bottom:481.385409px;}
.y148{bottom:485.745000px;}
.y14a{bottom:486.870000px;}
.y147{bottom:487.770000px;}
.y19e{bottom:488.910000px;}
.y1ae{bottom:490.215000px;}
.y1c9{bottom:490.755000px;}
.y1e{bottom:496.365000px;}
.y109{bottom:498.407373px;}
.y7d{bottom:502.214125px;}
.y1bd{bottom:507.720000px;}
.y1d5{bottom:514.800000px;}
.y1b9{bottom:514.875000px;}
.y1ba{bottom:515.775000px;}
.y1a0{bottom:521.175000px;}
.y1b0{bottom:521.490000px;}
.yaf{bottom:522.810000px;}
.y1b3{bottom:527.685000px;}
.y15d{bottom:538.275000px;}
.y151{bottom:539.280000px;}
.y152{bottom:539.820000px;}
.y177{bottom:542.190000px;}
.y149{bottom:547.590000px;}
.y110{bottom:547.710000px;}
.y14c{bottom:547.815000px;}
.y146{bottom:548.715000px;}
.y19d{bottom:554.220000px;}
.y199{bottom:555.555000px;}
.y5{bottom:555.690000px;}
.y170{bottom:555.945000px;}
.y1a6{bottom:556.890000px;}
.y197{bottom:558.795000px;}
.y1a4{bottom:560.130000px;}
.y194{bottom:560.235000px;}
.y1a1{bottom:561.570000px;}
.y15b{bottom:562.530000px;}
.y15c{bottom:563.655000px;}
.y15a{bottom:564.555000px;}
.y183{bottom:565.305000px;}
.y184{bottom:566.175000px;}
.y150{bottom:570.600000px;}
.y78{bottom:573.555000px;}
.y3d{bottom:581.760000px;}
.y40{bottom:582.090000px;}
.y193{bottom:588.855000px;}
.y7c{bottom:592.350000px;}
.y176{bottom:592.590000px;}
.y16a{bottom:596.235000px;}
.y19a{bottom:599.940000px;}
.y19b{bottom:599.970000px;}
.y195{bottom:600.690000px;}
.y1a7{bottom:601.230000px;}
.y1a8{bottom:601.305000px;}
.y198{bottom:601.455000px;}
.y1a2{bottom:602.025000px;}
.y1a5{bottom:602.790000px;}
.y9{bottom:607.140000px;}
.yba{bottom:609.690000px;}
.y4{bottom:612.795000px;}
.y3c{bottom:614.160000px;}
.y3f{bottom:614.490000px;}
.y14f{bottom:624.345000px;}
.y15e{bottom:624.600000px;}
.y159{bottom:625.500000px;}
.y3b{bottom:628.635000px;}
.y19c{bottom:636.840000px;}
.y1a9{bottom:638.175000px;}
.y196{bottom:639.285000px;}
.ya6{bottom:639.685221px;}
.y1a3{bottom:640.590000px;}
.y3e{bottom:646.890000px;}
.y8{bottom:656.640000px;}
.yb6{bottom:658.950000px;}
.y12{bottom:659.310000px;}
.y3{bottom:670.395000px;}
.yb9{bottom:674.490000px;}
.y21{bottom:676.905000px;}
.yc5{bottom:679.650000px;}
.y1bc{bottom:687.855000px;}
.y1d{bottom:689.910000px;}
.y10f{bottom:690.735000px;}
.y3a{bottom:693.465000px;}
.y14e{bottom:694.800000px;}
.yb4{bottom:694.980000px;}
.y7b{bottom:700.230000px;}
.yb5{bottom:723.780000px;}
.y11{bottom:724.110000px;}
.y7{bottom:726.300000px;}
.y1c8{bottom:729.465000px;}
.yb8{bottom:739.335000px;}
.y20{bottom:741.705000px;}
.y33{bottom:743.325000px;}
.y6{bottom:744.300000px;}
.yc4{bottom:744.480000px;}
.y1bb{bottom:752.685000px;}
.y1c{bottom:754.740000px;}
.y10e{bottom:755.565000px;}
.y39{bottom:758.265000px;}
.y14d{bottom:759.600000px;}
.yb3{bottom:759.810000px;}
.y7a{bottom:765.030000px;}
.h33{height:20.020063px;}
.h34{height:20.039690px;}
.h37{height:20.412613px;}
.h31{height:20.432240px;}
.h36{height:23.160465px;}
.h35{height:23.180092px;}
.h3b{height:25.927944px;}
.h90{height:27.415164px;}
.h61{height:38.024380px;}
.h5e{height:38.036406px;}
.h5d{height:38.058363px;}
.h60{height:38.075721px;}
.h8e{height:38.645472px;}
.h8d{height:38.671694px;}
.h91{height:38.737799px;}
.h88{height:39.810234px;}
.h38{height:40.452303px;}
.h1c{height:40.576609px;}
.h8b{height:46.640165px;}
.h3c{height:47.686920px;}
.h64{height:48.251626px;}
.h65{height:48.252554px;}
.h5b{height:48.348129px;}
.h4d{height:48.892209px;}
.h4c{height:48.989993px;}
.h8c{height:52.015118px;}
.h4f{height:54.270352px;}
.h4e{height:54.272388px;}
.h67{height:56.454403px;}
.h63{height:56.549818px;}
.h62{height:56.550906px;}
.h3a{height:60.884543px;}
.h5{height:61.189805px;}
.h92{height:61.875000px;}
.h17{height:62.402344px;}
.h94{height:62.527148px;}
.h39{height:62.548780px;}
.h69{height:63.922500px;}
.h70{height:64.031769px;}
.h68{height:64.128405px;}
.h32{height:64.391159px;}
.h2f{height:64.391590px;}
.h51{height:66.942003px;}
.h52{height:67.042667px;}
.h43{height:67.393966px;}
.h30{height:67.500607px;}
.h93{height:69.482344px;}
.h96{height:69.602344px;}
.h59{height:70.542406px;}
.h9c{height:70.543173px;}
.h56{height:70.636463px;}
.h99{height:70.637231px;}
.h1b{height:72.226364px;}
.h19{height:72.280466px;}
.he{height:73.010742px;}
.hd{height:73.135547px;}
.h42{height:73.711569px;}
.h8f{height:74.243801px;}
.h8a{height:74.332716px;}
.h1a{height:74.353797px;}
.h58{height:74.702734px;}
.h9b{height:74.703547px;}
.h48{height:75.498499px;}
.h54{height:75.599164px;}
.h53{height:77.366436px;}
.h6f{height:82.995117px;}
.h7{height:83.787539px;}
.h71{height:85.299117px;}
.h22{height:89.470539px;}
.h87{height:91.665000px;}
.h2d{height:92.812500px;}
.h9{height:93.603516px;}
.h20{height:93.728320px;}
.h8{height:93.761719px;}
.h95{height:93.886734px;}
.h26{height:94.802344px;}
.h28{height:95.245664px;}
.h29{height:95.388891px;}
.h66{height:96.503252px;}
.h78{height:99.091085px;}
.h55{height:99.232591px;}
.h98{height:99.233670px;}
.h46{height:99.276275px;}
.h79{height:99.743000px;}
.h21{height:100.164850px;}
.h40{height:100.208572px;}
.h4a{height:100.664666px;}
.h49{height:100.765331px;}
.h6d{height:103.331250px;}
.h1d{height:104.211914px;}
.h6a{height:104.388047px;}
.h6c{height:104.513063px;}
.h74{height:106.455290px;}
.h24{height:107.419922px;}
.h25{height:107.563148px;}
.h45{height:108.498661px;}
.h44{height:108.607160px;}
.h10{height:111.263906px;}
.h6b{height:112.391250px;}
.h82{height:116.837732px;}
.h7d{height:116.879899px;}
.h1f{height:120.751052px;}
.h2c{height:121.710938px;}
.h77{height:122.631445px;}
.ha{height:123.264281px;}
.hf{height:124.804688px;}
.h7a{height:124.929492px;}
.h16{height:125.015625px;}
.h15{height:125.140641px;}
.h6{height:126.994320px;}
.h3e{height:132.520550px;}
.h3f{height:134.884778px;}
.h2e{height:137.078546px;}
.h86{height:137.910234px;}
.h1{height:143.226562px;}
.h2{height:143.369789px;}
.h7b{height:145.397461px;}
.h80{height:145.522266px;}
.h2a{height:145.643203px;}
.h2b{height:145.768219px;}
.h76{height:146.620547px;}
.h85{height:146.730375px;}
.h57{height:147.611930px;}
.h9a{height:147.613535px;}
.h84{height:150.414815px;}
.h7f{height:150.469100px;}
.h75{height:151.136756px;}
.h3d{height:163.402965px;}
.h73{height:171.966238px;}
.hb{height:187.207031px;}
.hc{height:187.331836px;}
.h13{height:187.523438px;}
.h14{height:187.648453px;}
.h3{height:196.839492px;}
.h4{height:196.986938px;}
.h50{height:200.557425px;}
.h4b{height:200.680316px;}
.h5c{height:202.785561px;}
.h5f{height:202.788404px;}
.h83{height:206.701350px;}
.h7e{height:212.147578px;}
.h7c{height:212.325120px;}
.h81{height:222.197689px;}
.h9d{height:223.339570px;}
.h6e{height:229.016602px;}
.h97{height:229.141406px;}
.h11{height:235.955906px;}
.h72{height:263.251750px;}
.h5a{height:293.535176px;}
.h12{height:312.136523px;}
.h89{height:314.133161px;}
.h41{height:317.360394px;}
.h18{height:376.000653px;}
.h23{height:396.360000px;}
.h27{height:425.700000px;}
.h47{height:528.798162px;}
.h1e{height:682.700781px;}
.h0{height:810.000000px;}
.w13{width:32.601521px;}
.w7{width:32.601534px;}
.w8{width:32.621161px;}
.wd{width:39.274920px;}
.wf{width:39.274923px;}
.w9{width:39.274933px;}
.we{width:39.294548px;}
.w10{width:39.294550px;}
.wa{width:39.294560px;}
.w12{width:48.323264px;}
.w17{width:48.323280px;}
.w11{width:89.957421px;}
.w16{width:89.957437px;}
.wc{width:118.653033px;}
.w14{width:118.653036px;}
.w15{width:118.653052px;}
.w18{width:131.607278px;}
.w4{width:222.037253px;}
.w1c{width:240.382998px;}
.w1d{width:240.505894px;}
.w2{width:326.896919px;}
.w19{width:342.314413px;}
.w23{width:373.330169px;}
.w3{width:377.282331px;}
.w22{width:391.157836px;}
.w21{width:454.995233px;}
.w5{width:458.820000px;}
.w20{width:490.626550px;}
.w26{width:502.910105px;}
.wb{width:509.141074px;}
.w6{width:674.280000px;}
.w1e{width:750.282686px;}
.w1b{width:777.557884px;}
.w1a{width:860.829253px;}
.w25{width:1079.604501px;}
.w24{width:1086.815600px;}
.w1f{width:1088.703784px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x58{left:1.962766px;}
.x1d{left:6.967365px;}
.x1f{left:10.898259px;}
.x24{left:13.645063px;}
.x56{left:15.325279px;}
.xe{left:16.379979px;}
.x3f{left:18.179979px;}
.x1e{left:19.288250px;}
.x4e{left:21.221425px;}
.x23{left:23.707614px;}
.x76{left:25.868417px;}
.xfa{left:26.891979px;}
.x5c{left:28.279520px;}
.x5d{left:31.027381px;}
.x74{left:32.553917px;}
.x83{left:33.889990px;}
.x53{left:34.952921px;}
.x99{left:36.281536px;}
.xd5{left:37.333894px;}
.xd7{left:40.303540px;}
.x75{left:42.041427px;}
.x98{left:43.322480px;}
.xf8{left:44.927979px;}
.x5b{left:45.967952px;}
.x5e{left:48.023979px;}
.x42{left:50.910000px;}
.xac{left:52.902995px;}
.x3b{left:55.410000px;}
.xd9{left:57.215562px;}
.x37{left:58.435121px;}
.x22{left:62.514158px;}
.xeb{left:64.331979px;}
.xf5{left:65.987979px;}
.x39{left:67.035000px;}
.xcb{left:68.508347px;}
.x35{left:72.071979px;}
.x2{left:76.715979px;}
.x79{left:77.751697px;}
.x77{left:78.862874px;}
.xaa{left:84.052558px;}
.x9{left:85.283979px;}
.xc1{left:88.127979px;}
.xa{left:90.683979px;}
.xd8{left:92.081679px;}
.x8d{left:93.812257px;}
.x9a{left:96.433433px;}
.x86{left:98.434971px;}
.x25{left:99.449838px;}
.x85{left:101.508440px;}
.x14{left:103.535979px;}
.x8e{left:104.942285px;}
.x48{left:106.199979px;}
.xca{left:107.289808px;}
.xcd{left:110.868587px;}
.xc3{left:112.607979px;}
.x43{left:114.405000px;}
.x49{left:120.167979px;}
.x8f{left:121.224587px;}
.x45{left:122.505000px;}
.xda{left:124.474678px;}
.xc9{left:125.747979px;}
.x2f{left:127.884484px;}
.x80{left:130.448131px;}
.x2a{left:133.379979px;}
.x84{left:137.513397px;}
.x3c{left:143.310000px;}
.x81{left:144.971979px;}
.x9b{left:147.421549px;}
.x3a{left:150.045000px;}
.x16{left:160.169979px;}
.x15{left:161.894979px;}
.x31{left:165.569979px;}
.x8a{left:175.658585px;}
.xde{left:188.174979px;}
.x90{left:191.343745px;}
.x9c{left:193.528503px;}
.x27{left:196.386877px;}
.x47{left:198.104979px;}
.x6c{left:202.276331px;}
.x28{left:206.245457px;}
.x9d{left:210.522607px;}
.xad{left:212.494646px;}
.x29{left:213.548738px;}
.x26{left:216.608298px;}
.x91{left:218.890563px;}
.xcc{left:220.959596px;}
.xc2{left:225.794979px;}
.x9e{left:227.516711px;}
.x6d{left:229.264155px;}
.x7f{left:235.677131px;}
.x92{left:238.368114px;}
.x70{left:240.374979px;}
.x6f{left:246.748297px;}
.xdb{left:251.088691px;}
.x93{left:254.506652px;}
.x9f{left:256.629561px;}
.xe1{left:257.909979px;}
.x20{left:260.461982px;}
.x94{left:265.775806px;}
.x21{left:266.841730px;}
.xa0{left:273.623665px;}
.x46{left:280.230000px;}
.x95{left:281.914344px;}
.xa1{left:290.617769px;}
.x4a{left:291.959979px;}
.xea{left:297.899979px;}
.x18{left:300.389979px;}
.xf0{left:303.299979px;}
.xa2{left:307.611873px;}
.x71{left:324.537042px;}
.x4{left:328.034979px;}
.x6a{left:329.720724px;}
.x12{left:333.929979px;}
.x3{left:335.054979px;}
.xa3{left:336.724723px;}
.x67{left:337.784979px;}
.xf3{left:340.304979px;}
.xdc{left:341.682343px;}
.x1a{left:342.749979px;}
.xd6{left:345.780088px;}
.x96{left:352.172628px;}
.xa4{left:353.718827px;}
.xf7{left:355.943703px;}
.x69{left:362.084979px;}
.x97{left:363.580907px;}
.x6b{left:366.256419px;}
.xc0{left:367.709979px;}
.x68{left:368.924979px;}
.xa5{left:370.712931px;}
.x73{left:373.203528px;}
.x63{left:376.529979px;}
.x34{left:379.439979px;}
.x33{left:388.439979px;}
.x66{left:394.844979px;}
.x10{left:398.594979px;}
.x7d{left:402.343478px;}
.x65{left:404.429979px;}
.x4b{left:406.649979px;}
.x40{left:412.589979px;}
.x32{left:414.539979px;}
.x17{left:417.959979px;}
.xb4{left:421.349979px;}
.x8{left:423.974979px;}
.xe0{left:432.284979px;}
.xc{left:435.089979px;}
.x88{left:439.965083px;}
.xd1{left:442.912480px;}
.xc4{left:453.749979px;}
.x7a{left:458.854786px;}
.xfd{left:467.429979px;}
.x89{left:477.437812px;}
.x7e{left:479.572877px;}
.x6e{left:482.949825px;}
.xb{left:484.454979px;}
.x11{left:485.894979px;}
.xbc{left:491.609979px;}
.x1{left:496.694979px;}
.xd4{left:498.929979px;}
.xf6{left:504.689979px;}
.x2e{left:511.664219px;}
.xbd{left:519.329979px;}
.xf4{left:529.409979px;}
.xb2{left:534.029979px;}
.x64{left:546.989979px;}
.x36{left:549.571016px;}
.xa8{left:555.747641px;}
.xd2{left:574.949979px;}
.xd{left:581.609979px;}
.x72{left:587.597737px;}
.x8b{left:594.243844px;}
.x44{left:600.810000px;}
.x19{left:603.074979px;}
.x82{left:604.409979px;}
.xdf{left:606.239979px;}
.x5{left:609.584979px;}
.xf9{left:611.819979px;}
.x7b{left:613.335608px;}
.x30{left:616.394979px;}
.xb3{left:622.229979px;}
.xa9{left:627.682998px;}
.x41{left:654.120000px;}
.xfb{left:656.894979px;}
.xd0{left:666.905193px;}
.x1b{left:668.624979px;}
.xce{left:671.913343px;}
.xf{left:674.174979px;}
.xb6{left:687.209979px;}
.xbf{left:693.614979px;}
.x87{left:700.146579px;}
.xab{left:709.686051px;}
.xc6{left:725.114979px;}
.x62{left:727.739979px;}
.x60{left:732.419979px;}
.xef{left:740.054979px;}
.x13{left:744.224979px;}
.xb0{left:749.339979px;}
.xb5{left:751.469979px;}
.xa6{left:757.182890px;}
.xb1{left:764.174979px;}
.xe4{left:772.094979px;}
.x8c{left:773.729998px;}
.xdd{left:775.259979px;}
.xe5{left:776.729979px;}
.x5f{left:782.309979px;}
.xa7{left:801.211694px;}
.xcf{left:803.804979px;}
.xbb{left:811.514979px;}
.xd3{left:818.129979px;}
.xb7{left:832.529979px;}
.x3d{left:833.940000px;}
.x38{left:835.560000px;}
.xc5{left:846.254979px;}
.x78{left:859.382019px;}
.x7c{left:861.594140px;}
.xae{left:876.269979px;}
.xaf{left:878.549979px;}
.xe2{left:897.554979px;}
.x2c{left:902.879979px;}
.x57{left:907.817493px;}
.xe3{left:911.669979px;}
.x2d{left:919.619979px;}
.x2b{left:923.219979px;}
.xf2{left:928.874979px;}
.xc7{left:963.254979px;}
.x1c{left:974.444979px;}
.x4c{left:981.899979px;}
.xee{left:1004.729979px;}
.xf1{left:1017.509979px;}
.xc8{left:1021.784979px;}
.x59{left:1026.863125px;}
.x61{left:1038.494979px;}
.xed{left:1042.994979px;}
.xec{left:1046.699979px;}
.xb9{left:1090.004979px;}
.xe9{left:1103.549979px;}
.x5a{left:1117.205243px;}
.xe7{left:1122.734979px;}
.x6{left:1139.114979px;}
.xe8{left:1141.664979px;}
.x3e{left:1144.364979px;}
.x4d{left:1165.920987px;}
.xb8{left:1189.979979px;}
.x4f{left:1198.911130px;}
.xbe{left:1209.524979px;}
.xfc{left:1220.909979px;}
.x50{left:1231.909124px;}
.xba{left:1235.339979px;}
.x51{left:1264.922820px;}
.x7{left:1292.069979px;}
.x52{left:1297.920815px;}
.xe6{left:1315.649979px;}
.x54{left:1337.584356px;}
.x55{left:1377.271452px;}
@media print{
.vf{vertical-align:-25.150593pt;}
.v3{vertical-align:-23.680000pt;}
.v12{vertical-align:-18.176000pt;}
.v4{vertical-align:-7.306667pt;}
.v10{vertical-align:-6.020705pt;}
.v5{vertical-align:-2.453333pt;}
.v7{vertical-align:-1.395734pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.660388pt;}
.v6{vertical-align:2.763571pt;}
.v11{vertical-align:6.293333pt;}
.va{vertical-align:8.053333pt;}
.v2{vertical-align:28.800000pt;}
.v9{vertical-align:68.422637pt;}
.vb{vertical-align:85.306896pt;}
.ve{vertical-align:87.200000pt;}
.vd{vertical-align:91.974358pt;}
.vc{vertical-align:94.366720pt;}
.v1{vertical-align:110.837333pt;}
.ls3f{letter-spacing:-21.721663pt;}
.ls41{letter-spacing:-7.200985pt;}
.lsf{letter-spacing:-4.208000pt;}
.ls24{letter-spacing:-1.344000pt;}
.ls28{letter-spacing:-0.576912pt;}
.ls1a{letter-spacing:-0.434133pt;}
.lsb{letter-spacing:-0.332267pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.306133pt;}
.lsd{letter-spacing:-0.295467pt;}
.ls7{letter-spacing:-0.290667pt;}
.ls13{letter-spacing:-0.290133pt;}
.ls34{letter-spacing:-0.289499pt;}
.ls51{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.275733pt;}
.ls10{letter-spacing:-0.259733pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.236713pt;}
.ls37{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.166403pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.098976pt;}
.ls4a{letter-spacing:-0.077510pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.063743pt;}
.ls46{letter-spacing:-0.057248pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls3c{letter-spacing:-0.014080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.016307pt;}
.ls1{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls49{letter-spacing:0.065932pt;}
.lsa{letter-spacing:0.079467pt;}
.ls16{letter-spacing:0.096000pt;}
.ls48{letter-spacing:0.104526pt;}
.ls42{letter-spacing:0.118933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.131083pt;}
.ls44{letter-spacing:0.138296pt;}
.ls4{letter-spacing:0.149333pt;}
.ls25{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161600pt;}
.ls23{letter-spacing:0.167697pt;}
.ls2c{letter-spacing:0.174778pt;}
.ls3{letter-spacing:0.182400pt;}
.ls29{letter-spacing:0.185600pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.193280pt;}
.ls31{letter-spacing:0.199823pt;}
.ls40{letter-spacing:0.203733pt;}
.ls4e{letter-spacing:0.209024pt;}
.ls38{letter-spacing:0.209920pt;}
.ls0{letter-spacing:0.218133pt;}
.ls14{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.259200pt;}
.ls4d{letter-spacing:0.288000pt;}
.ls39{letter-spacing:0.293333pt;}
.ls30{letter-spacing:0.297516pt;}
.ls3d{letter-spacing:0.314133pt;}
.ls47{letter-spacing:0.328051pt;}
.ls27{letter-spacing:0.472832pt;}
.ls3e{letter-spacing:0.503408pt;}
.ls3a{letter-spacing:0.532267pt;}
.ls17{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.650667pt;}
.ls1e{letter-spacing:0.752934pt;}
.ls52{letter-spacing:0.992000pt;}
.lse{letter-spacing:1.344000pt;}
.ls21{letter-spacing:96.179765pt;}
.ls32{letter-spacing:210.401454pt;}
.ls33{letter-spacing:210.495545pt;}
.ls4f{letter-spacing:214.603947pt;}
.ls4b{letter-spacing:233.803947pt;}
.ls4c{letter-spacing:233.910613pt;}
.ls20{letter-spacing:318.241078pt;}
.ls1f{letter-spacing:330.802685pt;}
.ls22{letter-spacing:448.183932pt;}
.ls2b{letter-spacing:482.754462pt;}
.ls50{letter-spacing:482.759711pt;}
.ls45{letter-spacing:608.399799pt;}
.ls43{letter-spacing:812.717815pt;}
.ws7b{word-spacing:-170.880000pt;}
.ws46{word-spacing:-86.277758pt;}
.ws1c{word-spacing:-50.400000pt;}
.ws25{word-spacing:-44.688000pt;}
.ws18{word-spacing:-39.232000pt;}
.ws4a{word-spacing:-39.187584pt;}
.ws23{word-spacing:-39.168000pt;}
.ws45{word-spacing:-39.163584pt;}
.ws8{word-spacing:-39.001984pt;}
.wsf{word-spacing:-38.976000pt;}
.ws10{word-spacing:-38.912000pt;}
.ws7a{word-spacing:-38.822613pt;}
.ws96{word-spacing:-38.784000pt;}
.ws7d{word-spacing:-38.766741pt;}
.ws11{word-spacing:-38.720000pt;}
.ws12{word-spacing:-38.711851pt;}
.ws1{word-spacing:-38.618880pt;}
.ws3{word-spacing:-36.197120pt;}
.ws2{word-spacing:-36.087253pt;}
.wse{word-spacing:-34.793984pt;}
.ws7c{word-spacing:-30.297344pt;}
.ws2a{word-spacing:-30.271360pt;}
.ws26{word-spacing:-28.928000pt;}
.ws27{word-spacing:-28.672000pt;}
.ws43{word-spacing:-28.082648pt;}
.ws13{word-spacing:-26.240000pt;}
.ws0{word-spacing:-26.192384pt;}
.wsb{word-spacing:-25.984000pt;}
.ws97{word-spacing:-25.728000pt;}
.wsd{word-spacing:-23.125760pt;}
.ws17{word-spacing:-21.696640pt;}
.ws1b{word-spacing:-21.696000pt;}
.ws48{word-spacing:-21.308157pt;}
.ws69{word-spacing:-20.091717pt;}
.ws44{word-spacing:-19.648000pt;}
.ws6{word-spacing:-19.616000pt;}
.ws9b{word-spacing:-19.584000pt;}
.ws99{word-spacing:-19.520000pt;}
.ws19{word-spacing:-19.513984pt;}
.ws5{word-spacing:-19.488000pt;}
.ws49{word-spacing:-19.477486pt;}
.ws24{word-spacing:-19.237120pt;}
.ws21{word-spacing:-19.232000pt;}
.ws80{word-spacing:-18.513920pt;}
.ws6e{word-spacing:-18.420480pt;}
.ws41{word-spacing:-18.144000pt;}
.ws73{word-spacing:-17.279360pt;}
.ws75{word-spacing:-17.265280pt;}
.ws4{word-spacing:-16.632213pt;}
.ws9{word-spacing:-15.226624pt;}
.wsa{word-spacing:-15.200640pt;}
.ws14{word-spacing:-14.598754pt;}
.ws15{word-spacing:-14.587827pt;}
.ws90{word-spacing:-14.266863pt;}
.ws57{word-spacing:-14.266708pt;}
.ws95{word-spacing:-14.247866pt;}
.ws5c{word-spacing:-14.247711pt;}
.ws94{word-spacing:-14.203119pt;}
.ws5b{word-spacing:-14.202965pt;}
.ws55{word-spacing:-13.153421pt;}
.ws50{word-spacing:-13.133671pt;}
.ws22{word-spacing:-13.017984pt;}
.ws20{word-spacing:-12.992000pt;}
.ws5e{word-spacing:-12.712483pt;}
.ws2d{word-spacing:-12.633293pt;}
.ws2f{word-spacing:-12.633209pt;}
.ws5d{word-spacing:-12.499740pt;}
.ws5f{word-spacing:-12.495788pt;}
.ws6c{word-spacing:-11.773746pt;}
.ws63{word-spacing:-11.753655pt;}
.ws8b{word-spacing:-11.243666pt;}
.ws87{word-spacing:-10.271026pt;}
.ws89{word-spacing:-10.222539pt;}
.ws84{word-spacing:-10.205094pt;}
.ws88{word-spacing:-10.127584pt;}
.ws67{word-spacing:-10.046052pt;}
.ws64{word-spacing:-10.045859pt;}
.ws82{word-spacing:-9.420087pt;}
.ws83{word-spacing:-9.362839pt;}
.ws16{word-spacing:-8.195408pt;}
.ws7f{word-spacing:-7.810560pt;}
.ws9a{word-spacing:-0.768000pt;}
.ws98{word-spacing:-0.234880pt;}
.ws42{word-spacing:-0.227699pt;}
.ws47{word-spacing:-0.086184pt;}
.ws6d{word-spacing:-0.074880pt;}
.ws8a{word-spacing:-0.045232pt;}
.ws85{word-spacing:-0.045155pt;}
.ws7{word-spacing:0.000000pt;}
.ws56{word-spacing:0.070435pt;}
.ws66{word-spacing:0.131968pt;}
.ws68{word-spacing:0.346416pt;}
.ws65{word-spacing:0.494879pt;}
.ws81{word-spacing:14.310752pt;}
.ws38{word-spacing:27.635258pt;}
.ws34{word-spacing:40.280610pt;}
.ws3c{word-spacing:51.362740pt;}
.ws8e{word-spacing:55.462613pt;}
.ws8c{word-spacing:55.605333pt;}
.ws8f{word-spacing:56.064000pt;}
.ws8d{word-spacing:56.252715pt;}
.ws33{word-spacing:72.382567pt;}
.ws3a{word-spacing:73.668247pt;}
.ws37{word-spacing:73.788839pt;}
.ws53{word-spacing:83.354404pt;}
.ws51{word-spacing:83.368969pt;}
.ws4b{word-spacing:83.383534pt;}
.ws4e{word-spacing:83.478205pt;}
.ws4d{word-spacing:96.615663pt;}
.ws1e{word-spacing:96.661333pt;}
.ws4f{word-spacing:96.688487pt;}
.ws52{word-spacing:96.724899pt;}
.ws1a{word-spacing:97.301333pt;}
.ws71{word-spacing:99.926827pt;}
.ws2c{word-spacing:100.085333pt;}
.ws4c{word-spacing:100.453490pt;}
.ws54{word-spacing:100.526314pt;}
.ws3d{word-spacing:105.763155pt;}
.ws1d{word-spacing:108.074667pt;}
.ws1f{word-spacing:118.954667pt;}
.ws72{word-spacing:148.300160pt;}
.ws32{word-spacing:153.277437pt;}
.ws3f{word-spacing:169.192925pt;}
.ws58{word-spacing:174.210171pt;}
.ws91{word-spacing:174.212066pt;}
.ws77{word-spacing:175.471147pt;}
.ws6b{word-spacing:180.006446pt;}
.ws61{word-spacing:180.063357pt;}
.ws79{word-spacing:182.404480pt;}
.ws74{word-spacing:182.671147pt;}
.ws6a{word-spacing:187.718169pt;}
.ws60{word-spacing:187.775079pt;}
.ws2e{word-spacing:189.763814pt;}
.ws39{word-spacing:191.049494pt;}
.ws36{word-spacing:192.471468pt;}
.ws30{word-spacing:207.068196pt;}
.ws35{word-spacing:245.511043pt;}
.ws3b{word-spacing:268.597394pt;}
.ws29{word-spacing:285.835605pt;}
.ws28{word-spacing:286.064853pt;}
.ws62{word-spacing:302.614420pt;}
.ws31{word-spacing:307.061316pt;}
.ws2b{word-spacing:308.992000pt;}
.ws78{word-spacing:378.724480pt;}
.ws5a{word-spacing:408.845236pt;}
.ws93{word-spacing:408.849682pt;}
.ws7e{word-spacing:474.344107pt;}
.ws6f{word-spacing:537.783893pt;}
.ws40{word-spacing:554.329589pt;}
.ws3e{word-spacing:575.291772pt;}
.ws70{word-spacing:580.343893pt;}
.ws59{word-spacing:608.961614pt;}
.ws92{word-spacing:608.968236pt;}
.ws86{word-spacing:618.643101pt;}
.wsc{word-spacing:1042.615467pt;}
.ws76{word-spacing:1190.746240pt;}
._5c{margin-left:-3839.616000pt;}
._38{margin-left:-2784.260740pt;}
._33{margin-left:-2267.756825pt;}
._50{margin-left:-885.465977pt;}
._59{margin-left:-884.307514pt;}
._5a{margin-left:-865.186560pt;}
._3e{margin-left:-51.760131pt;}
._58{margin-left:-50.151066pt;}
._4d{margin-left:-30.923974pt;}
._51{margin-left:-28.144752pt;}
._54{margin-left:-27.224213pt;}
._3f{margin-left:-25.933296pt;}
._47{margin-left:-22.421496pt;}
._4b{margin-left:-20.886692pt;}
._42{margin-left:-19.720111pt;}
._41{margin-left:-17.829141pt;}
._4{margin-left:-12.876160pt;}
._43{margin-left:-11.659568pt;}
._52{margin-left:-10.085443pt;}
._9{margin-left:-8.450859pt;}
._39{margin-left:-7.108736pt;}
._5{margin-left:-5.769344pt;}
._0{margin-left:-4.608000pt;}
._6{margin-left:-3.658667pt;}
._2{margin-left:-2.176000pt;}
._1{margin-left:-0.896000pt;}
._3{width:1.252480pt;}
._8{width:2.957525pt;}
._7{width:4.085035pt;}
._4a{width:6.613027pt;}
._49{width:8.165042pt;}
._55{width:11.292321pt;}
._48{width:12.276391pt;}
._44{width:13.791956pt;}
._45{width:14.722549pt;}
._4e{width:16.476852pt;}
._12{width:18.325333pt;}
._53{width:19.643133pt;}
._4c{width:21.471452pt;}
._40{width:22.706526pt;}
._46{width:24.987812pt;}
._56{width:28.767666pt;}
._3c{width:30.270404pt;}
._a{width:40.749995pt;}
._16{width:43.189302pt;}
._5b{width:44.370757pt;}
._e{width:53.045333pt;}
._11{width:57.440000pt;}
._2d{width:62.682292pt;}
._10{width:70.890667pt;}
._21{width:73.879552pt;}
._30{width:75.132032pt;}
._23{width:84.452578pt;}
._f{width:86.048000pt;}
._29{width:107.473331pt;}
._35{width:117.385081pt;}
._17{width:119.641918pt;}
._22{width:128.419698pt;}
._b{width:129.738667pt;}
._2f{width:130.687252pt;}
._27{width:132.094884pt;}
._1a{width:135.836901pt;}
._14{width:136.820387pt;}
._1e{width:138.236865pt;}
._c{width:140.618667pt;}
._31{width:143.456571pt;}
._26{width:146.786208pt;}
._28{width:151.946771pt;}
._25{width:154.915898pt;}
._3b{width:170.162133pt;}
._20{width:173.752300pt;}
._36{width:175.613414pt;}
._1b{width:178.895022pt;}
._2a{width:180.907392pt;}
._2b{width:182.881291pt;}
._1c{width:188.956870pt;}
._15{width:191.136937pt;}
._2e{width:199.787148pt;}
._2c{width:204.425164pt;}
._24{width:213.505183pt;}
._18{width:218.192128pt;}
._19{width:221.937371pt;}
._1f{width:247.023547pt;}
._d{width:300.736000pt;}
._1d{width:318.967767pt;}
._34{width:405.898309pt;}
._37{width:440.622160pt;}
._57{width:442.015517pt;}
._4f{width:443.199491pt;}
._3d{width:521.098603pt;}
._3a{width:527.134763pt;}
._13{width:1083.419520pt;}
._32{width:1131.251387pt;}
.fs4c{font-size:32.033236pt;}
.fs48{font-size:34.560000pt;}
.fs11{font-size:36.262868pt;}
.fs4a{font-size:41.681802pt;}
.fs26{font-size:43.694428pt;}
.fs25{font-size:43.781817pt;}
.fs32{font-size:44.948877pt;}
.fs30{font-size:44.963093pt;}
.fs2f{font-size:44.989049pt;}
.fs31{font-size:45.009568pt;}
.fs4b{font-size:45.155285pt;}
.fs4e{font-size:45.232474pt;}
.fs28{font-size:48.500815pt;}
.fs27{font-size:48.502635pt;}
.fs35{font-size:49.486989pt;}
.fs36{font-size:49.487941pt;}
.fs2e{font-size:49.585963pt;}
.fs4{font-size:53.120000pt;}
.fs1b{font-size:55.899155pt;}
.fs1a{font-size:55.899529pt;}
.fs34{font-size:57.899777pt;}
.fs33{font-size:57.998751pt;}
.fs29{font-size:58.113589pt;}
.fs2a{font-size:58.200978pt;}
.fs2d{font-size:63.042971pt;}
.fs51{font-size:63.043656pt;}
.fs2c{font-size:63.127028pt;}
.fs50{font-size:63.127714pt;}
.fse{font-size:64.000000pt;}
.fs16{font-size:64.128000pt;}
.fs4d{font-size:64.452416pt;}
.fs49{font-size:64.529604pt;}
.fs10{font-size:64.547905pt;}
.fsf{font-size:64.596255pt;}
.fs22{font-size:65.541642pt;}
.fs2b{font-size:65.629031pt;}
.fs6{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fs3e{font-size:75.313049pt;}
.fs15{font-size:79.958834pt;}
.fs47{font-size:81.920000pt;}
.fs17{font-size:85.120000pt;}
.fs18{font-size:85.248000pt;}
.fs1e{font-size:86.183568pt;}
.fs1f{font-size:86.277758pt;}
.fs24{font-size:87.388856pt;}
.fs23{font-size:87.476245pt;}
.fs45{font-size:89.616041pt;}
.fs40{font-size:89.648384pt;}
.fs39{font-size:90.046168pt;}
.fs44{font-size:91.974358pt;}
.fs41{font-size:92.007552pt;}
.fs3a{font-size:92.415804pt;}
.fs21{font-size:94.189692pt;}
.fs20{font-size:94.283882pt;}
.fs7{font-size:96.000000pt;}
.fs14{font-size:96.128000pt;}
.fs37{font-size:98.973977pt;}
.fs1d{font-size:103.650078pt;}
.fs12{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsc{font-size:113.920000pt;}
.fs3c{font-size:120.500878pt;}
.fs3d{font-size:121.293647pt;}
.fs13{font-size:123.842581pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fs46{font-size:134.424062pt;}
.fs42{font-size:134.472576pt;}
.fs3b{font-size:135.069252pt;}
.fs43{font-size:136.782379pt;}
.fs3f{font-size:136.831744pt;}
.fs1c{font-size:138.338167pt;}
.fs5{font-size:149.120000pt;}
.fs19{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.fs9{font-size:192.000000pt;}
.fsa{font-size:192.128000pt;}
.fs38{font-size:234.880000pt;}
.fs4f{font-size:235.008000pt;}
.fsd{font-size:320.128000pt;}
.y126{bottom:-78.937611pt;}
.y121{bottom:-78.937608pt;}
.y125{bottom:-74.490712pt;}
.y120{bottom:-74.490708pt;}
.y11f{bottom:-63.991084pt;}
.y128{bottom:-63.496991pt;}
.y124{bottom:-63.496988pt;}
.y123{bottom:-63.126413pt;}
.y11e{bottom:-59.544184pt;}
.y127{bottom:-59.173616pt;}
.y122{bottom:-59.173613pt;}
.y11d{bottom:-57.444259pt;}
.yb2{bottom:-41.988136pt;}
.yb0{bottom:-41.988124pt;}
.y135{bottom:-37.980160pt;}
.y134{bottom:-37.980159pt;}
.y133{bottom:-37.980157pt;}
.y132{bottom:-37.980156pt;}
.y131{bottom:-37.980155pt;}
.y130{bottom:-37.980153pt;}
.y12f{bottom:-37.980152pt;}
.y12e{bottom:-37.980151pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:0.032888pt;}
.y118{bottom:3.404299pt;}
.y1c5{bottom:3.404336pt;}
.y8b{bottom:3.838269pt;}
.y9f{bottom:3.855716pt;}
.y9b{bottom:3.859205pt;}
.y89{bottom:4.187203pt;}
.ya3{bottom:4.187224pt;}
.y91{bottom:5.234003pt;}
.y16e{bottom:6.252676pt;}
.y81{bottom:6.280804pt;}
.ya7{bottom:6.629737pt;}
.y129{bottom:7.175466pt;}
.y136{bottom:7.231133pt;}
.y6d{bottom:7.613333pt;}
.y7e{bottom:7.676538pt;}
.y1b5{bottom:9.280000pt;}
.yb{bottom:10.144000pt;}
.yb1{bottom:10.329196pt;}
.yaa{bottom:11.136000pt;}
.y116{bottom:12.272360pt;}
.y1c3{bottom:12.272494pt;}
.y143{bottom:13.003680pt;}
.ya4{bottom:13.259475pt;}
.y1b4{bottom:13.280000pt;}
.y5d{bottom:13.533333pt;}
.y4f{bottom:13.573333pt;}
.y2e{bottom:13.943705pt;}
.ydf{bottom:14.446470pt;}
.y108{bottom:14.452842pt;}
.yeb{bottom:14.473779pt;}
.yfd{bottom:14.474690pt;}
.yf6{bottom:14.496537pt;}
.yd4{bottom:14.519294pt;}
.y84{bottom:14.655209pt;}
.y10d{bottom:15.392318pt;}
.y37{bottom:15.392480pt;}
.y16b{bottom:16.487668pt;}
.y13b{bottom:16.937891pt;}
.y82{bottom:18.493478pt;}
.ybe{bottom:18.615574pt;}
.y44{bottom:18.700426pt;}
.y86{bottom:18.856369pt;}
.ybd{bottom:18.968786pt;}
.y1aa{bottom:20.096000pt;}
.y145{bottom:21.193779pt;}
.y153{bottom:21.760000pt;}
.y113{bottom:21.875899pt;}
.y1c0{bottom:21.876137pt;}
.ya5{bottom:22.345705pt;}
.y16{bottom:23.552000pt;}
.y80{bottom:23.741439pt;}
.y13d{bottom:25.127990pt;}
.y157{bottom:25.408000pt;}
.ya9{bottom:26.183974pt;}
.y115{bottom:26.898329pt;}
.y1c2{bottom:26.898622pt;}
.y79{bottom:27.360000pt;}
.y16f{bottom:27.744000pt;}
.y1ab{bottom:28.512000pt;}
.y154{bottom:30.208000pt;}
.y87{bottom:31.069043pt;}
.y83{bottom:31.417977pt;}
.ydd{bottom:31.687563pt;}
.y106{bottom:31.690294pt;}
.ye9{bottom:31.705769pt;}
.yfc{bottom:31.712142pt;}
.yf4{bottom:31.733989pt;}
.yd2{bottom:31.751284pt;}
.ya{bottom:32.384000pt;}
.y1d4{bottom:32.960000pt;}
.yec{bottom:34.114588pt;}
.y142{bottom:34.876929pt;}
.y144{bottom:36.039875pt;}
.yf7{bottom:36.627017pt;}
.y18e{bottom:37.370164pt;}
.yfe{bottom:37.719378pt;}
.y13a{bottom:38.835884pt;}
.y31{bottom:38.856283pt;}
.y173{bottom:39.249699pt;}
.y64{bottom:39.613333pt;}
.y13c{bottom:39.974086pt;}
.y85{bottom:40.490249pt;}
.ya2{bottom:40.706517pt;}
.y164{bottom:41.793813pt;}
.y17a{bottom:42.772294pt;}
.y7f{bottom:44.328518pt;}
.y16d{bottom:44.900162pt;}
.yd6{bottom:45.842738pt;}
.yff{bottom:45.869136pt;}
.ye2{bottom:45.888253pt;}
.yed{bottom:45.890983pt;}
.ycb{bottom:45.933768pt;}
.y15{bottom:45.952000pt;}
.y30{bottom:49.735145pt;}
.y117{bottom:51.358973pt;}
.y112{bottom:51.359006pt;}
.y1c4{bottom:51.359531pt;}
.y1bf{bottom:51.359565pt;}
.y18c{bottom:54.911256pt;}
.y141{bottom:55.562492pt;}
.y12a{bottom:56.585767pt;}
.y137{bottom:56.625504pt;}
.y11b{bottom:58.531707pt;}
.y5c{bottom:59.066667pt;}
.y4e{bottom:59.133333pt;}
.ya1{bottom:59.200295pt;}
.y172{bottom:59.302627pt;}
.y1d3{bottom:61.760000pt;}
.y24{bottom:64.064000pt;}
.y43{bottom:64.163038pt;}
.y179{bottom:64.586715pt;}
.y165{bottom:65.490173pt;}
.yd7{bottom:65.532539pt;}
.ye3{bottom:65.550745pt;}
.y100{bottom:65.554386pt;}
.yee{bottom:65.572592pt;}
.ycc{bottom:65.596260pt;}
.ya8{bottom:67.728002pt;}
.y119{bottom:68.086385pt;}
.y1c6{bottom:68.087126pt;}
.y14{bottom:68.352000pt;}
.y114{bottom:68.464659pt;}
.y1c1{bottom:68.465404pt;}
.y111{bottom:68.569736pt;}
.y1be{bottom:68.570482pt;}
.y18d{bottom:70.831388pt;}
.y2d{bottom:71.699886pt;}
.y65{bottom:75.333333pt;}
.ya0{bottom:77.362287pt;}
.y160{bottom:79.328000pt;}
.y5e{bottom:79.653333pt;}
.y50{bottom:79.706667pt;}
.y11a{bottom:81.433061pt;}
.y1b{bottom:82.496000pt;}
.y16c{bottom:82.754878pt;}
.yd8{bottom:85.213238pt;}
.y101{bottom:85.216879pt;}
.ye4{bottom:85.231444pt;}
.yef{bottom:85.262394pt;}
.ycd{bottom:85.276959pt;}
.y13f{bottom:89.535309pt;}
.y54{bottom:90.266667pt;}
.y46{bottom:90.333333pt;}
.y1d2{bottom:90.560000pt;}
.y13{bottom:90.784000pt;}
.yb7{bottom:90.848000pt;}
.y13e{bottom:91.514784pt;}
.yde{bottom:93.032720pt;}
.y107{bottom:93.063670pt;}
.yea{bottom:93.078235pt;}
.yf5{bottom:93.081876pt;}
.yd3{bottom:93.123750pt;}
.y9e{bottom:95.506831pt;}
.y6e{bottom:98.493333pt;}
.y2c{bottom:100.876384pt;}
.y23{bottom:102.464000pt;}
.yd9{bottom:104.893937pt;}
.y102{bottom:104.897578pt;}
.ye5{bottom:104.921246pt;}
.yf8{bottom:104.924887pt;}
.yf0{bottom:104.943093pt;}
.yce{bottom:104.966761pt;}
.y12b{bottom:105.994730pt;}
.y138{bottom:106.022961pt;}
.y19{bottom:106.464000pt;}
.y66{bottom:111.066667pt;}
.y9d{bottom:113.669521pt;}
.y18f{bottom:116.793937pt;}
.y1d1{bottom:119.360000pt;}
.y191{bottom:120.267420pt;}
.y10c{bottom:120.500175pt;}
.y192{bottom:121.023225pt;}
.y76{bottom:121.088000pt;}
.y55{bottom:124.160000pt;}
.y47{bottom:124.226667pt;}
.yc3{bottom:124.362145pt;}
.yda{bottom:124.583738pt;}
.y103{bottom:124.587379pt;}
.ye6{bottom:124.601944pt;}
.yf9{bottom:124.605586pt;}
.yf1{bottom:124.632895pt;}
.ycf{bottom:124.647459pt;}
.y2b{bottom:130.611932pt;}
.y72{bottom:131.493333pt;}
.y9c{bottom:131.828023pt;}
.yc8{bottom:138.760805pt;}
.ye{bottom:139.613333pt;}
.y18{bottom:140.546667pt;}
.y29{bottom:140.765513pt;}
.y10a{bottom:140.881806pt;}
.y190{bottom:144.099376pt;}
.ydb{bottom:144.264437pt;}
.y104{bottom:144.268078pt;}
.ye7{bottom:144.291746pt;}
.yfa{bottom:144.295387pt;}
.yf2{bottom:144.313593pt;}
.yd0{bottom:144.328158pt;}
.y61{bottom:144.480000pt;}
.y12d{bottom:144.652630pt;}
.y67{bottom:146.786667pt;}
.y11c{bottom:147.992997pt;}
.y1d0{bottom:148.160000pt;}
.y9a{bottom:149.972567pt;}
.yc2{bottom:150.293745pt;}
.y2f{bottom:150.934230pt;}
.y62{bottom:153.733333pt;}
.y12c{bottom:155.404723pt;}
.y139{bottom:155.417331pt;}
.y56{bottom:158.053333pt;}
.y48{bottom:158.106667pt;}
.y53{bottom:161.440000pt;}
.y45{bottom:163.360000pt;}
.ydc{bottom:163.954239pt;}
.y105{bottom:163.957880pt;}
.ye8{bottom:163.972445pt;}
.yfb{bottom:163.976086pt;}
.yf3{bottom:163.994292pt;}
.yd1{bottom:164.017960pt;}
.y168{bottom:165.014886pt;}
.y71{bottom:165.346667pt;}
.y99{bottom:168.138048pt;}
.y174{bottom:169.003939pt;}
.y189{bottom:170.793740pt;}
.y63{bottom:170.880000pt;}
.yac{bottom:172.000000pt;}
.y10b{bottom:172.915283pt;}
.y18a{bottom:173.278246pt;}
.y1cf{bottom:176.960000pt;}
.y17b{bottom:177.785929pt;}
.y22{bottom:179.293333pt;}
.y32{bottom:179.722919pt;}
.y2a{bottom:180.281965pt;}
.y27{bottom:180.367613pt;}
.y68{bottom:182.533333pt;}
.y98{bottom:186.296550pt;}
.y167{bottom:190.488473pt;}
.y57{bottom:191.933333pt;}
.y49{bottom:192.000000pt;}
.y18b{bottom:195.333257pt;}
.yf{bottom:198.053333pt;}
.y97{bottom:204.441095pt;}
.ybc{bottom:206.150195pt;}
.ybf{bottom:206.876240pt;}
.y1ad{bottom:207.933333pt;}
.y185{bottom:210.394107pt;}
.y36{bottom:213.053333pt;}
.y166{bottom:217.146878pt;}
.y69{bottom:218.240000pt;}
.y187{bottom:218.393328pt;}
.y188{bottom:218.626502pt;}
.y25{bottom:220.800000pt;}
.y96{bottom:222.606576pt;}
.y58{bottom:225.826667pt;}
.y4a{bottom:225.893333pt;}
.yca{bottom:226.046004pt;}
.yd5{bottom:228.667670pt;}
.y186{bottom:229.818838pt;}
.y1b2{bottom:230.426667pt;}
.y140{bottom:230.502084pt;}
.ye1{bottom:231.070864pt;}
.y162{bottom:231.493333pt;}
.y19f{bottom:232.133333pt;}
.y1af{bottom:233.306667pt;}
.y1ce{bottom:234.586667pt;}
.y178{bottom:238.394558pt;}
.y1ac{bottom:239.933333pt;}
.y95{bottom:240.765078pt;}
.y28{bottom:242.049745pt;}
.y163{bottom:242.398390pt;}
.y171{bottom:242.679837pt;}
.y35{bottom:245.053333pt;}
.yd{bottom:249.666667pt;}
.yc1{bottom:250.811807pt;}
.yc0{bottom:252.960509pt;}
.y6a{bottom:253.946667pt;}
.y156{bottom:257.626667pt;}
.y94{bottom:258.909622pt;}
.y77{bottom:259.386667pt;}
.y59{bottom:259.706667pt;}
.y4b{bottom:259.773333pt;}
.y161{bottom:260.293333pt;}
.y15f{bottom:260.480000pt;}
.y1b1{bottom:262.426667pt;}
.ybb{bottom:263.113406pt;}
.y1cd{bottom:263.386667pt;}
.y60{bottom:272.800000pt;}
.y52{bottom:272.826667pt;}
.y17d{bottom:273.666667pt;}
.y1d8{bottom:274.626667pt;}
.y34{bottom:277.053333pt;}
.y93{bottom:277.075103pt;}
.yc{bottom:278.466667pt;}
.y17e{bottom:286.333333pt;}
.y1dc{bottom:288.506667pt;}
.y155{bottom:289.666667pt;}
.y6b{bottom:289.693333pt;}
.y1cc{bottom:292.186667pt;}
.y5a{bottom:293.600000pt;}
.y4c{bottom:293.666667pt;}
.y92{bottom:295.233605pt;}
.y158{bottom:296.453333pt;}
.y70{bottom:298.720000pt;}
.y1b7{bottom:299.586667pt;}
.y175{bottom:300.066667pt;}
.y169{bottom:302.466667pt;}
.y1d7{bottom:303.426667pt;}
.y74{bottom:306.720000pt;}
.y5f{bottom:309.120000pt;}
.y51{bottom:309.146667pt;}
.y1b6{bottom:314.786667pt;}
.y90{bottom:316.169618pt;}
.y1db{bottom:317.306667pt;}
.y1b8{bottom:322.213333pt;}
.y1a{bottom:323.746667pt;}
.y17c{bottom:324.866667pt;}
.y6c{bottom:325.413333pt;}
.yc9{bottom:326.237211pt;}
.y5b{bottom:327.493333pt;}
.y4d{bottom:327.546667pt;}
.y1f{bottom:331.653333pt;}
.y26{bottom:336.740007pt;}
.y8f{bottom:337.126567pt;}
.y6f{bottom:337.920000pt;}
.y181{bottom:344.413333pt;}
.y73{bottom:345.920000pt;}
.y1da{bottom:346.106667pt;}
.y10{bottom:349.573333pt;}
.y1cb{bottom:349.786667pt;}
.y8e{bottom:355.285069pt;}
.y180{bottom:359.586667pt;}
.y1d6{bottom:361.053333pt;}
.y1c7{bottom:361.946667pt;}
.ye0{bottom:366.845720pt;}
.y182{bottom:367.013333pt;}
.y38{bottom:369.328851pt;}
.yad{bottom:371.426667pt;}
.y8d{bottom:373.429614pt;}
.yab{bottom:386.053333pt;}
.y2{bottom:387.200000pt;}
.y17{bottom:391.040000pt;}
.y8c{bottom:391.595095pt;}
.y41{bottom:393.026667pt;}
.y75{bottom:399.520000pt;}
.yae{bottom:401.573333pt;}
.y42{bottom:402.117144pt;}
.y1d9{bottom:403.746667pt;}
.y1ca{bottom:407.426667pt;}
.y8a{bottom:409.753597pt;}
.y14b{bottom:410.213333pt;}
.yc7{bottom:410.694899pt;}
.y17f{bottom:423.586667pt;}
.y1{bottom:425.280000pt;}
.y88{bottom:427.898142pt;}
.y148{bottom:431.773333pt;}
.y14a{bottom:432.773333pt;}
.y147{bottom:433.573333pt;}
.y19e{bottom:434.586667pt;}
.y1ae{bottom:435.746667pt;}
.y1c9{bottom:436.226667pt;}
.y1e{bottom:441.213333pt;}
.y109{bottom:443.028776pt;}
.y7d{bottom:446.412556pt;}
.y1bd{bottom:451.306667pt;}
.y1d5{bottom:457.600000pt;}
.y1b9{bottom:457.666667pt;}
.y1ba{bottom:458.466667pt;}
.y1a0{bottom:463.266667pt;}
.y1b0{bottom:463.546667pt;}
.yaf{bottom:464.720000pt;}
.y1b3{bottom:469.053333pt;}
.y15d{bottom:478.466667pt;}
.y151{bottom:479.360000pt;}
.y152{bottom:479.840000pt;}
.y177{bottom:481.946667pt;}
.y149{bottom:486.746667pt;}
.y110{bottom:486.853333pt;}
.y14c{bottom:486.946667pt;}
.y146{bottom:487.746667pt;}
.y19d{bottom:492.640000pt;}
.y199{bottom:493.826667pt;}
.y5{bottom:493.946667pt;}
.y170{bottom:494.173333pt;}
.y1a6{bottom:495.013333pt;}
.y197{bottom:496.706667pt;}
.y1a4{bottom:497.893333pt;}
.y194{bottom:497.986667pt;}
.y1a1{bottom:499.173333pt;}
.y15b{bottom:500.026667pt;}
.y15c{bottom:501.026667pt;}
.y15a{bottom:501.826667pt;}
.y183{bottom:502.493333pt;}
.y184{bottom:503.266667pt;}
.y150{bottom:507.200000pt;}
.y78{bottom:509.826667pt;}
.y3d{bottom:517.120000pt;}
.y40{bottom:517.413333pt;}
.y193{bottom:523.426667pt;}
.y7c{bottom:526.533333pt;}
.y176{bottom:526.746667pt;}
.y16a{bottom:529.986667pt;}
.y19a{bottom:533.280000pt;}
.y19b{bottom:533.306667pt;}
.y195{bottom:533.946667pt;}
.y1a7{bottom:534.426667pt;}
.y1a8{bottom:534.493333pt;}
.y198{bottom:534.626667pt;}
.y1a2{bottom:535.133333pt;}
.y1a5{bottom:535.813333pt;}
.y9{bottom:539.680000pt;}
.yba{bottom:541.946667pt;}
.y4{bottom:544.706667pt;}
.y3c{bottom:545.920000pt;}
.y3f{bottom:546.213333pt;}
.y14f{bottom:554.973333pt;}
.y15e{bottom:555.200000pt;}
.y159{bottom:556.000000pt;}
.y3b{bottom:558.786667pt;}
.y19c{bottom:566.080000pt;}
.y1a9{bottom:567.266667pt;}
.y196{bottom:568.253333pt;}
.ya6{bottom:568.609086pt;}
.y1a3{bottom:569.413333pt;}
.y3e{bottom:575.013333pt;}
.y8{bottom:583.680000pt;}
.yb6{bottom:585.733333pt;}
.y12{bottom:586.053333pt;}
.y3{bottom:595.906667pt;}
.yb9{bottom:599.546667pt;}
.y21{bottom:601.693333pt;}
.yc5{bottom:604.133333pt;}
.y1bc{bottom:611.426667pt;}
.y1d{bottom:613.253333pt;}
.y10f{bottom:613.986667pt;}
.y3a{bottom:616.413333pt;}
.y14e{bottom:617.600000pt;}
.yb4{bottom:617.760000pt;}
.y7b{bottom:622.426667pt;}
.yb5{bottom:643.360000pt;}
.y11{bottom:643.653333pt;}
.y7{bottom:645.600000pt;}
.y1c8{bottom:648.413333pt;}
.yb8{bottom:657.186667pt;}
.y20{bottom:659.293333pt;}
.y33{bottom:660.733333pt;}
.y6{bottom:661.600000pt;}
.yc4{bottom:661.760000pt;}
.y1bb{bottom:669.053333pt;}
.y1c{bottom:670.880000pt;}
.y10e{bottom:671.613333pt;}
.y39{bottom:674.013333pt;}
.y14d{bottom:675.200000pt;}
.yb3{bottom:675.386667pt;}
.y7a{bottom:680.026667pt;}
.h33{height:17.795611pt;}
.h34{height:17.813058pt;}
.h37{height:18.144545pt;}
.h31{height:18.161991pt;}
.h36{height:20.587080pt;}
.h35{height:20.604526pt;}
.h3b{height:23.047061pt;}
.h90{height:24.369034pt;}
.h61{height:33.799448pt;}
.h5e{height:33.810138pt;}
.h5d{height:33.829656pt;}
.h60{height:33.845085pt;}
.h8e{height:34.351530pt;}
.h8d{height:34.374839pt;}
.h91{height:34.433599pt;}
.h88{height:35.386875pt;}
.h38{height:35.957603pt;}
.h1c{height:36.068097pt;}
.h8b{height:41.457925pt;}
.h3c{height:42.388373pt;}
.h64{height:42.890334pt;}
.h65{height:42.891159pt;}
.h5b{height:42.976115pt;}
.h4d{height:43.459741pt;}
.h4c{height:43.546661pt;}
.h8c{height:46.235661pt;}
.h4f{height:48.240313pt;}
.h4e{height:48.242123pt;}
.h67{height:50.181691pt;}
.h63{height:50.266505pt;}
.h62{height:50.267472pt;}
.h3a{height:54.119594pt;}
.h5{height:54.390938pt;}
.h92{height:55.000000pt;}
.h17{height:55.468750pt;}
.h94{height:55.579687pt;}
.h39{height:55.598915pt;}
.h69{height:56.820000pt;}
.h70{height:56.917128pt;}
.h68{height:57.003027pt;}
.h32{height:57.236586pt;}
.h2f{height:57.236969pt;}
.h51{height:59.504002pt;}
.h52{height:59.593482pt;}
.h43{height:59.905748pt;}
.h30{height:60.000540pt;}
.h93{height:61.762083pt;}
.h96{height:61.868750pt;}
.h59{height:62.704361pt;}
.h9c{height:62.705043pt;}
.h56{height:62.787967pt;}
.h99{height:62.788650pt;}
.h1b{height:64.201212pt;}
.h19{height:64.249303pt;}
.he{height:64.898438pt;}
.hd{height:65.009375pt;}
.h42{height:65.521394pt;}
.h8f{height:65.994490pt;}
.h8a{height:66.073525pt;}
.h1a{height:66.092264pt;}
.h58{height:66.402430pt;}
.h9b{height:66.403152pt;}
.h48{height:67.109777pt;}
.h54{height:67.199257pt;}
.h53{height:68.770166pt;}
.h6f{height:73.773438pt;}
.h7{height:74.477812pt;}
.h71{height:75.821437pt;}
.h22{height:79.529368pt;}
.h87{height:81.480000pt;}
.h2d{height:82.500000pt;}
.h9{height:83.203125pt;}
.h20{height:83.314062pt;}
.h8{height:83.343750pt;}
.h95{height:83.454875pt;}
.h26{height:84.268750pt;}
.h28{height:84.662813pt;}
.h29{height:84.790125pt;}
.h66{height:85.780669pt;}
.h78{height:88.080964pt;}
.h55{height:88.206747pt;}
.h98{height:88.207707pt;}
.h46{height:88.245578pt;}
.h79{height:88.660444pt;}
.h21{height:89.035423pt;}
.h40{height:89.074286pt;}
.h4a{height:89.479703pt;}
.h49{height:89.569183pt;}
.h6d{height:91.850000pt;}
.h1d{height:92.632812pt;}
.h6a{height:92.789375pt;}
.h6c{height:92.900500pt;}
.h74{height:94.626925pt;}
.h24{height:95.484375pt;}
.h25{height:95.611688pt;}
.h45{height:96.443254pt;}
.h44{height:96.539697pt;}
.h10{height:98.901250pt;}
.h6b{height:99.903333pt;}
.h82{height:103.855761pt;}
.h7d{height:103.893243pt;}
.h1f{height:107.334268pt;}
.h2c{height:108.187500pt;}
.h77{height:109.005729pt;}
.ha{height:109.568250pt;}
.hf{height:110.937500pt;}
.h7a{height:111.048437pt;}
.h16{height:111.125000pt;}
.h15{height:111.236125pt;}
.h6{height:112.883840pt;}
.h3e{height:117.796045pt;}
.h3f{height:119.897581pt;}
.h2e{height:121.847596pt;}
.h86{height:122.586875pt;}
.h1{height:127.312500pt;}
.h2{height:127.439813pt;}
.h7b{height:129.242188pt;}
.h80{height:129.353125pt;}
.h2a{height:129.460625pt;}
.h2b{height:129.571750pt;}
.h76{height:130.329375pt;}
.h85{height:130.427000pt;}
.h57{height:131.210604pt;}
.h9a{height:131.212031pt;}
.h84{height:133.702058pt;}
.h7f{height:133.750311pt;}
.h75{height:134.343783pt;}
.h3d{height:145.247080pt;}
.h73{height:152.858878pt;}
.hb{height:166.406250pt;}
.hc{height:166.517188pt;}
.h13{height:166.687500pt;}
.h14{height:166.798625pt;}
.h3{height:174.968437pt;}
.h4{height:175.099500pt;}
.h50{height:178.273267pt;}
.h4b{height:178.382503pt;}
.h5c{height:180.253832pt;}
.h5f{height:180.256360pt;}
.h83{height:183.734534pt;}
.h7e{height:188.575625pt;}
.h7c{height:188.733440pt;}
.h81{height:197.509057pt;}
.h9d{height:198.524062pt;}
.h6e{height:203.570312pt;}
.h97{height:203.681250pt;}
.h11{height:209.738583pt;}
.h72{height:234.001556pt;}
.h5a{height:260.920156pt;}
.h12{height:277.454687pt;}
.h89{height:279.229477pt;}
.h41{height:282.098128pt;}
.h18{height:334.222803pt;}
.h23{height:352.320000pt;}
.h27{height:378.400000pt;}
.h47{height:470.042811pt;}
.h1e{height:606.845138pt;}
.h0{height:720.000000pt;}
.w13{width:28.979130pt;}
.w7{width:28.979141pt;}
.w8{width:28.996588pt;}
.wd{width:34.911040pt;}
.wf{width:34.911042pt;}
.w9{width:34.911051pt;}
.we{width:34.928487pt;}
.w10{width:34.928489pt;}
.wa{width:34.928498pt;}
.w12{width:42.954012pt;}
.w17{width:42.954026pt;}
.w11{width:79.962152pt;}
.w16{width:79.962166pt;}
.wc{width:105.469363pt;}
.w14{width:105.469365pt;}
.w15{width:105.469379pt;}
.w18{width:116.984247pt;}
.w4{width:197.366447pt;}
.w1c{width:213.673776pt;}
.w1d{width:213.783016pt;}
.w2{width:290.575039pt;}
.w19{width:304.279479pt;}
.w23{width:331.849039pt;}
.w3{width:335.362072pt;}
.w22{width:347.695854pt;}
.w21{width:404.440207pt;}
.w5{width:407.840000pt;}
.w20{width:436.112489pt;}
.w26{width:447.031204pt;}
.wb{width:452.569844pt;}
.w6{width:599.360000pt;}
.w1e{width:666.917943pt;}
.w1b{width:691.162564pt;}
.w1a{width:765.181558pt;}
.w25{width:959.648445pt;}
.w24{width:966.058311pt;}
.w1f{width:967.736697pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x58{left:1.744681pt;}
.x1d{left:6.193213pt;}
.x1f{left:9.687341pt;}
.x24{left:12.128945pt;}
.x56{left:13.622470pt;}
.xe{left:14.559981pt;}
.x3f{left:16.159981pt;}
.x1e{left:17.145111pt;}
.x4e{left:18.863489pt;}
.x23{left:21.073434pt;}
.x76{left:22.994148pt;}
.xfa{left:23.903981pt;}
.x5c{left:25.137351pt;}
.x5d{left:27.579894pt;}
.x74{left:28.936815pt;}
.x83{left:30.124436pt;}
.x53{left:31.069263pt;}
.x99{left:32.250255pt;}
.xd5{left:33.185683pt;}
.xd7{left:35.825369pt;}
.x75{left:37.370157pt;}
.x98{left:38.508871pt;}
.xf8{left:39.935981pt;}
.x5b{left:40.860402pt;}
.x5e{left:42.687981pt;}
.x42{left:45.253333pt;}
.xac{left:47.024884pt;}
.x3b{left:49.253333pt;}
.xd9{left:50.858277pt;}
.x37{left:51.942330pt;}
.x22{left:55.568140pt;}
.xeb{left:57.183981pt;}
.xf5{left:58.655981pt;}
.x39{left:59.586667pt;}
.xcb{left:60.896309pt;}
.x35{left:64.063981pt;}
.x2{left:68.191981pt;}
.x79{left:69.112620pt;}
.x77{left:70.100333pt;}
.xaa{left:74.713385pt;}
.x9{left:75.807981pt;}
.xc1{left:78.335981pt;}
.xa{left:80.607981pt;}
.xd8{left:81.850381pt;}
.x8d{left:83.388673pt;}
.x9a{left:85.718607pt;}
.x86{left:87.497752pt;}
.x25{left:88.399856pt;}
.x85{left:90.229724pt;}
.x14{left:92.031981pt;}
.x8e{left:93.282031pt;}
.x48{left:94.399981pt;}
.xca{left:95.368718pt;}
.xcd{left:98.549855pt;}
.xc3{left:100.095981pt;}
.x43{left:101.693333pt;}
.x49{left:106.815981pt;}
.x8f{left:107.755188pt;}
.x45{left:108.893333pt;}
.xda{left:110.644158pt;}
.xc9{left:111.775981pt;}
.x2f{left:113.675097pt;}
.x80{left:115.953895pt;}
.x2a{left:118.559981pt;}
.x84{left:122.234131pt;}
.x3c{left:127.386667pt;}
.x81{left:128.863981pt;}
.x9b{left:131.041377pt;}
.x3a{left:133.373333pt;}
.x16{left:142.373314pt;}
.x15{left:143.906648pt;}
.x31{left:147.173314pt;}
.x8a{left:156.140965pt;}
.xde{left:167.266648pt;}
.x90{left:170.083329pt;}
.x9c{left:172.025336pt;}
.x27{left:174.566113pt;}
.x47{left:176.093314pt;}
.x6c{left:179.801184pt;}
.x28{left:183.329295pt;}
.x9d{left:187.131206pt;}
.xad{left:188.884130pt;}
.x29{left:189.821101pt;}
.x26{left:192.540709pt;}
.x91{left:194.569389pt;}
.xcc{left:196.408530pt;}
.xc2{left:200.706648pt;}
.x9e{left:202.237076pt;}
.x6d{left:203.790360pt;}
.x7f{left:209.490783pt;}
.x92{left:211.882768pt;}
.x70{left:213.666648pt;}
.x6f{left:219.331820pt;}
.xdb{left:223.189947pt;}
.x93{left:226.228135pt;}
.x9f{left:228.115165pt;}
.xe1{left:229.253314pt;}
.x20{left:231.521762pt;}
.x94{left:236.245161pt;}
.x21{left:237.192649pt;}
.xa0{left:243.221036pt;}
.x46{left:249.093333pt;}
.x95{left:250.590528pt;}
.xa1{left:258.326906pt;}
.x4a{left:259.519981pt;}
.xea{left:264.799981pt;}
.x18{left:267.013314pt;}
.xf0{left:269.599981pt;}
.xa2{left:273.432776pt;}
.x71{left:288.477370pt;}
.x4{left:291.586648pt;}
.x6a{left:293.085088pt;}
.x12{left:296.826648pt;}
.x3{left:297.826648pt;}
.xa3{left:299.310865pt;}
.x67{left:300.253314pt;}
.xf3{left:302.493314pt;}
.xdc{left:303.717638pt;}
.x1a{left:304.666648pt;}
.xd6{left:307.360078pt;}
.x96{left:313.042336pt;}
.xa4{left:314.416735pt;}
.xf7{left:316.394402pt;}
.x69{left:321.853314pt;}
.x97{left:323.183029pt;}
.x6b{left:325.561261pt;}
.xc0{left:326.853314pt;}
.x68{left:327.933314pt;}
.xa5{left:329.522605pt;}
.x73{left:331.736470pt;}
.x63{left:334.693314pt;}
.x34{left:337.279981pt;}
.x33{left:345.279981pt;}
.x66{left:350.973314pt;}
.x10{left:354.306648pt;}
.x7d{left:357.638648pt;}
.x65{left:359.493314pt;}
.x4b{left:361.466648pt;}
.x40{left:366.746648pt;}
.x32{left:368.479981pt;}
.x17{left:371.519981pt;}
.xb4{left:374.533314pt;}
.x8{left:376.866648pt;}
.xe0{left:384.253314pt;}
.xc{left:386.746648pt;}
.x88{left:391.080074pt;}
.xd1{left:393.699982pt;}
.xc4{left:403.333314pt;}
.x7a{left:407.870921pt;}
.xfd{left:415.493314pt;}
.x89{left:424.389166pt;}
.x7e{left:426.287002pt;}
.x6e{left:429.288733pt;}
.xb{left:430.626648pt;}
.x11{left:431.906648pt;}
.xbc{left:436.986648pt;}
.x1{left:441.506648pt;}
.xd4{left:443.493314pt;}
.xf6{left:448.613314pt;}
.x2e{left:454.812639pt;}
.xbd{left:461.626648pt;}
.xf4{left:470.586648pt;}
.xb2{left:474.693314pt;}
.x64{left:486.213314pt;}
.x36{left:488.507570pt;}
.xa8{left:493.997903pt;}
.xd2{left:511.066648pt;}
.xd{left:516.986648pt;}
.x72{left:522.309099pt;}
.x8b{left:528.216751pt;}
.x44{left:534.053333pt;}
.x19{left:536.066648pt;}
.x82{left:537.253314pt;}
.xdf{left:538.879981pt;}
.x5{left:541.853314pt;}
.xf9{left:543.839981pt;}
.x7b{left:545.187207pt;}
.x30{left:547.906648pt;}
.xb3{left:553.093314pt;}
.xa9{left:557.940443pt;}
.x41{left:581.440000pt;}
.xfb{left:583.906648pt;}
.xd0{left:592.804616pt;}
.x1b{left:594.333314pt;}
.xce{left:597.256304pt;}
.xf{left:599.266648pt;}
.xb6{left:610.853314pt;}
.xbf{left:616.546648pt;}
.x87{left:622.352514pt;}
.xab{left:630.832046pt;}
.xc6{left:644.546648pt;}
.x62{left:646.879981pt;}
.x60{left:651.039981pt;}
.xef{left:657.826648pt;}
.x13{left:661.533314pt;}
.xb0{left:666.079981pt;}
.xb5{left:667.973314pt;}
.xa6{left:673.051458pt;}
.xb1{left:679.266648pt;}
.xe4{left:686.306648pt;}
.x8c{left:687.759998pt;}
.xdd{left:689.119981pt;}
.xe5{left:690.426648pt;}
.x5f{left:695.386648pt;}
.xa7{left:712.188173pt;}
.xcf{left:714.493314pt;}
.xbb{left:721.346648pt;}
.xd3{left:727.226648pt;}
.xb7{left:740.026648pt;}
.x3d{left:741.280000pt;}
.x38{left:742.720000pt;}
.xc5{left:752.226648pt;}
.x78{left:763.895128pt;}
.x7c{left:765.861458pt;}
.xae{left:778.906648pt;}
.xaf{left:780.933314pt;}
.xe2{left:797.826648pt;}
.x2c{left:802.559981pt;}
.x57{left:806.948883pt;}
.xe3{left:810.373314pt;}
.x2d{left:817.439981pt;}
.x2b{left:820.639981pt;}
.xf2{left:825.666648pt;}
.xc7{left:856.226648pt;}
.x1c{left:866.173314pt;}
.x4c{left:872.799981pt;}
.xee{left:893.093314pt;}
.xf1{left:904.453314pt;}
.xc8{left:908.253314pt;}
.x59{left:912.767222pt;}
.x61{left:923.106648pt;}
.xed{left:927.106648pt;}
.xec{left:930.399981pt;}
.xb9{left:968.893314pt;}
.xe9{left:980.933314pt;}
.x5a{left:993.071327pt;}
.xe7{left:997.986648pt;}
.x6{left:1012.546648pt;}
.xe8{left:1014.813314pt;}
.x3e{left:1017.213314pt;}
.x4d{left:1036.374210pt;}
.xb8{left:1057.759981pt;}
.x4f{left:1065.698782pt;}
.xbe{left:1075.133314pt;}
.xfc{left:1085.253314pt;}
.x50{left:1095.030332pt;}
.xba{left:1098.079981pt;}
.x51{left:1124.375840pt;}
.x7{left:1148.506648pt;}
.x52{left:1153.707391pt;}
.xe6{left:1169.466648pt;}
.x54{left:1188.963872pt;}
.x55{left:1224.241290pt;}
}




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