
    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_5029ab8c602550d1555a0df9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1c2063ff9e45eda3d82b15ff.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5a8f7938c9479d6d23f2d6bc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8323f1637c7fe0cd5a3b7d1f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_20f483c05bd3240a956edd68.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6434f6c0c998738e493b7d07.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fd756f684b22e4a6c95535ed.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b7802186b1cf8d25aaf1783.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_75227a91827a12a032437c5b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_47b2208a04eb9958316916b4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_682607debd2faf65afa24a93.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0ae1beadabb5b09e82cdca00.woff')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fd11755c7af7688ed821882f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_fd6e755566866c001d0808c3.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_e50054b390afa330c6367ee3.woff')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f45e9ac4199f4692f8c4fea5.woff')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_393818f7d02aeb963d7c3c13.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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_dacaf5bb96138f921e90ab06.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f6e06220cb7686f860896700.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_afc194ba96289a2ccee10364.woff')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8557636099a94979799667e8.woff')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5524ae0d0c641c9a8d195d9a.woff')format("woff");}.ff16{font-family:ff16;line-height:1.284180;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_8d78d462008129d2226afefa.woff')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_db7142270bb5c1f6413fbf0a.woff')format("woff");}.ff18{font-family:ff18;line-height:1.364746;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_c90a1fb6791c759840e4d4c2.woff')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3db7b0008c37eaf8cdd4b06c.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_04ac409c33ab8e702edbcaeb.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_29e84b0de6520ff0ef7659e8.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.284180;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:ff1d;src:url('chunks/assets/font_db7142270bb5c1f6413fbf0a.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.364746;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:ff1e;src:url('chunks/assets/font_352aefb8afffb7f461b92631.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e5e044d76923b19d59bed156.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_dfbe5e74b281b676aaa2408d.woff')format("woff");}.ff20{font-family:ff20;line-height:1.364746;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:ff21;src:url('chunks/assets/font_c9a83ea7caf2f688b6cd3c30.woff')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_f78c9fe55821ce78b2086843.woff')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_bf3b6ef74c057c1d2bb7bc13.woff')format("woff");}.ff23{font-family:ff23;line-height:1.364746;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:ff24;src:url('chunks/assets/font_f4a76040e78e800dd243d5d0.woff')format("woff");}.ff24{font-family:ff24;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_87ff8152e30a4e19d6b83ffa.woff')format("woff");}.ff25{font-family:ff25;line-height:1.284180;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;}
.m3c{transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089286,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.129518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129518,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132716,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.136076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136076,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142405,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152299,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158333,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167391,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167614,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188202,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.210674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210674,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221963,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223333,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227778,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228395,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230519,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231308,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237069,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237745,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238372,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246124,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247126,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.md{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258621,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258721,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265244,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271368,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273109,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285088,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294643,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298165,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306818,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307018,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.473913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473913,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489130,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.504348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504348,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.519565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519565,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.534783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534783,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.554348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554348,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.573370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573370,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.684783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684783,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.789855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789855,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.815217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815217,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.823370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823370,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(1.326087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.326087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.326087,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(4.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.244565,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(5.586957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.586957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.586957,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-7.198200px;}
.v4{vertical-align:-5.754600px;}
.v3{vertical-align:-2.880600px;}
.v1{vertical-align:-1.466250px;}
.v0{vertical-align:0.000000px;}
.ls80{letter-spacing:-31.180800px;}
.ls79{letter-spacing:-15.680250px;}
.ls7c{letter-spacing:-15.270300px;}
.ls7f{letter-spacing:-14.952600px;}
.ls8b{letter-spacing:-14.479350px;}
.ls7e{letter-spacing:-14.466600px;}
.ls50{letter-spacing:-14.130450px;}
.ls65{letter-spacing:-13.832100px;}
.ls4d{letter-spacing:-13.781550px;}
.ls4c{letter-spacing:-13.498650px;}
.ls51{letter-spacing:-13.165350px;}
.ls8c{letter-spacing:-12.830400px;}
.ls4e{letter-spacing:-11.305575px;}
.ls4f{letter-spacing:-11.026425px;}
.ls8f{letter-spacing:-8.249550px;}
.ls84{letter-spacing:-7.840125px;}
.ls94{letter-spacing:-7.599150px;}
.ls85{letter-spacing:-6.718875px;}
.ls41{letter-spacing:-6.712200px;}
.ls64{letter-spacing:-6.153075px;}
.ls77{letter-spacing:-5.919750px;}
.ls78{letter-spacing:-5.859000px;}
.ls81{letter-spacing:-5.603625px;}
.ls43{letter-spacing:-4.800000px;}
.ls8d{letter-spacing:-4.667850px;}
.ls66{letter-spacing:-4.666500px;}
.ls1f{letter-spacing:-4.554450px;}
.ls83{letter-spacing:-4.397400px;}
.ls87{letter-spacing:-4.196250px;}
.ls12{letter-spacing:-4.123350px;}
.ls67{letter-spacing:-3.951975px;}
.ls35{letter-spacing:-3.888750px;}
.ls73{letter-spacing:-3.748500px;}
.ls5d{letter-spacing:-3.703875px;}
.ls86{letter-spacing:-3.660300px;}
.ls22{letter-spacing:-3.631500px;}
.ls42{letter-spacing:-3.198000px;}
.ls61{letter-spacing:-3.149850px;}
.ls89{letter-spacing:-3.111900px;}
.ls46{letter-spacing:-3.073275px;}
.ls20{letter-spacing:-3.034125px;}
.ls72{letter-spacing:-3.002625px;}
.ls47{letter-spacing:-2.999250px;}
.ls5a{letter-spacing:-2.964375px;}
.ls76{letter-spacing:-2.929500px;}
.ls11{letter-spacing:-2.748900px;}
.ls40{letter-spacing:-2.400000px;}
.ls93{letter-spacing:-2.355525px;}
.ls8a{letter-spacing:-2.337000px;}
.ls34{letter-spacing:-2.333250px;}
.ls44{letter-spacing:-2.303325px;}
.ls1e{letter-spacing:-2.277225px;}
.ls4a{letter-spacing:-2.276850px;}
.ls71{letter-spacing:-2.250375px;}
.ls8e{letter-spacing:-2.225025px;}
.ls58{letter-spacing:-2.224875px;}
.ls7b{letter-spacing:-2.198700px;}
.ls21{letter-spacing:-2.151600px;}
.ls23{letter-spacing:-2.121750px;}
.ls92{letter-spacing:-1.642200px;}
.ls3e{letter-spacing:-1.602000px;}
.ls32{letter-spacing:-1.555500px;}
.ls90{letter-spacing:-1.551000px;}
.ls1b{letter-spacing:-1.537800px;}
.ls45{letter-spacing:-1.533375px;}
.ls1d{letter-spacing:-1.520325px;}
.ls62{letter-spacing:-1.500750px;}
.ls74{letter-spacing:-1.498125px;}
.ls59{letter-spacing:-1.485375px;}
.ls70{letter-spacing:-1.467900px;}
.ls38{letter-spacing:-1.448550px;}
.ls14{letter-spacing:-1.374450px;}
.ls24{letter-spacing:-1.369650px;}
.ls27{letter-spacing:-0.845775px;}
.ls36{letter-spacing:-0.819000px;}
.ls3f{letter-spacing:-0.798000px;}
.ls48{letter-spacing:-0.789525px;}
.ls5e{letter-spacing:-0.782550px;}
.ls33{letter-spacing:-0.777750px;}
.ls60{letter-spacing:-0.774900px;}
.ls91{letter-spacing:-0.769950px;}
.ls1c{letter-spacing:-0.756900px;}
.ls82{letter-spacing:-0.752250px;}
.ls3a{letter-spacing:-0.749700px;}
.ls57{letter-spacing:-0.739500px;}
.ls7a{letter-spacing:-0.730800px;}
.ls39{letter-spacing:-0.722400px;}
.ls13{letter-spacing:-0.687225px;}
.lsf{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.730800px;}
.ls52{letter-spacing:0.739500px;}
.ls1{letter-spacing:0.756900px;}
.ls0{letter-spacing:0.771975px;}
.ls2a{letter-spacing:0.777750px;}
.ls3b{letter-spacing:0.789525px;}
.lsd{letter-spacing:0.791700px;}
.ls5c{letter-spacing:0.802575px;}
.ls5b{letter-spacing:0.805200px;}
.lse{letter-spacing:0.810525px;}
.ls28{letter-spacing:0.810900px;}
.ls19{letter-spacing:0.814275px;}
.ls6e{letter-spacing:1.467900px;}
.ls55{letter-spacing:1.485375px;}
.ls5f{letter-spacing:1.500750px;}
.ls4{letter-spacing:1.520325px;}
.ls88{letter-spacing:1.533375px;}
.ls2b{letter-spacing:1.555500px;}
.ls69{letter-spacing:1.572525px;}
.lsc{letter-spacing:1.583400px;}
.ls18{letter-spacing:1.619775px;}
.ls10{letter-spacing:1.621050px;}
.ls75{letter-spacing:1.650000px;}
.ls16{letter-spacing:2.123550px;}
.ls6d{letter-spacing:2.198700px;}
.ls54{letter-spacing:2.224875px;}
.ls2{letter-spacing:2.277225px;}
.ls1a{letter-spacing:2.315925px;}
.ls2e{letter-spacing:2.333250px;}
.lsb{letter-spacing:2.375100px;}
.ls25{letter-spacing:2.570400px;}
.ls5{letter-spacing:3.034125px;}
.ls29{letter-spacing:3.111000px;}
.lsa{letter-spacing:3.162450px;}
.ls68{letter-spacing:3.557775px;}
.ls6b{letter-spacing:3.660300px;}
.ls53{letter-spacing:3.703875px;}
.ls3{letter-spacing:3.791025px;}
.ls17{letter-spacing:3.807375px;}
.ls31{letter-spacing:3.888750px;}
.ls3d{letter-spacing:3.928050px;}
.ls26{letter-spacing:3.954150px;}
.ls7d{letter-spacing:3.984975px;}
.ls6c{letter-spacing:4.397400px;}
.ls7{letter-spacing:4.554450px;}
.ls2c{letter-spacing:4.666500px;}
.ls3c{letter-spacing:4.717575px;}
.ls15{letter-spacing:4.801650px;}
.ls4b{letter-spacing:5.089050px;}
.ls6f{letter-spacing:5.128200px;}
.ls56{letter-spacing:5.189250px;}
.ls8{letter-spacing:5.311350px;}
.ls2f{letter-spacing:5.444250px;}
.ls49{letter-spacing:5.500575px;}
.ls6{letter-spacing:6.068250px;}
.ls30{letter-spacing:6.222000px;}
.ls9{letter-spacing:6.825150px;}
.ls2d{letter-spacing:6.999750px;}
.ls37{letter-spacing:7.771125px;}
.ls63{letter-spacing:9.326625px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-39.938008px;}
._1c{margin-left:-25.237386px;}
._1e{margin-left:-23.884357px;}
._15{margin-left:-15.266058px;}
._1d{margin-left:-12.611525px;}
._19{margin-left:-10.898461px;}
._18{margin-left:-9.078825px;}
._14{margin-left:-8.077950px;}
._16{margin-left:-6.923311px;}
._f{margin-left:-5.435325px;}
._9{margin-left:-4.319550px;}
._8{margin-left:-2.349000px;}
._e{margin-left:-1.076625px;}
._12{width:1.024425px;}
._4{width:2.101050px;}
._13{width:3.123661px;}
._6{width:4.228200px;}
._7{width:6.009525px;}
._1b{width:7.017388px;}
._5{width:8.025750px;}
._a{width:9.604800px;}
._c{width:11.192189px;}
._d{width:12.919500px;}
._3{width:14.653336px;}
._17{width:16.178475px;}
._1{width:17.198475px;}
._b{width:18.219614px;}
._0{width:19.385100px;}
._10{width:21.435709px;}
._25{width:22.723411px;}
._1a{width:24.113414px;}
._2{width:25.397529px;}
._26{width:102.573000px;}
._20{width:151.380000px;}
._22{width:171.758676px;}
._1f{width:187.391475px;}
._21{width:199.325700px;}
._3d{width:215.472525px;}
._32{width:255.021750px;}
._34{width:261.381750px;}
._33{width:262.461061px;}
._31{width:295.362914px;}
._3a{width:306.931294px;}
._37{width:317.133442px;}
._2b{width:331.257750px;}
._2a{width:333.336000px;}
._29{width:335.101875px;}
._2d{width:347.035875px;}
._2c{width:348.999375px;}
._35{width:350.392500px;}
._30{width:353.589823px;}
._28{width:360.729375px;}
._27{width:364.426875px;}
._40{width:388.152675px;}
._2e{width:393.588000px;}
._39{width:417.907868px;}
._38{width:474.613583px;}
._23{width:494.370810px;}
._24{width:505.946773px;}
._2f{width:525.198000px;}
._3c{width:620.172000px;}
._3b{width:627.489586px;}
._3f{width:668.167200px;}
._36{width:681.023195px;}
._3e{width:913.429800px;}
.fc0{color:transparent;}
.fs10{font-size:17.250000px;}
.fs11{font-size:24.000000px;}
.fs28{font-size:34.500000px;}
.fs20{font-size:42.000000px;}
.fs12{font-size:43.500000px;}
.fs13{font-size:45.000000px;}
.fs14{font-size:47.250000px;}
.fs5{font-size:48.750000px;}
.fs4{font-size:49.500000px;}
.fs16{font-size:51.000000px;}
.fs6{font-size:51.750000px;}
.fs1a{font-size:52.500000px;}
.fs8{font-size:54.750000px;}
.fs21{font-size:55.500000px;}
.fs1c{font-size:56.250000px;}
.fs7{font-size:57.750000px;}
.fs1b{font-size:58.500000px;}
.fs1f{font-size:59.250000px;}
.fs1e{font-size:60.000000px;}
.fsc{font-size:60.750000px;}
.fsf{font-size:61.500000px;}
.fs22{font-size:62.250000px;}
.fs18{font-size:63.000000px;}
.fs17{font-size:63.750000px;}
.fs1d{font-size:64.500000px;}
.fsa{font-size:65.250000px;}
.fs9{font-size:66.000000px;}
.fsd{font-size:66.750000px;}
.fse{font-size:67.500000px;}
.fs19{font-size:69.000000px;}
.fsb{font-size:69.750000px;}
.fs24{font-size:76.500000px;}
.fs0{font-size:80.250000px;}
.fs23{font-size:81.750000px;}
.fs1{font-size:82.500000px;}
.fs27{font-size:84.000000px;}
.fs25{font-size:85.500000px;}
.fs15{font-size:86.250000px;}
.fs26{font-size:87.750000px;}
.fs2{font-size:89.250000px;}
.fs3{font-size:96.750000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:44.544315px;}
.y11c{bottom:45.623715px;}
.y180{bottom:47.064015px;}
.y14c{bottom:47.784165px;}
.y35{bottom:52.103415px;}
.y74{bottom:52.464315px;}
.y11b{bottom:65.781240px;}
.yb4{bottom:66.144015px;}
.y17f{bottom:66.487065px;}
.y34{bottom:70.104015px;}
.y73{bottom:73.340453px;}
.y14b{bottom:73.343865px;}
.y33{bottom:78.923865px;}
.y11a{bottom:81.623115px;}
.yb2{bottom:82.341540px;}
.yb3{bottom:82.343265px;}
.y17e{bottom:82.693815px;}
.ye3{bottom:88.823115px;}
.y72{bottom:92.784202px;}
.y32{bottom:94.584315px;}
.y119{bottom:97.463265px;}
.y118{bottom:97.470015px;}
.yb1{bottom:98.183415px;}
.y17d{bottom:98.538315px;}
.y14a{bottom:98.903565px;}
.y149{bottom:99.623715px;}
.ye2{bottom:104.303865px;}
.y71{bottom:109.343265px;}
.y31{bottom:112.223865px;}
.y117{bottom:113.662515px;}
.yb0{bottom:114.012428px;}
.y17b{bottom:114.372165px;}
.y17c{bottom:114.382815px;}
.y147{bottom:114.743715px;}
.y148{bottom:115.463715px;}
.y146{bottom:116.543265px;}
.ye1{bottom:120.862515px;}
.y70{bottom:125.184653px;}
.y30{bottom:128.423265px;}
.y2f{bottom:128.426002px;}
.y116{bottom:129.495277px;}
.yaf{bottom:130.220865px;}
.y17a{bottom:130.925415px;}
.y145{bottom:131.303865px;}
.ye0{bottom:136.702515px;}
.y6e{bottom:141.737602px;}
.y6f{bottom:141.743715px;}
.y2e{bottom:144.624878px;}
.y115{bottom:145.703715px;}
.y114{bottom:145.706865px;}
.yae{bottom:146.062740px;}
.y179{bottom:146.769915px;}
.ydf{bottom:152.903565px;}
.y6d{bottom:157.579477px;}
.y144{bottom:158.303865px;}
.y2d{bottom:160.466340px;}
.y113{bottom:161.548740px;}
.yad{bottom:161.893215px;}
.y178{bottom:162.976665px;}
.yde{bottom:169.102815px;}
.y6c{bottom:173.771977px;}
.y2c{bottom:176.664652px;}
.y112{bottom:177.390615px;}
.yac{bottom:177.735090px;}
.y176{bottom:179.149515px;}
.y177{bottom:179.183415px;}
.ydd{bottom:185.303865px;}
.y6b{bottom:189.980415px;}
.y2b{bottom:192.863677px;}
.y110{bottom:193.575727px;}
.yab{bottom:193.576965px;}
.y111{bottom:193.583115px;}
.y175{bottom:194.994015px;}
.y143{bottom:196.824615px;}
.ydc{bottom:201.144015px;}
.y6a{bottom:205.822290px;}
.y2a{bottom:208.706415px;}
.yaa{bottom:209.418840px;}
.y10f{bottom:209.784165px;}
.y10e{bottom:209.784540px;}
.y174{bottom:211.200765px;}
.ydb{bottom:216.984015px;}
.y69{bottom:221.664165px;}
.y68{bottom:221.671065px;}
.y29{bottom:224.904728px;}
.y10d{bottom:225.626415px;}
.ya9{bottom:226.344465px;}
.ya8{bottom:226.349490px;}
.y173{bottom:227.045265px;}
.y142{bottom:229.219665px;}
.y67{bottom:237.867465px;}
.y28{bottom:240.744165px;}
.y27{bottom:240.745815px;}
.y10c{bottom:241.834853px;}
.ya7{bottom:242.191365px;}
.y172{bottom:243.252015px;}
.y66{bottom:254.059965px;}
.yd9{bottom:255.855428px;}
.yda{bottom:255.862515px;}
.y26{bottom:257.303002px;}
.y10b{bottom:257.676727px;}
.ya5{bottom:258.380265px;}
.ya6{bottom:258.383865px;}
.y171{bottom:259.096515px;}
.y25{bottom:272.783565px;}
.y24{bottom:272.787240px;}
.y65{bottom:273.503715px;}
.y10a{bottom:273.869228px;}
.ya4{bottom:274.222140px;}
.yd8{bottom:275.299928px;}
.y170{bottom:275.303265px;}
.y23{bottom:288.985553px;}
.y64{bottom:289.701390px;}
.y141{bottom:289.702477px;}
.y109{bottom:289.711103px;}
.ya3{bottom:290.064015px;}
.y16f{bottom:291.150315px;}
.yd7{bottom:294.923865px;}
.y22{bottom:305.183865px;}
.y63{bottom:305.543265px;}
.y62{bottom:305.548252px;}
.y140{bottom:306.086228px;}
.ya2{bottom:306.255878px;}
.y108{bottom:306.270165px;}
.y16e{bottom:307.703565px;}
.y1a2{bottom:315.998227px;}
.y21{bottom:321.383265px;}
.y20{bottom:321.386940px;}
.y61{bottom:321.756690px;}
.y13f{bottom:322.103415px;}
.y106{bottom:322.458578px;}
.y107{bottom:322.462665px;}
.ya1{bottom:322.464315px;}
.y16d{bottom:322.823565px;}
.y1a1{bottom:331.837665px;}
.yd6{bottom:337.223415px;}
.y1f{bottom:337.226378px;}
.y60{bottom:337.949190px;}
.y105{bottom:338.300453px;}
.ya0{bottom:338.659478px;}
.y16b{bottom:339.722415px;}
.y16c{bottom:339.743115px;}
.y13e{bottom:340.463265px;}
.y13d{bottom:348.024015px;}
.y1e{bottom:353.783565px;}
.y5f{bottom:354.141690px;}
.y9f{bottom:354.501353px;}
.y104{bottom:354.508890px;}
.y16a{bottom:355.566915px;}
.y1a0{bottom:360.629227px;}
.yd5{bottom:369.623715px;}
.y1d{bottom:369.624278px;}
.yd4{bottom:369.625628px;}
.y5e{bottom:370.350128px;}
.y9e{bottom:370.693853px;}
.y103{bottom:370.701390px;}
.y169{bottom:371.411415px;}
.y1c{bottom:385.463715px;}
.y5d{bottom:386.542628px;}
.y102{bottom:386.543265px;}
.y9d{bottom:386.902290px;}
.y168{bottom:387.618165px;}
.y19f{bottom:389.795977px;}
.y101{bottom:399.863565px;}
.y1b{bottom:401.671553px;}
.y100{bottom:402.383265px;}
.yff{bottom:402.385778px;}
.y9c{bottom:402.744165px;}
.y9b{bottom:402.752152px;}
.y5c{bottom:403.101690px;}
.y167{bottom:403.462665px;}
.y19e{bottom:405.994290px;}
.y1a{bottom:417.869865px;}
.y13c{bottom:418.581390px;}
.y5a{bottom:418.942927px;}
.y5b{bottom:418.943565px;}
.yd3{bottom:419.302815px;}
.y9a{bottom:419.311215px;}
.y165{bottom:419.655915px;}
.y166{bottom:419.663715px;}
.y19d{bottom:422.551477px;}
.y19{bottom:434.068178px;}
.y59{bottom:435.135427px;}
.y99{bottom:435.503715px;}
.y98{bottom:435.510615px;}
.yd2{bottom:435.511852px;}
.y19c{bottom:439.826415px;}
.y18{bottom:450.266490px;}
.y58{bottom:451.343865px;}
.y97{bottom:451.703115px;}
.y96{bottom:451.708740px;}
.yd1{bottom:452.070915px;}
.yfe{bottom:452.429528px;}
.y19b{bottom:455.306978px;}
.y17{bottom:466.823678px;}
.y13b{bottom:467.541390px;}
.y57{bottom:467.542628px;}
.y95{bottom:467.917177px;}
.yd0{bottom:468.263415px;}
.y164{bottom:468.622665px;}
.yfd{bottom:468.988590px;}
.y19a{bottom:471.864165px;}
.y16{bottom:482.663115px;}
.y15{bottom:482.667503px;}
.y13a{bottom:483.384503px;}
.y56{bottom:483.751065px;}
.ycf{bottom:484.462665px;}
.y94{bottom:484.476240px;}
.yfc{bottom:484.830465px;}
.y163{bottom:497.783115px;}
.y14{bottom:498.865815px;}
.y55{bottom:499.943565px;}
.y139{bottom:499.944652px;}
.y93{bottom:500.318115px;}
.yce{bottom:500.686553px;}
.yfb{bottom:501.022965px;}
.yf9{bottom:502.641053px;}
.yfa{bottom:502.642815px;}
.y199{bottom:511.103415px;}
.y13{bottom:515.064128px;}
.y162{bottom:515.422665px;}
.y138{bottom:516.501990px;}
.y92{bottom:516.510615px;}
.ycd{bottom:516.879053px;}
.yf8{bottom:517.223865px;}
.yf7{bottom:518.843865px;}
.y54{bottom:519.750465px;}
.y198{bottom:530.542665px;}
.y12{bottom:530.914778px;}
.y137{bottom:532.343228px;}
.y90{bottom:532.695090px;}
.y91{bottom:532.703115px;}
.ycc{bottom:533.438115px;}
.y52{bottom:535.935577px;}
.y53{bottom:535.942965px;}
.y197{bottom:540.623115px;}
.y15c{bottom:543.862965px;}
.y161{bottom:544.583115px;}
.y11{bottom:547.113090px;}
.y136{bottom:548.535728px;}
.y8f{bottom:548.536965px;}
.ycb{bottom:549.630615px;}
.yf6{bottom:551.062965px;}
.y50{bottom:552.142140px;}
.y51{bottom:552.144015px;}
.y196{bottom:558.982965px;}
.y15b{bottom:560.064015px;}
.y160{bottom:561.143415px;}
.y10{bottom:564.029153px;}
.y135{bottom:564.743528px;}
.y8e{bottom:565.096027px;}
.yca{bottom:565.839053px;}
.y4f{bottom:567.984015px;}
.y4e{bottom:567.992003px;}
.y15a{bottom:576.622665px;}
.y15f{bottom:577.342815px;}
.y15e{bottom:577.349715px;}
.yf{bottom:580.227465px;}
.y134{bottom:581.302590px;}
.y8d{bottom:581.304465px;}
.y8c{bottom:581.312452px;}
.yc9{bottom:582.031552px;}
.y195{bottom:583.463265px;}
.y194{bottom:583.464353px;}
.y4d{bottom:584.184503px;}
.y159{bottom:592.823565px;}
.yf5{bottom:593.182815px;}
.y15d{bottom:593.902965px;}
.ye{bottom:596.425778px;}
.y133{bottom:597.144465px;}
.y132{bottom:597.148365px;}
.y8b{bottom:597.504952px;}
.yc8{bottom:598.957178px;}
.y193{bottom:599.662665px;}
.y4c{bottom:600.743565px;}
.y4b{bottom:600.746715px;}
.yd{bottom:612.982965px;}
.yc{bottom:612.983528px;}
.y131{bottom:613.340865px;}
.y8a{bottom:614.064015px;}
.yc7{bottom:615.149678px;}
.y4a{bottom:616.588590px;}
.yf4{bottom:625.580115px;}
.y158{bottom:625.583115px;}
.yb{bottom:628.822965px;}
.ya{bottom:628.829753px;}
.y130{bottom:629.533365px;}
.y89{bottom:629.905253px;}
.yc6{bottom:631.342178px;}
.y192{bottom:632.423865px;}
.y191{bottom:632.428477px;}
.y49{bottom:632.781090px;}
.y9{bottom:645.028065px;}
.y12f{bottom:645.741803px;}
.y88{bottom:646.472302px;}
.yc5{bottom:647.550615px;}
.y48{bottom:650.423903px;}
.y157{bottom:658.338465px;}
.y8{bottom:661.226378px;}
.y12e{bottom:661.583678px;}
.y87{bottom:663.031365px;}
.yc3{bottom:663.735577px;}
.yc4{bottom:663.743115px;}
.y46{bottom:666.982328px;}
.y47{bottom:666.982965px;}
.yf3{bottom:674.173553px;}
.y12d{bottom:677.776178px;}
.y7{bottom:677.784278px;}
.y86{bottom:679.232003px;}
.yc2{bottom:679.944015px;}
.yc1{bottom:679.958265px;}
.y190{bottom:681.023415px;}
.y45{bottom:683.190765px;}
.yf2{bottom:690.015427px;}
.y6{bottom:693.623715px;}
.y12c{bottom:693.998865px;}
.y85{bottom:695.424503px;}
.yc0{bottom:696.150765px;}
.y18f{bottom:697.583715px;}
.y18e{bottom:697.586827px;}
.y43{bottom:699.371865px;}
.y44{bottom:699.383265px;}
.yf1{bottom:706.230727px;}
.y12b{bottom:710.191365px;}
.y83{bottom:711.976028px;}
.y84{bottom:711.983565px;}
.ybf{bottom:712.709827px;}
.y18d{bottom:714.144015px;}
.y18c{bottom:714.144952px;}
.y42{bottom:715.580303px;}
.y156{bottom:717.022965px;}
.yf0{bottom:722.423227px;}
.y12a{bottom:726.750428px;}
.y5{bottom:727.103415px;}
.y82{bottom:728.184465px;}
.ybe{bottom:728.902327px;}
.y18b{bottom:730.343265px;}
.y18a{bottom:730.347465px;}
.y41{bottom:731.772803px;}
.yef{bottom:738.615727px;}
.y129{bottom:742.942928px;}
.y81{bottom:744.745403px;}
.ybd{bottom:745.110765px;}
.y189{bottom:746.545778px;}
.y40{bottom:747.965303px;}
.y155{bottom:748.343865px;}
.y154{bottom:749.782515px;}
.yee{bottom:754.824165px;}
.y128{bottom:759.151365px;}
.ybc{bottom:761.303265px;}
.y80{bottom:761.304465px;}
.y188{bottom:763.102965px;}
.y3f{bottom:764.173740px;}
.y153{bottom:765.983565px;}
.y152{bottom:766.342815px;}
.yed{bottom:771.383227px;}
.y4{bottom:772.824165px;}
.y127{bottom:775.341503px;}
.y7f{bottom:777.512903px;}
.y187{bottom:779.306977px;}
.y3e{bottom:780.366240px;}
.y151{bottom:782.723415px;}
.yec{bottom:787.225103px;}
.y126{bottom:791.534002px;}
.y7e{bottom:793.705403px;}
.ybb{bottom:794.423865px;}
.y186{bottom:795.864165px;}
.y3d{bottom:796.574678px;}
.y150{bottom:799.104015px;}
.yeb{bottom:803.784165px;}
.yea{bottom:803.796690px;}
.y3{bottom:804.143415px;}
.y125{bottom:807.742440px;}
.y7d{bottom:810.264465px;}
.y3c{bottom:813.500302px;}
.ye9{bottom:819.989190px;}
.y124{bottom:823.585403px;}
.y7c{bottom:826.456965px;}
.y185{bottom:828.623715px;}
.y3b{bottom:829.342178px;}
.y14f{bottom:832.222815px;}
.ye8{bottom:836.181690px;}
.y2{bottom:836.543715px;}
.y123{bottom:840.144465px;}
.y122{bottom:840.158265px;}
.y7b{bottom:842.665403px;}
.yba{bottom:844.470615px;}
.y184{bottom:845.183865px;}
.y3a{bottom:845.901240px;}
.ye7{bottom:852.390127px;}
.y121{bottom:856.350765px;}
.y79{bottom:859.224053px;}
.y7a{bottom:859.224465px;}
.yb9{bottom:860.663115px;}
.y183{bottom:861.383265px;}
.y39{bottom:861.743115px;}
.ye6{bottom:868.582627px;}
.y120{bottom:872.543265px;}
.y14e{bottom:874.342815px;}
.y77{bottom:875.769502px;}
.y78{bottom:875.783115px;}
.yb8{bottom:877.231402px;}
.y182{bottom:877.943565px;}
.y38{bottom:878.302177px;}
.ye5{bottom:884.791065px;}
.y11f{bottom:888.751065px;}
.y76{bottom:891.977940px;}
.yb7{bottom:893.423903px;}
.y181{bottom:894.503715px;}
.y37{bottom:894.510615px;}
.ye4{bottom:900.983565px;}
.y11e{bottom:904.943565px;}
.y14d{bottom:907.104015px;}
.y1{bottom:908.183415px;}
.y75{bottom:908.903565px;}
.yb6{bottom:909.982965px;}
.y36{bottom:910.703115px;}
.y11d{bottom:990.264465px;}
.h13{height:17.991211px;}
.h14{height:25.031250px;}
.h54{height:35.982422px;}
.h15{height:42.692871px;}
.h36{height:43.804688px;}
.h16{height:44.165039px;}
.h17{height:46.373291px;}
.h4d{height:48.178711px;}
.h7{height:50.844727px;}
.h6{height:51.626953px;}
.h19{height:53.191406px;}
.h8{height:53.973633px;}
.h1f{height:54.755859px;}
.h23{height:55.206299px;}
.h4e{height:55.590820px;}
.h39{height:55.933594px;}
.h9{height:56.678467px;}
.ha{height:57.102539px;}
.h22{height:57.414551px;}
.he{height:59.622803px;}
.h12{height:60.358887px;}
.h3e{height:61.064575px;}
.h37{height:61.224609px;}
.h32{height:61.795898px;}
.h1d{height:61.831055px;}
.h1c{height:62.567139px;}
.h3b{height:62.569689px;}
.h3c{height:62.574039px;}
.h3a{height:62.576589px;}
.h2b{height:62.578125px;}
.h26{height:62.581539px;}
.h38{height:62.596689px;}
.h25{height:62.597289px;}
.h28{height:62.611689px;}
.h27{height:62.612739px;}
.h30{height:63.271729px;}
.h24{height:63.303223px;}
.h31{height:63.360352px;}
.h3d{height:63.492188px;}
.h2f{height:64.007446px;}
.hc{height:64.039307px;}
.h51{height:64.142578px;}
.h44{height:64.248047px;}
.h3f{height:64.485352px;}
.h35{height:64.743164px;}
.h10{height:64.775391px;}
.h53{height:64.924805px;}
.h2e{height:65.003906px;}
.h41{height:65.478882px;}
.hf{height:65.511475px;}
.h2c{height:65.759766px;}
.h11{height:66.247559px;}
.hb{height:66.515625px;}
.h45{height:66.708984px;}
.h4c{height:67.271484px;}
.hd{height:68.455811px;}
.h2d{height:68.835938px;}
.h49{height:69.618164px;}
.h52{height:70.400391px;}
.h1e{height:71.964844px;}
.h2{height:78.760986px;}
.h47{height:79.787109px;}
.h40{height:80.233154px;}
.h3{height:80.969238px;}
.h4b{height:82.441406px;}
.h56{height:83.698242px;}
.h48{height:83.913574px;}
.h46{height:84.649658px;}
.h55{height:86.078979px;}
.h4a{height:86.121826px;}
.h18{height:89.956055px;}
.h4{height:93.084961px;}
.h5{height:100.907227px;}
.h34{height:977.250000px;}
.h33{height:977.615265px;}
.h1b{height:978.750000px;}
.h1a{height:979.056765px;}
.h1{height:979.500000px;}
.h0{height:979.775265px;}
.h21{height:980.250000px;}
.h20{height:980.496765px;}
.h2a{height:981.000000px;}
.h29{height:981.216765px;}
.h43{height:985.500000px;}
.h42{height:985.536765px;}
.h50{height:989.250000px;}
.h4f{height:989.496765px;}
.w7{width:606.750000px;}
.w6{width:606.801150px;}
.w2{width:608.241150px;}
.w3{width:608.250000px;}
.w4{width:609.681150px;}
.w8{width:609.682350px;}
.w5{width:609.750000px;}
.w9{width:613.281150px;}
.wa{width:613.500000px;}
.w0{width:616.161150px;}
.w1{width:616.500000px;}
.wc{width:636.000000px;}
.wb{width:636.321150px;}
.we{width:642.000000px;}
.wd{width:642.081150px;}
.x0{left:0.000000px;}
.x8c{left:40.171500px;}
.x82{left:41.226750px;}
.x11{left:42.317400px;}
.x1{left:43.390050px;}
.x16{left:44.459700px;}
.xe{left:45.547950px;}
.x4c{left:46.990800px;}
.x6d{left:48.071850px;}
.x69{left:49.155750px;}
.x2d{left:50.905050px;}
.x2c{left:52.012050px;}
.x2b{left:53.457300px;}
.x27{left:60.670350px;}
.x23{left:61.751400px;}
.xb3{left:63.190200px;}
.x19{left:64.271250px;}
.x1b{left:67.150200px;}
.x1d{left:68.951400px;}
.x3f{left:70.390050px;}
.x81{left:71.832000px;}
.x1a{left:73.281300px;}
.xd{left:74.350050px;}
.xbc{left:76.871400px;}
.x6e{left:78.311700px;}
.x68{left:79.752000px;}
.xf{left:82.270050px;}
.x48{left:83.338275px;}
.x1c{left:84.791400px;}
.x44{left:88.390500px;}
.x85{left:92.350650px;}
.x4{left:98.110200px;}
.x10{left:100.270650px;}
.x45{left:102.790350px;}
.xac{left:103.871400px;}
.xab{left:104.950800px;}
.xb0{left:107.111250px;}
.x71{left:109.630950px;}
.x38{left:112.509900px;}
.x1e{left:121.150200px;}
.xa6{left:127.270650px;}
.x12{left:131.230650px;}
.x90{left:132.311700px;}
.x1f{left:134.470500px;}
.x7a{left:139.150650px;}
.x7b{left:140.955900px;}
.x72{left:143.471700px;}
.x13{left:146.709900px;}
.x5e{left:148.150200px;}
.x89{left:149.231250px;}
.x92{left:150.310650px;}
.x73{left:158.230650px;}
.x2{left:160.391100px;}
.x5f{left:162.190650px;}
.x8a{left:163.991850px;}
.xa9{left:167.590950px;}
.x9f{left:169.390500px;}
.x6a{left:173.711550px;}
.x91{left:179.832000px;}
.xbe{left:184.151250px;}
.x3{left:187.750350px;}
.x6f{left:192.432150px;}
.x6b{left:193.870800px;}
.x8{left:195.311100px;}
.xbf{left:197.110650px;}
.x2e{left:200.350650px;}
.x9b{left:204.669900px;}
.xbd{left:207.550500px;}
.xb4{left:208.990800px;}
.x70{left:211.151250px;}
.x2f{left:212.230650px;}
.x24{left:214.030200px;}
.x7{left:220.150650px;}
.x9{left:221.950200px;}
.x25{left:223.751400px;}
.x14{left:229.150200px;}
.x58{left:233.830350px;}
.xa{left:240.310050px;}
.x7c{left:242.111250px;}
.x15{left:244.990200px;}
.x59{left:247.509900px;}
.x86{left:249.672000px;}
.x9c{left:254.350650px;}
.xaa{left:255.790950px;}
.xc1{left:259.388775px;}
.xb{left:263.710950px;}
.x84{left:266.268975px;}
.x9a{left:268.772625px;}
.x7d{left:271.991850px;}
.x77{left:274.518675px;}
.x17{left:279.190050px;}
.x9d{left:280.271100px;}
.xc2{left:281.350650px;}
.x32{left:284.231250px;}
.x28{left:286.030800px;}
.xa4{left:287.830350px;}
.xc{left:291.790350px;}
.x49{left:293.950800px;}
.x83{left:296.111250px;}
.xb6{left:297.190650px;}
.x33{left:298.270050px;}
.x94{left:303.311100px;}
.x29{left:305.110650px;}
.x5{left:307.271100px;}
.x4a{left:313.030800px;}
.x18{left:318.431100px;}
.x95{left:323.470500px;}
.x2a{left:324.549900px;}
.xa5{left:327.071250px;}
.x26{left:330.670350px;}
.x4b{left:332.469900px;}
.x6{left:334.271100px;}
.xc0{left:335.350650px;}
.x78{left:337.151850px;}
.x74{left:338.231250px;}
.x51{left:340.030800px;}
.xb8{left:345.431100px;}
.x20{left:346.510500px;}
.xb9{left:349.750350px;}
.x22{left:351.549900px;}
.x52{left:355.509900px;}
.x30{left:356.590950px;}
.x87{left:361.271250px;}
.x42{left:363.070800px;}
.xc6{left:364.150200px;}
.x66{left:367.030800px;}
.x31{left:369.911400px;}
.x21{left:370.990800px;}
.x6c{left:372.431100px;}
.x79{left:374.591550px;}
.x75{left:375.670950px;}
.x3b{left:377.831400px;}
.xba{left:378.910800px;}
.x64{left:381.430500px;}
.x34{left:382.870800px;}
.x3c{left:392.231250px;}
.x65{left:395.110200px;}
.x43{left:396.550500px;}
.x35{left:401.230650px;}
.x97{left:402.670950px;}
.xbb{left:405.190650px;}
.xb7{left:406.630950px;}
.x3d{left:408.791400px;}
.x98{left:415.991400px;}
.x3e{left:424.990800px;}
.xb5{left:427.151250px;}
.xa0{left:428.230650px;}
.xa2{left:429.310050px;}
.xa3{left:435.791400px;}
.xc7{left:437.590950px;}
.x53{left:441.910200px;}
.xaf{left:445.150200px;}
.x36{left:446.590500px;}
.x5c{left:452.350050px;}
.x7f{left:453.792000px;}
.x5a{left:459.549900px;}
.x37{left:461.351100px;}
.xc4{left:464.590950px;}
.x4d{left:468.910200px;}
.x5d{left:471.070800px;}
.xc3{left:476.110200px;}
.x5b{left:477.191250px;}
.x56{left:479.350050px;}
.x60{left:480.790350px;}
.x4e{left:482.230650px;}
.x88{left:484.752000px;}
.x40{left:485.831400px;}
.xa8{left:486.910800px;}
.x8d{left:487.991850px;}
.x57{left:494.110650px;}
.x41{left:499.150200px;}
.x54{left:501.669900px;}
.x80{left:503.111850px;}
.x61{left:504.191250px;}
.x4f{left:511.030200px;}
.x55{left:515.351100px;}
.xa7{left:517.150650px;}
.x8e{left:518.231700px;}
.xae{left:519.311100px;}
.xad{left:520.390500px;}
.x39{left:521.830800px;}
.x50{left:525.430050px;}
.x99{left:526.870350px;}
.x8f{left:531.911400px;}
.x62{left:534.070200px;}
.x3a{left:535.510500px;}
.xc5{left:541.990200px;}
.x7e{left:544.150650px;}
.x63{left:548.110650px;}
.xa1{left:558.191250px;}
.x9e{left:559.270650px;}
.x46{left:561.790350px;}
.x76{left:563.230650px;}
.xc8{left:565.391100px;}
.x93{left:571.511550px;}
.x67{left:573.670350px;}
.x47{left:575.830800px;}
.xb2{left:581.231250px;}
.xb1{left:591.310050px;}
.x96{left:638.471100px;}
.x8b{left:648.190650px;}
@media print{
.v2{vertical-align:-6.398400pt;}
.v4{vertical-align:-5.115200pt;}
.v3{vertical-align:-2.560533pt;}
.v1{vertical-align:-1.303333pt;}
.v0{vertical-align:0.000000pt;}
.ls80{letter-spacing:-27.716267pt;}
.ls79{letter-spacing:-13.938000pt;}
.ls7c{letter-spacing:-13.573600pt;}
.ls7f{letter-spacing:-13.291200pt;}
.ls8b{letter-spacing:-12.870533pt;}
.ls7e{letter-spacing:-12.859200pt;}
.ls50{letter-spacing:-12.560400pt;}
.ls65{letter-spacing:-12.295200pt;}
.ls4d{letter-spacing:-12.250267pt;}
.ls4c{letter-spacing:-11.998800pt;}
.ls51{letter-spacing:-11.702533pt;}
.ls8c{letter-spacing:-11.404800pt;}
.ls4e{letter-spacing:-10.049400pt;}
.ls4f{letter-spacing:-9.801267pt;}
.ls8f{letter-spacing:-7.332933pt;}
.ls84{letter-spacing:-6.969000pt;}
.ls94{letter-spacing:-6.754800pt;}
.ls85{letter-spacing:-5.972333pt;}
.ls41{letter-spacing:-5.966400pt;}
.ls64{letter-spacing:-5.469400pt;}
.ls77{letter-spacing:-5.262000pt;}
.ls78{letter-spacing:-5.208000pt;}
.ls81{letter-spacing:-4.981000pt;}
.ls43{letter-spacing:-4.266667pt;}
.ls8d{letter-spacing:-4.149200pt;}
.ls66{letter-spacing:-4.148000pt;}
.ls1f{letter-spacing:-4.048400pt;}
.ls83{letter-spacing:-3.908800pt;}
.ls87{letter-spacing:-3.730000pt;}
.ls12{letter-spacing:-3.665200pt;}
.ls67{letter-spacing:-3.512867pt;}
.ls35{letter-spacing:-3.456667pt;}
.ls73{letter-spacing:-3.332000pt;}
.ls5d{letter-spacing:-3.292333pt;}
.ls86{letter-spacing:-3.253600pt;}
.ls22{letter-spacing:-3.228000pt;}
.ls42{letter-spacing:-2.842667pt;}
.ls61{letter-spacing:-2.799867pt;}
.ls89{letter-spacing:-2.766133pt;}
.ls46{letter-spacing:-2.731800pt;}
.ls20{letter-spacing:-2.697000pt;}
.ls72{letter-spacing:-2.669000pt;}
.ls47{letter-spacing:-2.666000pt;}
.ls5a{letter-spacing:-2.635000pt;}
.ls76{letter-spacing:-2.604000pt;}
.ls11{letter-spacing:-2.443467pt;}
.ls40{letter-spacing:-2.133333pt;}
.ls93{letter-spacing:-2.093800pt;}
.ls8a{letter-spacing:-2.077333pt;}
.ls34{letter-spacing:-2.074000pt;}
.ls44{letter-spacing:-2.047400pt;}
.ls1e{letter-spacing:-2.024200pt;}
.ls4a{letter-spacing:-2.023867pt;}
.ls71{letter-spacing:-2.000333pt;}
.ls8e{letter-spacing:-1.977800pt;}
.ls58{letter-spacing:-1.977667pt;}
.ls7b{letter-spacing:-1.954400pt;}
.ls21{letter-spacing:-1.912533pt;}
.ls23{letter-spacing:-1.886000pt;}
.ls92{letter-spacing:-1.459733pt;}
.ls3e{letter-spacing:-1.424000pt;}
.ls32{letter-spacing:-1.382667pt;}
.ls90{letter-spacing:-1.378667pt;}
.ls1b{letter-spacing:-1.366933pt;}
.ls45{letter-spacing:-1.363000pt;}
.ls1d{letter-spacing:-1.351400pt;}
.ls62{letter-spacing:-1.334000pt;}
.ls74{letter-spacing:-1.331667pt;}
.ls59{letter-spacing:-1.320333pt;}
.ls70{letter-spacing:-1.304800pt;}
.ls38{letter-spacing:-1.287600pt;}
.ls14{letter-spacing:-1.221733pt;}
.ls24{letter-spacing:-1.217467pt;}
.ls27{letter-spacing:-0.751800pt;}
.ls36{letter-spacing:-0.728000pt;}
.ls3f{letter-spacing:-0.709333pt;}
.ls48{letter-spacing:-0.701800pt;}
.ls5e{letter-spacing:-0.695600pt;}
.ls33{letter-spacing:-0.691333pt;}
.ls60{letter-spacing:-0.688800pt;}
.ls91{letter-spacing:-0.684400pt;}
.ls1c{letter-spacing:-0.672800pt;}
.ls82{letter-spacing:-0.668667pt;}
.ls3a{letter-spacing:-0.666400pt;}
.ls57{letter-spacing:-0.657333pt;}
.ls7a{letter-spacing:-0.649600pt;}
.ls39{letter-spacing:-0.642133pt;}
.ls13{letter-spacing:-0.610867pt;}
.lsf{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.649600pt;}
.ls52{letter-spacing:0.657333pt;}
.ls1{letter-spacing:0.672800pt;}
.ls0{letter-spacing:0.686200pt;}
.ls2a{letter-spacing:0.691333pt;}
.ls3b{letter-spacing:0.701800pt;}
.lsd{letter-spacing:0.703733pt;}
.ls5c{letter-spacing:0.713400pt;}
.ls5b{letter-spacing:0.715733pt;}
.lse{letter-spacing:0.720467pt;}
.ls28{letter-spacing:0.720800pt;}
.ls19{letter-spacing:0.723800pt;}
.ls6e{letter-spacing:1.304800pt;}
.ls55{letter-spacing:1.320333pt;}
.ls5f{letter-spacing:1.334000pt;}
.ls4{letter-spacing:1.351400pt;}
.ls88{letter-spacing:1.363000pt;}
.ls2b{letter-spacing:1.382667pt;}
.ls69{letter-spacing:1.397800pt;}
.lsc{letter-spacing:1.407467pt;}
.ls18{letter-spacing:1.439800pt;}
.ls10{letter-spacing:1.440933pt;}
.ls75{letter-spacing:1.466667pt;}
.ls16{letter-spacing:1.887600pt;}
.ls6d{letter-spacing:1.954400pt;}
.ls54{letter-spacing:1.977667pt;}
.ls2{letter-spacing:2.024200pt;}
.ls1a{letter-spacing:2.058600pt;}
.ls2e{letter-spacing:2.074000pt;}
.lsb{letter-spacing:2.111200pt;}
.ls25{letter-spacing:2.284800pt;}
.ls5{letter-spacing:2.697000pt;}
.ls29{letter-spacing:2.765333pt;}
.lsa{letter-spacing:2.811067pt;}
.ls68{letter-spacing:3.162467pt;}
.ls6b{letter-spacing:3.253600pt;}
.ls53{letter-spacing:3.292333pt;}
.ls3{letter-spacing:3.369800pt;}
.ls17{letter-spacing:3.384333pt;}
.ls31{letter-spacing:3.456667pt;}
.ls3d{letter-spacing:3.491600pt;}
.ls26{letter-spacing:3.514800pt;}
.ls7d{letter-spacing:3.542200pt;}
.ls6c{letter-spacing:3.908800pt;}
.ls7{letter-spacing:4.048400pt;}
.ls2c{letter-spacing:4.148000pt;}
.ls3c{letter-spacing:4.193400pt;}
.ls15{letter-spacing:4.268133pt;}
.ls4b{letter-spacing:4.523600pt;}
.ls6f{letter-spacing:4.558400pt;}
.ls56{letter-spacing:4.612667pt;}
.ls8{letter-spacing:4.721200pt;}
.ls2f{letter-spacing:4.839333pt;}
.ls49{letter-spacing:4.889400pt;}
.ls6{letter-spacing:5.394000pt;}
.ls30{letter-spacing:5.530667pt;}
.ls9{letter-spacing:6.066800pt;}
.ls2d{letter-spacing:6.222000pt;}
.ls37{letter-spacing:6.907667pt;}
.ls63{letter-spacing:8.290333pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-35.500451pt;}
._1c{margin-left:-22.433232pt;}
._1e{margin-left:-21.230540pt;}
._15{margin-left:-13.569829pt;}
._1d{margin-left:-11.210245pt;}
._19{margin-left:-9.687521pt;}
._18{margin-left:-8.070067pt;}
._14{margin-left:-7.180400pt;}
._16{margin-left:-6.154054pt;}
._f{margin-left:-4.831400pt;}
._9{margin-left:-3.839600pt;}
._8{margin-left:-2.088000pt;}
._e{margin-left:-0.957000pt;}
._12{width:0.910600pt;}
._4{width:1.867600pt;}
._13{width:2.776588pt;}
._6{width:3.758400pt;}
._7{width:5.341800pt;}
._1b{width:6.237678pt;}
._5{width:7.134000pt;}
._a{width:8.537600pt;}
._c{width:9.948612pt;}
._d{width:11.484000pt;}
._3{width:13.025188pt;}
._17{width:14.380867pt;}
._1{width:15.287533pt;}
._b{width:16.195212pt;}
._0{width:17.231200pt;}
._10{width:19.053963pt;}
._25{width:20.198588pt;}
._1a{width:21.434146pt;}
._2{width:22.575582pt;}
._26{width:91.176000pt;}
._20{width:134.560000pt;}
._22{width:152.674378pt;}
._1f{width:166.570200pt;}
._21{width:177.178400pt;}
._3d{width:191.531133pt;}
._32{width:226.686000pt;}
._34{width:232.339333pt;}
._33{width:233.298721pt;}
._31{width:262.544812pt;}
._3a{width:272.827817pt;}
._37{width:281.896393pt;}
._2b{width:294.451333pt;}
._2a{width:296.298667pt;}
._29{width:297.868333pt;}
._2d{width:308.476333pt;}
._2c{width:310.221667pt;}
._35{width:311.460000pt;}
._30{width:314.302065pt;}
._28{width:320.648333pt;}
._27{width:323.935000pt;}
._40{width:345.024600pt;}
._2e{width:349.856000pt;}
._39{width:371.473660pt;}
._38{width:421.878741pt;}
._23{width:439.440720pt;}
._24{width:449.730465pt;}
._2f{width:466.842667pt;}
._3c{width:551.264000pt;}
._3b{width:557.768521pt;}
._3f{width:593.926400pt;}
._36{width:605.353951pt;}
._3e{width:811.937600pt;}
.fs10{font-size:15.333333pt;}
.fs11{font-size:21.333333pt;}
.fs28{font-size:30.666667pt;}
.fs20{font-size:37.333333pt;}
.fs12{font-size:38.666667pt;}
.fs13{font-size:40.000000pt;}
.fs14{font-size:42.000000pt;}
.fs5{font-size:43.333333pt;}
.fs4{font-size:44.000000pt;}
.fs16{font-size:45.333333pt;}
.fs6{font-size:46.000000pt;}
.fs1a{font-size:46.666667pt;}
.fs8{font-size:48.666667pt;}
.fs21{font-size:49.333333pt;}
.fs1c{font-size:50.000000pt;}
.fs7{font-size:51.333333pt;}
.fs1b{font-size:52.000000pt;}
.fs1f{font-size:52.666667pt;}
.fs1e{font-size:53.333333pt;}
.fsc{font-size:54.000000pt;}
.fsf{font-size:54.666667pt;}
.fs22{font-size:55.333333pt;}
.fs18{font-size:56.000000pt;}
.fs17{font-size:56.666667pt;}
.fs1d{font-size:57.333333pt;}
.fsa{font-size:58.000000pt;}
.fs9{font-size:58.666667pt;}
.fsd{font-size:59.333333pt;}
.fse{font-size:60.000000pt;}
.fs19{font-size:61.333333pt;}
.fsb{font-size:62.000000pt;}
.fs24{font-size:68.000000pt;}
.fs0{font-size:71.333333pt;}
.fs23{font-size:72.666667pt;}
.fs1{font-size:73.333333pt;}
.fs27{font-size:74.666667pt;}
.fs25{font-size:76.000000pt;}
.fs15{font-size:76.666667pt;}
.fs26{font-size:78.000000pt;}
.fs2{font-size:79.333333pt;}
.fs3{font-size:86.000000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:39.594947pt;}
.y11c{bottom:40.554413pt;}
.y180{bottom:41.834680pt;}
.y14c{bottom:42.474813pt;}
.y35{bottom:46.314147pt;}
.y74{bottom:46.634947pt;}
.y11b{bottom:58.472213pt;}
.yb4{bottom:58.794680pt;}
.y17f{bottom:59.099613pt;}
.y34{bottom:62.314680pt;}
.y73{bottom:65.191513pt;}
.y14b{bottom:65.194547pt;}
.y33{bottom:70.154547pt;}
.y11a{bottom:72.553880pt;}
.yb2{bottom:73.192480pt;}
.yb3{bottom:73.194013pt;}
.y17e{bottom:73.505613pt;}
.ye3{bottom:78.953880pt;}
.y72{bottom:82.474847pt;}
.y32{bottom:84.074947pt;}
.y119{bottom:86.634013pt;}
.y118{bottom:86.640013pt;}
.yb1{bottom:87.274147pt;}
.y17d{bottom:87.589613pt;}
.y14a{bottom:87.914280pt;}
.y149{bottom:88.554413pt;}
.ye2{bottom:92.714547pt;}
.y71{bottom:97.194013pt;}
.y31{bottom:99.754547pt;}
.y117{bottom:101.033347pt;}
.yb0{bottom:101.344380pt;}
.y17b{bottom:101.664147pt;}
.y17c{bottom:101.673613pt;}
.y147{bottom:101.994413pt;}
.y148{bottom:102.634413pt;}
.y146{bottom:103.594013pt;}
.ye1{bottom:107.433347pt;}
.y70{bottom:111.275247pt;}
.y30{bottom:114.154013pt;}
.y2f{bottom:114.156447pt;}
.y116{bottom:115.106913pt;}
.yaf{bottom:115.751880pt;}
.y17a{bottom:116.378147pt;}
.y145{bottom:116.714547pt;}
.ye0{bottom:121.513347pt;}
.y6e{bottom:125.988980pt;}
.y6f{bottom:125.994413pt;}
.y2e{bottom:128.555447pt;}
.y115{bottom:129.514413pt;}
.y114{bottom:129.517213pt;}
.yae{bottom:129.833547pt;}
.y179{bottom:130.462147pt;}
.ydf{bottom:135.914280pt;}
.y6d{bottom:140.070647pt;}
.y144{bottom:140.714547pt;}
.y2d{bottom:142.636747pt;}
.y113{bottom:143.598880pt;}
.yad{bottom:143.905080pt;}
.y178{bottom:144.868147pt;}
.yde{bottom:150.313613pt;}
.y6c{bottom:154.463980pt;}
.y2c{bottom:157.035247pt;}
.y112{bottom:157.680547pt;}
.yac{bottom:157.986747pt;}
.y176{bottom:159.244013pt;}
.y177{bottom:159.274147pt;}
.ydd{bottom:164.714547pt;}
.y6b{bottom:168.871480pt;}
.y2b{bottom:171.434380pt;}
.y110{bottom:172.067313pt;}
.yab{bottom:172.068413pt;}
.y111{bottom:172.073880pt;}
.y175{bottom:173.328013pt;}
.y143{bottom:174.955213pt;}
.ydc{bottom:178.794680pt;}
.y6a{bottom:182.953147pt;}
.y2a{bottom:185.516813pt;}
.yaa{bottom:186.150080pt;}
.y10f{bottom:186.474813pt;}
.y10e{bottom:186.475147pt;}
.y174{bottom:187.734013pt;}
.ydb{bottom:192.874680pt;}
.y69{bottom:197.034813pt;}
.y68{bottom:197.040947pt;}
.y29{bottom:199.915313pt;}
.y10d{bottom:200.556813pt;}
.ya9{bottom:201.195080pt;}
.ya8{bottom:201.199547pt;}
.y173{bottom:201.818013pt;}
.y142{bottom:203.750813pt;}
.y67{bottom:211.437747pt;}
.y28{bottom:213.994813pt;}
.y27{bottom:213.996280pt;}
.y10c{bottom:214.964313pt;}
.ya7{bottom:215.281213pt;}
.y172{bottom:216.224013pt;}
.y66{bottom:225.831080pt;}
.yd9{bottom:227.427047pt;}
.yda{bottom:227.433347pt;}
.y26{bottom:228.713780pt;}
.y10b{bottom:229.045980pt;}
.ya5{bottom:229.671347pt;}
.ya6{bottom:229.674547pt;}
.y171{bottom:230.308013pt;}
.y25{bottom:242.474280pt;}
.y24{bottom:242.477547pt;}
.y65{bottom:243.114413pt;}
.y10a{bottom:243.439313pt;}
.ya4{bottom:243.753013pt;}
.yd8{bottom:244.711047pt;}
.y170{bottom:244.714013pt;}
.y23{bottom:256.876047pt;}
.y64{bottom:257.512347pt;}
.y141{bottom:257.513313pt;}
.y109{bottom:257.520980pt;}
.ya3{bottom:257.834680pt;}
.y16f{bottom:258.800280pt;}
.yd7{bottom:262.154547pt;}
.y22{bottom:271.274547pt;}
.y63{bottom:271.594013pt;}
.y62{bottom:271.598447pt;}
.y140{bottom:272.076647pt;}
.ya2{bottom:272.227447pt;}
.y108{bottom:272.240147pt;}
.y16e{bottom:273.514280pt;}
.y1a2{bottom:280.887313pt;}
.y21{bottom:285.674013pt;}
.y20{bottom:285.677280pt;}
.y61{bottom:286.005947pt;}
.y13f{bottom:286.314147pt;}
.y106{bottom:286.629847pt;}
.y107{bottom:286.633480pt;}
.ya1{bottom:286.634947pt;}
.y16d{bottom:286.954280pt;}
.y1a1{bottom:294.966813pt;}
.yd6{bottom:299.754147pt;}
.y1f{bottom:299.756780pt;}
.y60{bottom:300.399280pt;}
.y105{bottom:300.711513pt;}
.ya0{bottom:301.030647pt;}
.y16b{bottom:301.975480pt;}
.y16c{bottom:301.993880pt;}
.y13e{bottom:302.634013pt;}
.y13d{bottom:309.354680pt;}
.y1e{bottom:314.474280pt;}
.y5f{bottom:314.792613pt;}
.y9f{bottom:315.112313pt;}
.y104{bottom:315.119013pt;}
.y16a{bottom:316.059480pt;}
.y1a0{bottom:320.559313pt;}
.yd5{bottom:328.554413pt;}
.y1d{bottom:328.554913pt;}
.yd4{bottom:328.556113pt;}
.y5e{bottom:329.200113pt;}
.y9e{bottom:329.505647pt;}
.y103{bottom:329.512347pt;}
.y169{bottom:330.143480pt;}
.y1c{bottom:342.634413pt;}
.y5d{bottom:343.593447pt;}
.y102{bottom:343.594013pt;}
.y9d{bottom:343.913147pt;}
.y168{bottom:344.549480pt;}
.y19f{bottom:346.485313pt;}
.y101{bottom:355.434280pt;}
.y1b{bottom:357.041380pt;}
.y100{bottom:357.674013pt;}
.yff{bottom:357.676247pt;}
.y9c{bottom:357.994813pt;}
.y9b{bottom:358.001913pt;}
.y5c{bottom:358.312613pt;}
.y167{bottom:358.633480pt;}
.y19e{bottom:360.883813pt;}
.y1a{bottom:371.439880pt;}
.y13c{bottom:372.072347pt;}
.y5a{bottom:372.393713pt;}
.y5b{bottom:372.394280pt;}
.yd3{bottom:372.713613pt;}
.y9a{bottom:372.721080pt;}
.y165{bottom:373.027480pt;}
.y166{bottom:373.034413pt;}
.y19d{bottom:375.601313pt;}
.y19{bottom:385.838380pt;}
.y59{bottom:386.787047pt;}
.y99{bottom:387.114413pt;}
.y98{bottom:387.120547pt;}
.yd2{bottom:387.121647pt;}
.y19c{bottom:390.956813pt;}
.y18{bottom:400.236880pt;}
.y58{bottom:401.194547pt;}
.y97{bottom:401.513880pt;}
.y96{bottom:401.518880pt;}
.yd1{bottom:401.840813pt;}
.yfe{bottom:402.159580pt;}
.y19b{bottom:404.717313pt;}
.y17{bottom:414.954380pt;}
.y13b{bottom:415.592347pt;}
.y57{bottom:415.593447pt;}
.y95{bottom:415.926380pt;}
.yd0{bottom:416.234147pt;}
.y164{bottom:416.553480pt;}
.yfd{bottom:416.878747pt;}
.y19a{bottom:419.434813pt;}
.y16{bottom:429.033880pt;}
.y15{bottom:429.037780pt;}
.y13a{bottom:429.675113pt;}
.y56{bottom:430.000947pt;}
.ycf{bottom:430.633480pt;}
.y94{bottom:430.645547pt;}
.yfc{bottom:430.960413pt;}
.y163{bottom:442.473880pt;}
.y14{bottom:443.436280pt;}
.y55{bottom:444.394280pt;}
.y139{bottom:444.395247pt;}
.y93{bottom:444.727213pt;}
.yce{bottom:445.054713pt;}
.yfb{bottom:445.353747pt;}
.yf9{bottom:446.792047pt;}
.yfa{bottom:446.793613pt;}
.y199{bottom:454.314147pt;}
.y13{bottom:457.834780pt;}
.y162{bottom:458.153480pt;}
.y138{bottom:459.112880pt;}
.y92{bottom:459.120547pt;}
.ycd{bottom:459.448047pt;}
.yf8{bottom:459.754547pt;}
.yf7{bottom:461.194547pt;}
.y54{bottom:462.000413pt;}
.y198{bottom:471.593480pt;}
.y12{bottom:471.924247pt;}
.y137{bottom:473.193980pt;}
.y90{bottom:473.506747pt;}
.y91{bottom:473.513880pt;}
.ycc{bottom:474.167213pt;}
.y52{bottom:476.387180pt;}
.y53{bottom:476.393747pt;}
.y197{bottom:480.553880pt;}
.y15c{bottom:483.433747pt;}
.y161{bottom:484.073880pt;}
.y11{bottom:486.322747pt;}
.y136{bottom:487.587313pt;}
.y8f{bottom:487.588413pt;}
.ycb{bottom:488.560547pt;}
.yf6{bottom:489.833747pt;}
.y50{bottom:490.793013pt;}
.y51{bottom:490.794680pt;}
.y196{bottom:496.873747pt;}
.y15b{bottom:497.834680pt;}
.y160{bottom:498.794147pt;}
.y10{bottom:501.359247pt;}
.y135{bottom:501.994247pt;}
.y8e{bottom:502.307580pt;}
.yca{bottom:502.968047pt;}
.y4f{bottom:504.874680pt;}
.y4e{bottom:504.881780pt;}
.y15a{bottom:512.553480pt;}
.y15f{bottom:513.193613pt;}
.y15e{bottom:513.199747pt;}
.yf{bottom:515.757747pt;}
.y134{bottom:516.713413pt;}
.y8d{bottom:516.715080pt;}
.y8c{bottom:516.722180pt;}
.yc9{bottom:517.361380pt;}
.y195{bottom:518.634013pt;}
.y194{bottom:518.634980pt;}
.y4d{bottom:519.275113pt;}
.y159{bottom:526.954280pt;}
.yf5{bottom:527.273613pt;}
.y15d{bottom:527.913747pt;}
.ye{bottom:530.156247pt;}
.y133{bottom:530.795080pt;}
.y132{bottom:530.798547pt;}
.y8b{bottom:531.115513pt;}
.yc8{bottom:532.406380pt;}
.y193{bottom:533.033480pt;}
.y4c{bottom:533.994280pt;}
.y4b{bottom:533.997080pt;}
.yd{bottom:544.873747pt;}
.yc{bottom:544.874247pt;}
.y131{bottom:545.191880pt;}
.y8a{bottom:545.834680pt;}
.yc7{bottom:546.799713pt;}
.y4a{bottom:548.078747pt;}
.yf4{bottom:556.071213pt;}
.y158{bottom:556.073880pt;}
.yb{bottom:558.953747pt;}
.ya{bottom:558.959780pt;}
.y130{bottom:559.585213pt;}
.y89{bottom:559.915780pt;}
.yc6{bottom:561.193047pt;}
.y192{bottom:562.154547pt;}
.y191{bottom:562.158647pt;}
.y49{bottom:562.472080pt;}
.y9{bottom:573.358280pt;}
.y12f{bottom:573.992713pt;}
.y88{bottom:574.642047pt;}
.yc5{bottom:575.600547pt;}
.y48{bottom:578.154580pt;}
.y157{bottom:585.189747pt;}
.y8{bottom:587.756780pt;}
.y12e{bottom:588.074380pt;}
.y87{bottom:589.361213pt;}
.yc3{bottom:589.987180pt;}
.yc4{bottom:589.993880pt;}
.y46{bottom:592.873180pt;}
.y47{bottom:592.873747pt;}
.yf3{bottom:599.265380pt;}
.y12d{bottom:602.467713pt;}
.y7{bottom:602.474913pt;}
.y86{bottom:603.761780pt;}
.yc2{bottom:604.394680pt;}
.yc1{bottom:604.407347pt;}
.y190{bottom:605.354147pt;}
.y45{bottom:607.280680pt;}
.yf2{bottom:613.347047pt;}
.y6{bottom:616.554413pt;}
.y12c{bottom:616.887880pt;}
.y85{bottom:618.155113pt;}
.yc0{bottom:618.800680pt;}
.y18f{bottom:620.074413pt;}
.y18e{bottom:620.077180pt;}
.y43{bottom:621.663880pt;}
.y44{bottom:621.674013pt;}
.yf1{bottom:627.760647pt;}
.y12b{bottom:631.281213pt;}
.y83{bottom:632.867580pt;}
.y84{bottom:632.874280pt;}
.ybf{bottom:633.519847pt;}
.y18d{bottom:634.794680pt;}
.y18c{bottom:634.795513pt;}
.y42{bottom:636.071380pt;}
.y156{bottom:637.353747pt;}
.yf0{bottom:642.153980pt;}
.y12a{bottom:646.000380pt;}
.y5{bottom:646.314147pt;}
.y82{bottom:647.275080pt;}
.ybe{bottom:647.913180pt;}
.y18b{bottom:649.194013pt;}
.y18a{bottom:649.197747pt;}
.y41{bottom:650.464713pt;}
.yef{bottom:656.547313pt;}
.y129{bottom:660.393713pt;}
.y81{bottom:661.995913pt;}
.ybd{bottom:662.320680pt;}
.y189{bottom:663.596247pt;}
.y40{bottom:664.858047pt;}
.y155{bottom:665.194547pt;}
.y154{bottom:666.473347pt;}
.yee{bottom:670.954813pt;}
.y128{bottom:674.801213pt;}
.ybc{bottom:676.714013pt;}
.y80{bottom:676.715080pt;}
.y188{bottom:678.313747pt;}
.y3f{bottom:679.265547pt;}
.y153{bottom:680.874280pt;}
.y152{bottom:681.193613pt;}
.yed{bottom:685.673980pt;}
.y4{bottom:686.954813pt;}
.y127{bottom:689.192447pt;}
.y7f{bottom:691.122580pt;}
.y187{bottom:692.717313pt;}
.y3e{bottom:693.658880pt;}
.y151{bottom:695.754147pt;}
.yec{bottom:699.755647pt;}
.y126{bottom:703.585780pt;}
.y7e{bottom:705.515913pt;}
.ybb{bottom:706.154547pt;}
.y186{bottom:707.434813pt;}
.y3d{bottom:708.066380pt;}
.y150{bottom:710.314680pt;}
.yeb{bottom:714.474813pt;}
.yea{bottom:714.485947pt;}
.y3{bottom:714.794147pt;}
.y125{bottom:717.993280pt;}
.y7d{bottom:720.235080pt;}
.y3c{bottom:723.111380pt;}
.ye9{bottom:728.879280pt;}
.y124{bottom:732.075913pt;}
.y7c{bottom:734.628413pt;}
.y185{bottom:736.554413pt;}
.y3b{bottom:737.193047pt;}
.y14f{bottom:739.753613pt;}
.ye8{bottom:743.272613pt;}
.y2{bottom:743.594413pt;}
.y123{bottom:746.795080pt;}
.y122{bottom:746.807347pt;}
.y7b{bottom:749.035913pt;}
.yba{bottom:750.640547pt;}
.y184{bottom:751.274547pt;}
.y3a{bottom:751.912213pt;}
.ye7{bottom:757.680113pt;}
.y121{bottom:761.200680pt;}
.y79{bottom:763.754713pt;}
.y7a{bottom:763.755080pt;}
.yb9{bottom:765.033880pt;}
.y183{bottom:765.674013pt;}
.y39{bottom:765.993880pt;}
.ye6{bottom:772.073447pt;}
.y120{bottom:775.594013pt;}
.y14e{bottom:777.193613pt;}
.y77{bottom:778.461780pt;}
.y78{bottom:778.473880pt;}
.yb8{bottom:779.761247pt;}
.y182{bottom:780.394280pt;}
.y38{bottom:780.713047pt;}
.ye5{bottom:786.480947pt;}
.y11f{bottom:790.000947pt;}
.y76{bottom:792.869280pt;}
.yb7{bottom:794.154580pt;}
.y181{bottom:795.114413pt;}
.y37{bottom:795.120547pt;}
.ye4{bottom:800.874280pt;}
.y11e{bottom:804.394280pt;}
.y14d{bottom:806.314680pt;}
.y1{bottom:807.274147pt;}
.y75{bottom:807.914280pt;}
.yb6{bottom:808.873747pt;}
.y36{bottom:809.513880pt;}
.y11d{bottom:880.235080pt;}
.h13{height:15.992187pt;}
.h14{height:22.250000pt;}
.h54{height:31.984375pt;}
.h15{height:37.949219pt;}
.h36{height:38.937500pt;}
.h16{height:39.257812pt;}
.h17{height:41.220703pt;}
.h4d{height:42.825521pt;}
.h7{height:45.195312pt;}
.h6{height:45.890625pt;}
.h19{height:47.281250pt;}
.h8{height:47.976562pt;}
.h1f{height:48.671875pt;}
.h23{height:49.072266pt;}
.h4e{height:49.414063pt;}
.h39{height:49.718750pt;}
.h9{height:50.380859pt;}
.ha{height:50.757812pt;}
.h22{height:51.035156pt;}
.he{height:52.998047pt;}
.h12{height:53.652344pt;}
.h3e{height:54.279622pt;}
.h37{height:54.421875pt;}
.h32{height:54.929688pt;}
.h1d{height:54.960938pt;}
.h1c{height:55.615234pt;}
.h3b{height:55.617501pt;}
.h3c{height:55.621368pt;}
.h3a{height:55.623634pt;}
.h2b{height:55.625000pt;}
.h26{height:55.628034pt;}
.h38{height:55.641501pt;}
.h25{height:55.642034pt;}
.h28{height:55.654834pt;}
.h27{height:55.655768pt;}
.h30{height:56.241536pt;}
.h24{height:56.269531pt;}
.h31{height:56.320312pt;}
.h3d{height:56.437500pt;}
.h2f{height:56.895508pt;}
.hc{height:56.923828pt;}
.h51{height:57.015625pt;}
.h44{height:57.109375pt;}
.h3f{height:57.320313pt;}
.h35{height:57.549479pt;}
.h10{height:57.578125pt;}
.h53{height:57.710938pt;}
.h2e{height:57.781250pt;}
.h41{height:58.203451pt;}
.hf{height:58.232422pt;}
.h2c{height:58.453125pt;}
.h11{height:58.886719pt;}
.hb{height:59.125000pt;}
.h45{height:59.296875pt;}
.h4c{height:59.796875pt;}
.hd{height:60.849609pt;}
.h2d{height:61.187500pt;}
.h49{height:61.882812pt;}
.h52{height:62.578125pt;}
.h1e{height:63.968750pt;}
.h2{height:70.009766pt;}
.h47{height:70.921875pt;}
.h40{height:71.318359pt;}
.h3{height:71.972656pt;}
.h4b{height:73.281250pt;}
.h56{height:74.398438pt;}
.h48{height:74.589844pt;}
.h46{height:75.244141pt;}
.h55{height:76.514648pt;}
.h4a{height:76.552734pt;}
.h18{height:79.960938pt;}
.h4{height:82.742188pt;}
.h5{height:89.695312pt;}
.h34{height:868.666667pt;}
.h33{height:868.991347pt;}
.h1b{height:870.000000pt;}
.h1a{height:870.272680pt;}
.h1{height:870.666667pt;}
.h0{height:870.911347pt;}
.h21{height:871.333333pt;}
.h20{height:871.552680pt;}
.h2a{height:872.000000pt;}
.h29{height:872.192680pt;}
.h43{height:876.000000pt;}
.h42{height:876.032680pt;}
.h50{height:879.333333pt;}
.h4f{height:879.552680pt;}
.w7{width:539.333333pt;}
.w6{width:539.378800pt;}
.w2{width:540.658800pt;}
.w3{width:540.666667pt;}
.w4{width:541.938800pt;}
.w8{width:541.939867pt;}
.w5{width:542.000000pt;}
.w9{width:545.138800pt;}
.wa{width:545.333333pt;}
.w0{width:547.698800pt;}
.w1{width:548.000000pt;}
.wc{width:565.333333pt;}
.wb{width:565.618800pt;}
.we{width:570.666667pt;}
.wd{width:570.738800pt;}
.x0{left:0.000000pt;}
.x8c{left:35.708000pt;}
.x82{left:36.646000pt;}
.x11{left:37.615467pt;}
.x1{left:38.568933pt;}
.x16{left:39.519733pt;}
.xe{left:40.487067pt;}
.x4c{left:41.769600pt;}
.x6d{left:42.730533pt;}
.x69{left:43.694000pt;}
.x2d{left:45.248933pt;}
.x2c{left:46.232933pt;}
.x2b{left:47.517600pt;}
.x27{left:53.929200pt;}
.x23{left:54.890133pt;}
.xb3{left:56.169067pt;}
.x19{left:57.130000pt;}
.x1b{left:59.689067pt;}
.x1d{left:61.290133pt;}
.x3f{left:62.568933pt;}
.x81{left:63.850667pt;}
.x1a{left:65.138933pt;}
.xd{left:66.088933pt;}
.xbc{left:68.330133pt;}
.x6e{left:69.610400pt;}
.x68{left:70.890667pt;}
.xf{left:73.128933pt;}
.x48{left:74.078467pt;}
.x1c{left:75.370133pt;}
.x44{left:78.569333pt;}
.x85{left:82.089467pt;}
.x4{left:87.209067pt;}
.x10{left:89.129467pt;}
.x45{left:91.369200pt;}
.xac{left:92.330133pt;}
.xab{left:93.289600pt;}
.xb0{left:95.210000pt;}
.x71{left:97.449733pt;}
.x38{left:100.008800pt;}
.x1e{left:107.689067pt;}
.xa6{left:113.129467pt;}
.x12{left:116.649467pt;}
.x90{left:117.610400pt;}
.x1f{left:119.529333pt;}
.x7a{left:123.689467pt;}
.x7b{left:125.294133pt;}
.x72{left:127.530400pt;}
.x13{left:130.408800pt;}
.x5e{left:131.689067pt;}
.x89{left:132.650000pt;}
.x92{left:133.609467pt;}
.x73{left:140.649467pt;}
.x2{left:142.569867pt;}
.x5f{left:144.169467pt;}
.x8a{left:145.770533pt;}
.xa9{left:148.969733pt;}
.x9f{left:150.569333pt;}
.x6a{left:154.410267pt;}
.x91{left:159.850667pt;}
.xbe{left:163.690000pt;}
.x3{left:166.889200pt;}
.x6f{left:171.050800pt;}
.x6b{left:172.329600pt;}
.x8{left:173.609867pt;}
.xbf{left:175.209467pt;}
.x2e{left:178.089467pt;}
.x9b{left:181.928800pt;}
.xbd{left:184.489333pt;}
.xb4{left:185.769600pt;}
.x70{left:187.690000pt;}
.x2f{left:188.649467pt;}
.x24{left:190.249067pt;}
.x7{left:195.689467pt;}
.x9{left:197.289067pt;}
.x25{left:198.890133pt;}
.x14{left:203.689067pt;}
.x58{left:207.849200pt;}
.xa{left:213.608933pt;}
.x7c{left:215.210000pt;}
.x15{left:217.769067pt;}
.x59{left:220.008800pt;}
.x86{left:221.930667pt;}
.x9c{left:226.089467pt;}
.xaa{left:227.369733pt;}
.xc1{left:230.567800pt;}
.xb{left:234.409733pt;}
.x84{left:236.683533pt;}
.x9a{left:238.909000pt;}
.x7d{left:241.770533pt;}
.x77{left:244.016600pt;}
.x17{left:248.168933pt;}
.x9d{left:249.129867pt;}
.xc2{left:250.089467pt;}
.x32{left:252.650000pt;}
.x28{left:254.249600pt;}
.xa4{left:255.849200pt;}
.xc{left:259.369200pt;}
.x49{left:261.289600pt;}
.x83{left:263.210000pt;}
.xb6{left:264.169467pt;}
.x33{left:265.128933pt;}
.x94{left:269.609867pt;}
.x29{left:271.209467pt;}
.x5{left:273.129867pt;}
.x4a{left:278.249600pt;}
.x18{left:283.049867pt;}
.x95{left:287.529333pt;}
.x2a{left:288.488800pt;}
.xa5{left:290.730000pt;}
.x26{left:293.929200pt;}
.x4b{left:295.528800pt;}
.x6{left:297.129867pt;}
.xc0{left:298.089467pt;}
.x78{left:299.690533pt;}
.x74{left:300.650000pt;}
.x51{left:302.249600pt;}
.xb8{left:307.049867pt;}
.x20{left:308.009333pt;}
.xb9{left:310.889200pt;}
.x22{left:312.488800pt;}
.x52{left:316.008800pt;}
.x30{left:316.969733pt;}
.x87{left:321.130000pt;}
.x42{left:322.729600pt;}
.xc6{left:323.689067pt;}
.x66{left:326.249600pt;}
.x31{left:328.810133pt;}
.x21{left:329.769600pt;}
.x6c{left:331.049867pt;}
.x79{left:332.970267pt;}
.x75{left:333.929733pt;}
.x3b{left:335.850133pt;}
.xba{left:336.809600pt;}
.x64{left:339.049333pt;}
.x34{left:340.329600pt;}
.x3c{left:348.650000pt;}
.x65{left:351.209067pt;}
.x43{left:352.489333pt;}
.x35{left:356.649467pt;}
.x97{left:357.929733pt;}
.xbb{left:360.169467pt;}
.xb7{left:361.449733pt;}
.x3d{left:363.370133pt;}
.x98{left:369.770133pt;}
.x3e{left:377.769600pt;}
.xb5{left:379.690000pt;}
.xa0{left:380.649467pt;}
.xa2{left:381.608933pt;}
.xa3{left:387.370133pt;}
.xc7{left:388.969733pt;}
.x53{left:392.809067pt;}
.xaf{left:395.689067pt;}
.x36{left:396.969333pt;}
.x5c{left:402.088933pt;}
.x7f{left:403.370667pt;}
.x5a{left:408.488800pt;}
.x37{left:410.089867pt;}
.xc4{left:412.969733pt;}
.x4d{left:416.809067pt;}
.x5d{left:418.729600pt;}
.xc3{left:423.209067pt;}
.x5b{left:424.170000pt;}
.x56{left:426.088933pt;}
.x60{left:427.369200pt;}
.x4e{left:428.649467pt;}
.x88{left:430.890667pt;}
.x40{left:431.850133pt;}
.xa8{left:432.809600pt;}
.x8d{left:433.770533pt;}
.x57{left:439.209467pt;}
.x41{left:443.689067pt;}
.x54{left:445.928800pt;}
.x80{left:447.210533pt;}
.x61{left:448.170000pt;}
.x4f{left:454.249067pt;}
.x55{left:458.089867pt;}
.xa7{left:459.689467pt;}
.x8e{left:460.650400pt;}
.xae{left:461.609867pt;}
.xad{left:462.569333pt;}
.x39{left:463.849600pt;}
.x50{left:467.048933pt;}
.x99{left:468.329200pt;}
.x8f{left:472.810133pt;}
.x62{left:474.729067pt;}
.x3a{left:476.009333pt;}
.xc5{left:481.769067pt;}
.x7e{left:483.689467pt;}
.x63{left:487.209467pt;}
.xa1{left:496.170000pt;}
.x9e{left:497.129467pt;}
.x46{left:499.369200pt;}
.x76{left:500.649467pt;}
.xc8{left:502.569867pt;}
.x93{left:508.010267pt;}
.x67{left:509.929200pt;}
.x47{left:511.849600pt;}
.xb2{left:516.650000pt;}
.xb1{left:525.608933pt;}
.x96{left:567.529867pt;}
.x8b{left:576.169467pt;}
}




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