
    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_5f37e6fd0c0958b42be15d95.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_af13ee89804d5c88d8ff4561.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_62e80f747383ff68be2dd012.woff')format("woff");}.ff3{font-family:ff3;line-height:0.952637;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_16bb7c48e96dc16a2170091e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_c270c212ab5c116811f53318.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_9594616d51063c6397539216.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_12d2b872372a97c933812901.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c6dd10be80c1af1dcc5dea60.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_99612d4d6731f2ffdbd1c9c8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d10253a204adb57713ac8717.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9fa75e80b7058ffde52429f4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.686035;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_5b9161b0cb5aa5cf6a78a92d.woff')format("woff");}.ffc{font-family:ffc;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;}
.m4{transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250359,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250359,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250359,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.880000px;}
.ls2e{letter-spacing:-0.198000px;}
.ls9{letter-spacing:-0.166200px;}
.ls5{letter-spacing:-0.164400px;}
.ls37{letter-spacing:-0.163800px;}
.ls11{letter-spacing:-0.161400px;}
.ls1c{letter-spacing:-0.151200px;}
.ls1f{letter-spacing:-0.139800px;}
.ls31{letter-spacing:-0.135600px;}
.ls30{letter-spacing:-0.126000px;}
.ls3{letter-spacing:-0.116400px;}
.ls39{letter-spacing:-0.103800px;}
.ls17{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.087600px;}
.ls2b{letter-spacing:-0.078028px;}
.ls7{letter-spacing:-0.061200px;}
.ls34{letter-spacing:-0.045720px;}
.ls3b{letter-spacing:-0.029520px;}
.ls18{letter-spacing:-0.016200px;}
.ls3c{letter-spacing:-0.015480px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000720px;}
.ls1b{letter-spacing:0.002520px;}
.ls36{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.016200px;}
.ls15{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.045720px;}
.ls6{letter-spacing:0.059040px;}
.ls14{letter-spacing:0.061200px;}
.ls1a{letter-spacing:0.066000px;}
.ls1d{letter-spacing:0.066240px;}
.ls27{letter-spacing:0.071280px;}
.lse{letter-spacing:0.071400px;}
.lsa{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.075000px;}
.ls3a{letter-spacing:0.076200px;}
.ls16{letter-spacing:0.085200px;}
.ls12{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.090000px;}
.ls2d{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.111240px;}
.ls29{letter-spacing:0.129960px;}
.lsc{letter-spacing:0.130200px;}
.ls33{letter-spacing:0.133560px;}
.lsd{letter-spacing:0.139800px;}
.ls2f{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.153600px;}
.ls38{letter-spacing:0.163800px;}
.ls10{letter-spacing:0.164400px;}
.ls19{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.184800px;}
.ls25{letter-spacing:0.231240px;}
.ls22{letter-spacing:0.810000px;}
.ls24{letter-spacing:1.170000px;}
.ls21{letter-spacing:1.890000px;}
.ls1e{letter-spacing:2.610000px;}
.ls32{letter-spacing:3.384000px;}
.ls23{letter-spacing:5.130000px;}
.ls2c{letter-spacing:10.890000px;}
.ls2a{letter-spacing:13.050000px;}
.ls28{letter-spacing:17.730000px;}
.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;}
}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws10{word-spacing:-15.210000px;}
.ws20{word-spacing:-15.169800px;}
.ws16{word-spacing:-15.160200px;}
.ws11{word-spacing:-15.117600px;}
.wsb{word-spacing:-15.115200px;}
.ws21{word-spacing:-15.101400px;}
.wse{word-spacing:-15.096000px;}
.ws12{word-spacing:-15.091200px;}
.ws9{word-spacing:-15.046200px;}
.wsf{word-spacing:-15.030000px;}
.wsc{word-spacing:-15.013800px;}
.ws5{word-spacing:-14.968800px;}
.ws13{word-spacing:-14.942400px;}
.ws1{word-spacing:-14.913600px;}
.wsd{word-spacing:-14.878800px;}
.ws8{word-spacing:-14.868600px;}
.ws19{word-spacing:-13.590000px;}
.ws17{word-spacing:-13.500000px;}
.ws22{word-spacing:-13.374000px;}
.ws18{word-spacing:-13.302000px;}
.ws7{word-spacing:-12.134400px;}
.ws27{word-spacing:-12.046200px;}
.ws6{word-spacing:-12.029040px;}
.ws24{word-spacing:-11.984760px;}
.ws2{word-spacing:-11.970000px;}
.ws28{word-spacing:-11.954520px;}
.ws23{word-spacing:-11.834400px;}
.ws25{word-spacing:-11.806200px;}
.ws26{word-spacing:-11.803800px;}
.ws0{word-spacing:-10.530000px;}
.ws15{word-spacing:-9.753469px;}
.ws14{word-spacing:-9.675442px;}
.ws1f{word-spacing:-8.816849px;}
.ws1c{word-spacing:-8.695815px;}
.ws1e{word-spacing:-7.679940px;}
.ws1d{word-spacing:-7.656738px;}
.ws1b{word-spacing:-7.574513px;}
.ws1a{word-spacing:-7.551629px;}
.wsa{word-spacing:0.000000px;}
._c{margin-left:-12.840000px;}
._15{margin-left:-2.256877px;}
._1{margin-left:-1.090440px;}
._0{width:1.008840px;}
._4{width:2.248320px;}
._2{width:3.733320px;}
._3{width:4.839840px;}
._5{width:6.607440px;}
._7{width:7.875720px;}
._8{width:9.378720px;}
._a{width:10.460880px;}
._9{width:11.543040px;}
._b{width:12.583560px;}
._12{width:13.887720px;}
._16{width:15.081840px;}
._e{width:16.112160px;}
._10{width:17.675280px;}
._11{width:19.298520px;}
._d{width:21.042000px;}
._f{width:22.304520px;}
._13{width:23.807520px;}
._14{width:25.443960px;}
._6{width:31.230000px;}
._17{width:41.508000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.164133px;}
.fsb{font-size:27.246448px;}
.fs10{font-size:27.542222px;}
.fs11{font-size:27.625683px;}
.fse{font-size:31.279911px;}
.fsf{font-size:31.362226px;}
.fs14{font-size:31.715286px;}
.fs15{font-size:31.798747px;}
.fsc{font-size:34.572533px;}
.fsd{font-size:34.584949px;}
.fs13{font-size:35.003405px;}
.fs12{font-size:35.053737px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:39.013878px;}
.fs1{font-size:42.120000px;}
.fs0{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:60.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yda{bottom:2.243298px;}
.yd3{bottom:2.389600px;}
.yd6{bottom:2.438367px;}
.yd8{bottom:2.535902px;}
.yd4{bottom:2.584669px;}
.y1e{bottom:3.150000px;}
.ye1{bottom:3.510000px;}
.y10c{bottom:4.407312px;}
.y120{bottom:4.468656px;}
.y6{bottom:11.700000px;}
.yd1{bottom:11.964256px;}
.yde{bottom:12.033343px;}
.ydc{bottom:13.459788px;}
.y1d{bottom:16.650000px;}
.ye4{bottom:18.630000px;}
.y3{bottom:19.710000px;}
.y10a{bottom:22.719093px;}
.y11e{bottom:23.035313px;}
.y5{bottom:23.580000px;}
.y1c{bottom:30.150000px;}
.y2{bottom:31.500000px;}
.y104{bottom:41.404724px;}
.y118{bottom:41.981023px;}
.y1b{bottom:43.650000px;}
.y10f{bottom:46.594033px;}
.y112{bottom:46.611182px;}
.y123{bottom:47.242561px;}
.y126{bottom:47.259949px;}
.y10e{bottom:55.648744px;}
.y111{bottom:55.665893px;}
.y122{bottom:56.423301px;}
.y125{bottom:56.440689px;}
.y1a{bottom:57.150000px;}
.y19{bottom:70.650000px;}
.y6a{bottom:78.840000px;}
.y105{bottom:79.578562px;}
.y8{bottom:80.460000px;}
.y119{bottom:80.686190px;}
.y18{bottom:84.150000px;}
.y17{bottom:97.650000px;}
.y16{bottom:111.150000px;}
.y106{bottom:117.728391px;}
.y11a{bottom:119.367015px;}
.y150{bottom:123.930000px;}
.y44{bottom:124.290000px;}
.ycb{bottom:124.380000px;}
.y15{bottom:124.650000px;}
.y69{bottom:126.990000px;}
.ya2{bottom:127.710000px;}
.y195{bottom:129.420000px;}
.ycf{bottom:132.817871px;}
.y14f{bottom:137.430000px;}
.y43{bottom:137.790000px;}
.y14{bottom:138.150000px;}
.y140{bottom:138.690000px;}
.yca{bottom:141.300000px;}
.y194{bottom:142.920000px;}
.y68{bottom:143.910000px;}
.yce{bottom:144.034361px;}
.ya1{bottom:144.630000px;}
.y14e{bottom:150.960000px;}
.y42{bottom:151.320000px;}
.y13{bottom:151.650000px;}
.y13f{bottom:155.640000px;}
.y107{bottom:155.902230px;}
.y193{bottom:156.450000px;}
.y11b{bottom:158.072183px;}
.yc9{bottom:158.250000px;}
.y67{bottom:160.860000px;}
.ya0{bottom:161.580000px;}
.y14d{bottom:164.460000px;}
.y41{bottom:164.820000px;}
.y12{bottom:165.150000px;}
.y192{bottom:169.950000px;}
.y13e{bottom:172.560000px;}
.yc8{bottom:175.170000px;}
.y66{bottom:177.780000px;}
.y14c{bottom:177.960000px;}
.y9f{bottom:178.500000px;}
.y11{bottom:178.650000px;}
.y40{bottom:181.290000px;}
.y191{bottom:183.450000px;}
.y13d{bottom:189.480000px;}
.y14b{bottom:191.460000px;}
.yc7{bottom:192.090000px;}
.y10{bottom:192.150000px;}
.y108{bottom:194.076068px;}
.y65{bottom:194.700000px;}
.y9e{bottom:195.420000px;}
.y11c{bottom:196.777351px;}
.y190{bottom:196.950000px;}
.y14a{bottom:204.960000px;}
.y13c{bottom:206.400000px;}
.y3f{bottom:208.290000px;}
.yc6{bottom:209.010000px;}
.y18f{bottom:210.450000px;}
.y64{bottom:211.620000px;}
.y9d{bottom:212.340000px;}
.y149{bottom:218.460000px;}
.y13b{bottom:223.320000px;}
.y18e{bottom:223.950000px;}
.y102{bottom:224.040000px;}
.y3e{bottom:225.210000px;}
.yc5{bottom:225.930000px;}
.y63{bottom:228.540000px;}
.y9c{bottom:229.260000px;}
.y148{bottom:231.960000px;}
.y18d{bottom:237.450000px;}
.y13a{bottom:240.240000px;}
.y101{bottom:240.960000px;}
.y3d{bottom:242.130000px;}
.yc4{bottom:242.850000px;}
.y62{bottom:245.460000px;}
.y9b{bottom:246.180000px;}
.y18c{bottom:250.950000px;}
.y139{bottom:257.160000px;}
.y100{bottom:257.880000px;}
.y3c{bottom:259.050000px;}
.yc3{bottom:259.770000px;}
.y61{bottom:262.380000px;}
.y9a{bottom:263.100000px;}
.y18b{bottom:264.450000px;}
.y138{bottom:274.080000px;}
.yff{bottom:274.800000px;}
.y3b{bottom:275.970000px;}
.yc2{bottom:276.690000px;}
.y147{bottom:277.500000px;}
.y18a{bottom:277.950000px;}
.y60{bottom:279.300000px;}
.y99{bottom:280.020000px;}
.y137{bottom:291.000000px;}
.y189{bottom:291.450000px;}
.yfe{bottom:291.720000px;}
.y3a{bottom:292.890000px;}
.yc1{bottom:293.610000px;}
.y5f{bottom:296.220000px;}
.y98{bottom:296.940000px;}
.y188{bottom:304.950000px;}
.y136{bottom:307.920000px;}
.yfd{bottom:308.640000px;}
.y39{bottom:309.810000px;}
.yc0{bottom:310.530000px;}
.y5e{bottom:313.140000px;}
.y97{bottom:313.860000px;}
.y187{bottom:318.450000px;}
.y146{bottom:324.210000px;}
.y135{bottom:324.840000px;}
.yfc{bottom:325.560000px;}
.y38{bottom:326.730000px;}
.ybf{bottom:327.450000px;}
.y5d{bottom:330.060000px;}
.y96{bottom:330.780000px;}
.y186{bottom:331.950000px;}
.y145{bottom:339.330000px;}
.y134{bottom:341.760000px;}
.yfb{bottom:342.480000px;}
.y37{bottom:343.650000px;}
.ybe{bottom:344.370000px;}
.y185{bottom:345.450000px;}
.y5c{bottom:346.980000px;}
.y95{bottom:347.700000px;}
.y144{bottom:354.450000px;}
.y133{bottom:358.680000px;}
.y184{bottom:358.950000px;}
.yfa{bottom:359.400000px;}
.y36{bottom:360.570000px;}
.ybd{bottom:361.290000px;}
.y5b{bottom:363.900000px;}
.y94{bottom:364.620000px;}
.y143{bottom:369.570000px;}
.y183{bottom:372.450000px;}
.y132{bottom:375.600000px;}
.yf9{bottom:376.320000px;}
.y35{bottom:377.490000px;}
.ybc{bottom:378.210000px;}
.y5a{bottom:380.820000px;}
.y93{bottom:381.540000px;}
.y142{bottom:384.690000px;}
.y182{bottom:385.950000px;}
.y131{bottom:392.520000px;}
.yf8{bottom:393.240000px;}
.y34{bottom:394.410000px;}
.ybb{bottom:395.130000px;}
.y59{bottom:397.740000px;}
.y92{bottom:398.460000px;}
.y181{bottom:399.450000px;}
.y141{bottom:399.810000px;}
.y130{bottom:409.440000px;}
.yf7{bottom:410.160000px;}
.y33{bottom:411.330000px;}
.yba{bottom:412.050000px;}
.y180{bottom:412.950000px;}
.y58{bottom:414.660000px;}
.y91{bottom:415.380000px;}
.y12f{bottom:426.360000px;}
.y17f{bottom:426.450000px;}
.yf6{bottom:427.080000px;}
.y32{bottom:428.250000px;}
.yb9{bottom:428.970000px;}
.y57{bottom:431.580000px;}
.y90{bottom:432.300000px;}
.y17e{bottom:439.950000px;}
.yf5{bottom:443.190000px;}
.y12e{bottom:443.280000px;}
.y31{bottom:445.170000px;}
.yb8{bottom:445.890000px;}
.y56{bottom:448.500000px;}
.y8f{bottom:449.220000px;}
.y17d{bottom:453.450000px;}
.yf4{bottom:456.690000px;}
.y12d{bottom:460.200000px;}
.y30{bottom:462.090000px;}
.yb7{bottom:462.810000px;}
.ycc{bottom:463.620000px;}
.y55{bottom:465.420000px;}
.y8e{bottom:466.140000px;}
.y17c{bottom:466.950000px;}
.yf3{bottom:470.190000px;}
.y12c{bottom:477.120000px;}
.y2f{bottom:479.010000px;}
.yb6{bottom:479.730000px;}
.y17b{bottom:480.450000px;}
.y54{bottom:482.340000px;}
.y8d{bottom:483.060000px;}
.yf2{bottom:483.690000px;}
.y17a{bottom:493.950000px;}
.y12b{bottom:494.040000px;}
.yf1{bottom:494.760000px;}
.y2e{bottom:495.930000px;}
.yb5{bottom:496.650000px;}
.y53{bottom:499.260000px;}
.y8c{bottom:499.980000px;}
.y179{bottom:507.450000px;}
.yf0{bottom:509.880000px;}
.y12a{bottom:511.770000px;}
.ycd{bottom:512.220000px;}
.y2d{bottom:512.850000px;}
.yb4{bottom:513.570000px;}
.y52{bottom:516.180000px;}
.y8b{bottom:516.900000px;}
.y178{bottom:520.950000px;}
.yef{bottom:525.000000px;}
.y2c{bottom:529.770000px;}
.yb3{bottom:530.490000px;}
.y129{bottom:531.210000px;}
.y51{bottom:533.100000px;}
.ydd{bottom:533.486627px;}
.y8a{bottom:533.820000px;}
.y177{bottom:534.450000px;}
.yee{bottom:540.120000px;}
.ydb{bottom:544.995721px;}
.y2b{bottom:546.690000px;}
.y128{bottom:547.320000px;}
.yb2{bottom:547.410000px;}
.y176{bottom:547.950000px;}
.y50{bottom:550.020000px;}
.y89{bottom:550.740000px;}
.yed{bottom:555.240000px;}
.y127{bottom:560.820000px;}
.y175{bottom:561.450000px;}
.y2a{bottom:563.610000px;}
.yb1{bottom:564.330000px;}
.y4f{bottom:566.940000px;}
.yd9{bottom:567.428701px;}
.y88{bottom:567.660000px;}
.yec{bottom:570.360000px;}
.y117{bottom:574.299798px;}
.y174{bottom:574.950000px;}
.yd7{bottom:578.645191px;}
.y11d{bottom:579.516128px;}
.y29{bottom:580.530000px;}
.yb0{bottom:581.250000px;}
.y4e{bottom:583.860000px;}
.y87{bottom:584.580000px;}
.yeb{bottom:585.480000px;}
.y173{bottom:588.450000px;}
.yd5{bottom:590.154285px;}
.y28{bottom:597.480000px;}
.yaf{bottom:598.200000px;}
.yea{bottom:600.630000px;}
.y4d{bottom:600.810000px;}
.y86{bottom:601.530000px;}
.yd2{bottom:601.716210px;}
.y172{bottom:601.980000px;}
.yd0{bottom:613.469141px;}
.y27{bottom:614.400000px;}
.yae{bottom:615.120000px;}
.y171{bottom:615.480000px;}
.ye9{bottom:615.750000px;}
.y4c{bottom:617.730000px;}
.y85{bottom:618.450000px;}
.y170{bottom:628.980000px;}
.ye8{bottom:630.870000px;}
.y26{bottom:631.320000px;}
.yad{bottom:632.040000px;}
.y4b{bottom:634.650000px;}
.y84{bottom:635.370000px;}
.y16f{bottom:642.480000px;}
.ye7{bottom:645.990000px;}
.y124{bottom:648.163029px;}
.y25{bottom:648.240000px;}
.yac{bottom:648.960000px;}
.y4a{bottom:651.570000px;}
.y83{bottom:652.290000px;}
.y16e{bottom:655.980000px;}
.y11f{bottom:657.969729px;}
.ye6{bottom:661.110000px;}
.y24{bottom:665.160000px;}
.yab{bottom:665.880000px;}
.y49{bottom:668.490000px;}
.y82{bottom:669.210000px;}
.y16d{bottom:669.480000px;}
.ye5{bottom:676.230000px;}
.y121{bottom:680.295621px;}
.y23{bottom:682.080000px;}
.yaa{bottom:682.800000px;}
.y16c{bottom:682.980000px;}
.y48{bottom:685.410000px;}
.y81{bottom:686.130000px;}
.ye3{bottom:691.350000px;}
.y16b{bottom:696.480000px;}
.y22{bottom:699.000000px;}
.ya9{bottom:699.720000px;}
.y47{bottom:702.330000px;}
.y80{bottom:703.050000px;}
.y16a{bottom:709.980000px;}
.ya8{bottom:716.640000px;}
.y46{bottom:719.250000px;}
.y21{bottom:719.700000px;}
.y7f{bottom:719.970000px;}
.ye2{bottom:721.590000px;}
.y169{bottom:723.480000px;}
.ya7{bottom:733.560000px;}
.y20{bottom:733.650000px;}
.y45{bottom:736.170000px;}
.y7e{bottom:736.890000px;}
.y168{bottom:736.980000px;}
.ye0{bottom:737.430000px;}
.ya6{bottom:750.480000px;}
.y1f{bottom:753.090000px;}
.y7d{bottom:753.810000px;}
.ydf{bottom:756.420000px;}
.y167{bottom:763.980000px;}
.yf{bottom:766.770000px;}
.ya5{bottom:767.400000px;}
.y7c{bottom:770.730000px;}
.y166{bottom:777.480000px;}
.ya4{bottom:784.320000px;}
.y7b{bottom:787.650000px;}
.y165{bottom:790.980000px;}
.ya3{bottom:802.050000px;}
.y164{bottom:804.480000px;}
.y7a{bottom:804.570000px;}
.y116{bottom:804.840000px;}
.y163{bottom:817.980000px;}
.y115{bottom:820.950000px;}
.y79{bottom:821.490000px;}
.y162{bottom:831.480000px;}
.y114{bottom:834.450000px;}
.y78{bottom:838.410000px;}
.y113{bottom:844.800000px;}
.y161{bottom:844.980000px;}
.y103{bottom:847.856833px;}
.y109{bottom:853.001555px;}
.y77{bottom:855.330000px;}
.y160{bottom:858.480000px;}
.y15f{bottom:871.980000px;}
.y76{bottom:872.250000px;}
.y15e{bottom:885.480000px;}
.y75{bottom:889.170000px;}
.y15d{bottom:898.980000px;}
.y74{bottom:906.090000px;}
.y15c{bottom:912.480000px;}
.y110{bottom:920.706099px;}
.y73{bottom:923.010000px;}
.y15b{bottom:925.980000px;}
.y10b{bottom:930.378176px;}
.y15a{bottom:939.480000px;}
.y72{bottom:939.930000px;}
.y10d{bottom:952.397587px;}
.y159{bottom:952.980000px;}
.y71{bottom:956.850000px;}
.y158{bottom:966.480000px;}
.ye{bottom:973.140000px;}
.y70{bottom:973.770000px;}
.y157{bottom:979.980000px;}
.yd{bottom:986.640000px;}
.y6f{bottom:990.690000px;}
.y156{bottom:993.480000px;}
.yc{bottom:1000.950000px;}
.y155{bottom:1006.980000px;}
.y6e{bottom:1007.610000px;}
.yb{bottom:1017.870000px;}
.y154{bottom:1020.480000px;}
.y6d{bottom:1024.530000px;}
.y153{bottom:1033.980000px;}
.ya{bottom:1034.790000px;}
.y6c{bottom:1041.480000px;}
.y152{bottom:1047.510000px;}
.y9{bottom:1053.270000px;}
.y6b{bottom:1058.400000px;}
.y151{bottom:1061.010000px;}
.y1{bottom:1070.280000px;}
.y4{bottom:1081.350000px;}
.y7{bottom:1100.970000px;}
.h15{height:11.216490px;}
.h14{height:11.509094px;}
.h13{height:11.557861px;}
.h17{height:15.120000px;}
.h1d{height:15.150000px;}
.h11{height:21.034983px;}
.h16{height:22.432980px;}
.hb{height:27.071719px;}
.h1f{height:28.331342px;}
.h20{height:28.417194px;}
.h29{height:28.725677px;}
.h2a{height:28.812724px;}
.h4{height:29.327695px;}
.h1c{height:30.240000px;}
.h21{height:30.868333px;}
.h2b{height:31.297979px;}
.h26{height:32.623969px;}
.h5{height:32.670000px;}
.h27{height:32.709822px;}
.h30{height:33.078052px;}
.h31{height:33.165099px;}
.h8{height:33.338320px;}
.h18{height:35.991211px;}
.h22{height:36.058071px;}
.h24{height:36.071021px;}
.h2e{height:36.507457px;}
.h2c{height:36.559952px;}
.h1a{height:36.571289px;}
.hc{height:37.546875px;}
.h19{height:37.599609px;}
.h1b{height:37.937688px;}
.h12{height:38.270938px;}
.h10{height:38.289988px;}
.hf{height:39.318674px;}
.hd{height:40.070215px;}
.h6{height:41.860898px;}
.h2{height:42.930000px;}
.ha{height:47.988281px;}
.h3{height:49.937344px;}
.h7{height:58.404727px;}
.h25{height:63.177188px;}
.h2f{height:64.056531px;}
.h32{height:75.093750px;}
.h23{height:76.553465px;}
.h2d{height:77.618988px;}
.he{height:153.007553px;}
.h9{height:202.500000px;}
.h1e{height:219.988318px;}
.h28{height:223.050265px;}
.h0{height:1262.790000px;}
.h1{height:1263.000000px;}
.w5{width:21.330000px;}
.wb{width:36.438545px;}
.w9{width:36.601217px;}
.wa{width:36.617484px;}
.w10{width:52.290000px;}
.w14{width:57.229856px;}
.w18{width:60.630898px;}
.we{width:63.810000px;}
.wf{width:68.070000px;}
.w13{width:69.375761px;}
.w17{width:70.215163px;}
.w8{width:98.985958px;}
.w12{width:101.902082px;}
.w16{width:103.135032px;}
.wc{width:175.350000px;}
.wd{width:184.170000px;}
.w2{width:237.540000px;}
.w11{width:346.672941px;}
.w15{width:350.867462px;}
.w7{width:355.048071px;}
.w6{width:356.430000px;}
.w4{width:357.810000px;}
.w3{width:407.370000px;}
.w0{width:892.890000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:3.806527px;}
.xb{left:5.220000px;}
.x23{left:7.271442px;}
.x4{left:9.360000px;}
.x24{left:10.541150px;}
.x1b{left:11.761191px;}
.x19{left:13.908462px;}
.x1d{left:15.811726px;}
.x22{left:18.251807px;}
.x2d{left:23.077219px;}
.x2a{left:26.100000px;}
.x3{left:32.400000px;}
.x2b{left:33.930000px;}
.x17{left:41.286173px;}
.x26{left:71.220000px;}
.x10{left:76.590000px;}
.x25{left:79.830000px;}
.x1{left:83.070000px;}
.x5{left:85.050000px;}
.x11{left:97.920000px;}
.xe{left:106.380000px;}
.x7{left:166.890000px;}
.x27{left:255.180000px;}
.x9{left:278.670000px;}
.x28{left:318.990000px;}
.x14{left:321.690000px;}
.x29{left:387.060000px;}
.xa{left:406.050000px;}
.x2{left:408.030000px;}
.x6{left:431.700000px;}
.xc{left:440.790000px;}
.x8{left:450.690000px;}
.x13{left:452.940000px;}
.xd{left:462.030000px;}
.x33{left:463.380000px;}
.x2c{left:464.869667px;}
.x12{left:474.270000px;}
.x30{left:475.574533px;}
.xf{left:482.730000px;}
.x2e{left:509.953619px;}
.x38{left:516.750000px;}
.x37{left:528.630000px;}
.x34{left:530.430000px;}
.x18{left:551.880958px;}
.x1a{left:588.482175px;}
.x2f{left:614.737780px;}
.x35{left:616.593432px;}
.x1c{left:625.083391px;}
.x15{left:633.570000px;}
.x1e{left:661.684608px;}
.x1f{left:698.285825px;}
.x20{left:734.903309px;}
.x31{left:751.842399px;}
.x36{left:754.106808px;}
.x21{left:771.504526px;}
.x32{left:814.860000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.560000pt;}
.ls2e{letter-spacing:-0.176000pt;}
.ls9{letter-spacing:-0.147733pt;}
.ls5{letter-spacing:-0.146133pt;}
.ls37{letter-spacing:-0.145600pt;}
.ls11{letter-spacing:-0.143467pt;}
.ls1c{letter-spacing:-0.134400pt;}
.ls1f{letter-spacing:-0.124267pt;}
.ls31{letter-spacing:-0.120533pt;}
.ls30{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:-0.103467pt;}
.ls39{letter-spacing:-0.092267pt;}
.ls17{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.077867pt;}
.ls2b{letter-spacing:-0.069358pt;}
.ls7{letter-spacing:-0.054400pt;}
.ls34{letter-spacing:-0.040640pt;}
.ls3b{letter-spacing:-0.026240pt;}
.ls18{letter-spacing:-0.014400pt;}
.ls3c{letter-spacing:-0.013760pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000640pt;}
.ls1b{letter-spacing:0.002240pt;}
.ls36{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.014400pt;}
.ls15{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.040640pt;}
.ls6{letter-spacing:0.052480pt;}
.ls14{letter-spacing:0.054400pt;}
.ls1a{letter-spacing:0.058667pt;}
.ls1d{letter-spacing:0.058880pt;}
.ls27{letter-spacing:0.063360pt;}
.lse{letter-spacing:0.063467pt;}
.lsa{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.066667pt;}
.ls3a{letter-spacing:0.067733pt;}
.ls16{letter-spacing:0.075733pt;}
.ls12{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.080000pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.098880pt;}
.ls29{letter-spacing:0.115520pt;}
.lsc{letter-spacing:0.115733pt;}
.ls33{letter-spacing:0.118720pt;}
.lsd{letter-spacing:0.124267pt;}
.ls2f{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.136533pt;}
.ls38{letter-spacing:0.145600pt;}
.ls10{letter-spacing:0.146133pt;}
.ls19{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.164267pt;}
.ls25{letter-spacing:0.205547pt;}
.ls22{letter-spacing:0.720000pt;}
.ls24{letter-spacing:1.040000pt;}
.ls21{letter-spacing:1.680000pt;}
.ls1e{letter-spacing:2.320000pt;}
.ls32{letter-spacing:3.008000pt;}
.ls23{letter-spacing:4.560000pt;}
.ls2c{letter-spacing:9.680000pt;}
.ls2a{letter-spacing:11.600000pt;}
.ls28{letter-spacing:15.760000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws10{word-spacing:-13.520000pt;}
.ws20{word-spacing:-13.484267pt;}
.ws16{word-spacing:-13.475733pt;}
.ws11{word-spacing:-13.437867pt;}
.wsb{word-spacing:-13.435733pt;}
.ws21{word-spacing:-13.423467pt;}
.wse{word-spacing:-13.418667pt;}
.ws12{word-spacing:-13.414400pt;}
.ws9{word-spacing:-13.374400pt;}
.wsf{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.345600pt;}
.ws5{word-spacing:-13.305600pt;}
.ws13{word-spacing:-13.282133pt;}
.ws1{word-spacing:-13.256533pt;}
.wsd{word-spacing:-13.225600pt;}
.ws8{word-spacing:-13.216533pt;}
.ws19{word-spacing:-12.080000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.888000pt;}
.ws18{word-spacing:-11.824000pt;}
.ws7{word-spacing:-10.786133pt;}
.ws27{word-spacing:-10.707733pt;}
.ws6{word-spacing:-10.692480pt;}
.ws24{word-spacing:-10.653120pt;}
.ws2{word-spacing:-10.640000pt;}
.ws28{word-spacing:-10.626240pt;}
.ws23{word-spacing:-10.519467pt;}
.ws25{word-spacing:-10.494400pt;}
.ws26{word-spacing:-10.492267pt;}
.ws0{word-spacing:-9.360000pt;}
.ws15{word-spacing:-8.669751pt;}
.ws14{word-spacing:-8.600393pt;}
.ws1f{word-spacing:-7.837199pt;}
.ws1c{word-spacing:-7.729613pt;}
.ws1e{word-spacing:-6.826613pt;}
.ws1d{word-spacing:-6.805989pt;}
.ws1b{word-spacing:-6.732900pt;}
.ws1a{word-spacing:-6.712559pt;}
.wsa{word-spacing:0.000000pt;}
._c{margin-left:-11.413333pt;}
._15{margin-left:-2.006113pt;}
._1{margin-left:-0.969280pt;}
._0{width:0.896747pt;}
._4{width:1.998507pt;}
._2{width:3.318507pt;}
._3{width:4.302080pt;}
._5{width:5.873280pt;}
._7{width:7.000640pt;}
._8{width:8.336640pt;}
._a{width:9.298560pt;}
._9{width:10.260480pt;}
._b{width:11.185387pt;}
._12{width:12.344640pt;}
._16{width:13.406080pt;}
._e{width:14.321920pt;}
._10{width:15.711360pt;}
._11{width:17.154240pt;}
._d{width:18.704000pt;}
._f{width:19.826240pt;}
._13{width:21.162240pt;}
._14{width:22.616853pt;}
._6{width:27.760000pt;}
._17{width:36.896000pt;}
.fsa{font-size:24.145896pt;}
.fsb{font-size:24.219065pt;}
.fs10{font-size:24.481975pt;}
.fs11{font-size:24.556163pt;}
.fse{font-size:27.804365pt;}
.fsf{font-size:27.877534pt;}
.fs14{font-size:28.191365pt;}
.fs15{font-size:28.265553pt;}
.fsc{font-size:30.731140pt;}
.fsd{font-size:30.742177pt;}
.fs13{font-size:31.114138pt;}
.fs12{font-size:31.158877pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:34.679003pt;}
.fs1{font-size:37.440000pt;}
.fs0{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:1.994043pt;}
.yd3{bottom:2.124089pt;}
.yd6{bottom:2.167438pt;}
.yd8{bottom:2.254135pt;}
.yd4{bottom:2.297484pt;}
.y1e{bottom:2.800000pt;}
.ye1{bottom:3.120000pt;}
.y10c{bottom:3.917611pt;}
.y120{bottom:3.972139pt;}
.y6{bottom:10.400000pt;}
.yd1{bottom:10.634894pt;}
.yde{bottom:10.696305pt;}
.ydc{bottom:11.964256pt;}
.y1d{bottom:14.800000pt;}
.ye4{bottom:16.560000pt;}
.y3{bottom:17.520000pt;}
.y10a{bottom:20.194749pt;}
.y11e{bottom:20.475834pt;}
.y5{bottom:20.960000pt;}
.y1c{bottom:26.800000pt;}
.y2{bottom:28.000000pt;}
.y104{bottom:36.804199pt;}
.y118{bottom:37.316465pt;}
.y1b{bottom:38.800000pt;}
.y10f{bottom:41.416919pt;}
.y112{bottom:41.432162pt;}
.y123{bottom:41.993387pt;}
.y126{bottom:42.008843pt;}
.y10e{bottom:49.465551pt;}
.y111{bottom:49.480794pt;}
.y122{bottom:50.154046pt;}
.y125{bottom:50.169502pt;}
.y1a{bottom:50.800000pt;}
.y19{bottom:62.800000pt;}
.y6a{bottom:70.080000pt;}
.y105{bottom:70.736499pt;}
.y8{bottom:71.520000pt;}
.y119{bottom:71.721058pt;}
.y18{bottom:74.800000pt;}
.y17{bottom:86.800000pt;}
.y16{bottom:98.800000pt;}
.y106{bottom:104.647459pt;}
.y11a{bottom:106.104014pt;}
.y150{bottom:110.160000pt;}
.y44{bottom:110.480000pt;}
.ycb{bottom:110.560000pt;}
.y15{bottom:110.800000pt;}
.y69{bottom:112.880000pt;}
.ya2{bottom:113.520000pt;}
.y195{bottom:115.040000pt;}
.ycf{bottom:118.060330pt;}
.y14f{bottom:122.160000pt;}
.y43{bottom:122.480000pt;}
.y14{bottom:122.800000pt;}
.y140{bottom:123.280000pt;}
.yca{bottom:125.600000pt;}
.y194{bottom:127.040000pt;}
.y68{bottom:127.920000pt;}
.yce{bottom:128.030543pt;}
.ya1{bottom:128.560000pt;}
.y14e{bottom:134.186667pt;}
.y42{bottom:134.506667pt;}
.y13{bottom:134.800000pt;}
.y13f{bottom:138.346667pt;}
.y107{bottom:138.579760pt;}
.y193{bottom:139.066667pt;}
.y11b{bottom:140.508607pt;}
.yc9{bottom:140.666667pt;}
.y67{bottom:142.986667pt;}
.ya0{bottom:143.626667pt;}
.y14d{bottom:146.186667pt;}
.y41{bottom:146.506667pt;}
.y12{bottom:146.800000pt;}
.y192{bottom:151.066667pt;}
.y13e{bottom:153.386667pt;}
.yc8{bottom:155.706667pt;}
.y66{bottom:158.026667pt;}
.y14c{bottom:158.186667pt;}
.y9f{bottom:158.666667pt;}
.y11{bottom:158.800000pt;}
.y40{bottom:161.146667pt;}
.y191{bottom:163.066667pt;}
.y13d{bottom:168.426667pt;}
.y14b{bottom:170.186667pt;}
.yc7{bottom:170.746667pt;}
.y10{bottom:170.800000pt;}
.y108{bottom:172.512060pt;}
.y65{bottom:173.066667pt;}
.y9e{bottom:173.706667pt;}
.y11c{bottom:174.913200pt;}
.y190{bottom:175.066667pt;}
.y14a{bottom:182.186667pt;}
.y13c{bottom:183.466667pt;}
.y3f{bottom:185.146667pt;}
.yc6{bottom:185.786667pt;}
.y18f{bottom:187.066667pt;}
.y64{bottom:188.106667pt;}
.y9d{bottom:188.746667pt;}
.y149{bottom:194.186667pt;}
.y13b{bottom:198.506667pt;}
.y18e{bottom:199.066667pt;}
.y102{bottom:199.146667pt;}
.y3e{bottom:200.186667pt;}
.yc5{bottom:200.826667pt;}
.y63{bottom:203.146667pt;}
.y9c{bottom:203.786667pt;}
.y148{bottom:206.186667pt;}
.y18d{bottom:211.066667pt;}
.y13a{bottom:213.546667pt;}
.y101{bottom:214.186667pt;}
.y3d{bottom:215.226667pt;}
.yc4{bottom:215.866667pt;}
.y62{bottom:218.186667pt;}
.y9b{bottom:218.826667pt;}
.y18c{bottom:223.066667pt;}
.y139{bottom:228.586667pt;}
.y100{bottom:229.226667pt;}
.y3c{bottom:230.266667pt;}
.yc3{bottom:230.906667pt;}
.y61{bottom:233.226667pt;}
.y9a{bottom:233.866667pt;}
.y18b{bottom:235.066667pt;}
.y138{bottom:243.626667pt;}
.yff{bottom:244.266667pt;}
.y3b{bottom:245.306667pt;}
.yc2{bottom:245.946667pt;}
.y147{bottom:246.666667pt;}
.y18a{bottom:247.066667pt;}
.y60{bottom:248.266667pt;}
.y99{bottom:248.906667pt;}
.y137{bottom:258.666667pt;}
.y189{bottom:259.066667pt;}
.yfe{bottom:259.306667pt;}
.y3a{bottom:260.346667pt;}
.yc1{bottom:260.986667pt;}
.y5f{bottom:263.306667pt;}
.y98{bottom:263.946667pt;}
.y188{bottom:271.066667pt;}
.y136{bottom:273.706667pt;}
.yfd{bottom:274.346667pt;}
.y39{bottom:275.386667pt;}
.yc0{bottom:276.026667pt;}
.y5e{bottom:278.346667pt;}
.y97{bottom:278.986667pt;}
.y187{bottom:283.066667pt;}
.y146{bottom:288.186667pt;}
.y135{bottom:288.746667pt;}
.yfc{bottom:289.386667pt;}
.y38{bottom:290.426667pt;}
.ybf{bottom:291.066667pt;}
.y5d{bottom:293.386667pt;}
.y96{bottom:294.026667pt;}
.y186{bottom:295.066667pt;}
.y145{bottom:301.626667pt;}
.y134{bottom:303.786667pt;}
.yfb{bottom:304.426667pt;}
.y37{bottom:305.466667pt;}
.ybe{bottom:306.106667pt;}
.y185{bottom:307.066667pt;}
.y5c{bottom:308.426667pt;}
.y95{bottom:309.066667pt;}
.y144{bottom:315.066667pt;}
.y133{bottom:318.826667pt;}
.y184{bottom:319.066667pt;}
.yfa{bottom:319.466667pt;}
.y36{bottom:320.506667pt;}
.ybd{bottom:321.146667pt;}
.y5b{bottom:323.466667pt;}
.y94{bottom:324.106667pt;}
.y143{bottom:328.506667pt;}
.y183{bottom:331.066667pt;}
.y132{bottom:333.866667pt;}
.yf9{bottom:334.506667pt;}
.y35{bottom:335.546667pt;}
.ybc{bottom:336.186667pt;}
.y5a{bottom:338.506667pt;}
.y93{bottom:339.146667pt;}
.y142{bottom:341.946667pt;}
.y182{bottom:343.066667pt;}
.y131{bottom:348.906667pt;}
.yf8{bottom:349.546667pt;}
.y34{bottom:350.586667pt;}
.ybb{bottom:351.226667pt;}
.y59{bottom:353.546667pt;}
.y92{bottom:354.186667pt;}
.y181{bottom:355.066667pt;}
.y141{bottom:355.386667pt;}
.y130{bottom:363.946667pt;}
.yf7{bottom:364.586667pt;}
.y33{bottom:365.626667pt;}
.yba{bottom:366.266667pt;}
.y180{bottom:367.066667pt;}
.y58{bottom:368.586667pt;}
.y91{bottom:369.226667pt;}
.y12f{bottom:378.986667pt;}
.y17f{bottom:379.066667pt;}
.yf6{bottom:379.626667pt;}
.y32{bottom:380.666667pt;}
.yb9{bottom:381.306667pt;}
.y57{bottom:383.626667pt;}
.y90{bottom:384.266667pt;}
.y17e{bottom:391.066667pt;}
.yf5{bottom:393.946667pt;}
.y12e{bottom:394.026667pt;}
.y31{bottom:395.706667pt;}
.yb8{bottom:396.346667pt;}
.y56{bottom:398.666667pt;}
.y8f{bottom:399.306667pt;}
.y17d{bottom:403.066667pt;}
.yf4{bottom:405.946667pt;}
.y12d{bottom:409.066667pt;}
.y30{bottom:410.746667pt;}
.yb7{bottom:411.386667pt;}
.ycc{bottom:412.106667pt;}
.y55{bottom:413.706667pt;}
.y8e{bottom:414.346667pt;}
.y17c{bottom:415.066667pt;}
.yf3{bottom:417.946667pt;}
.y12c{bottom:424.106667pt;}
.y2f{bottom:425.786667pt;}
.yb6{bottom:426.426667pt;}
.y17b{bottom:427.066667pt;}
.y54{bottom:428.746667pt;}
.y8d{bottom:429.386667pt;}
.yf2{bottom:429.946667pt;}
.y17a{bottom:439.066667pt;}
.y12b{bottom:439.146667pt;}
.yf1{bottom:439.786667pt;}
.y2e{bottom:440.826667pt;}
.yb5{bottom:441.466667pt;}
.y53{bottom:443.786667pt;}
.y8c{bottom:444.426667pt;}
.y179{bottom:451.066667pt;}
.yf0{bottom:453.226667pt;}
.y12a{bottom:454.906667pt;}
.ycd{bottom:455.306667pt;}
.y2d{bottom:455.866667pt;}
.yb4{bottom:456.506667pt;}
.y52{bottom:458.826667pt;}
.y8b{bottom:459.466667pt;}
.y178{bottom:463.066667pt;}
.yef{bottom:466.666667pt;}
.y2c{bottom:470.906667pt;}
.yb3{bottom:471.546667pt;}
.y129{bottom:472.186667pt;}
.y51{bottom:473.866667pt;}
.ydd{bottom:474.210335pt;}
.y8a{bottom:474.506667pt;}
.y177{bottom:475.066667pt;}
.yee{bottom:480.106667pt;}
.ydb{bottom:484.440641pt;}
.y2b{bottom:485.946667pt;}
.y128{bottom:486.506667pt;}
.yb2{bottom:486.586667pt;}
.y176{bottom:487.066667pt;}
.y50{bottom:488.906667pt;}
.y89{bottom:489.546667pt;}
.yed{bottom:493.546667pt;}
.y127{bottom:498.506667pt;}
.y175{bottom:499.066667pt;}
.y2a{bottom:500.986667pt;}
.yb1{bottom:501.626667pt;}
.y4f{bottom:503.946667pt;}
.yd9{bottom:504.381068pt;}
.y88{bottom:504.586667pt;}
.yec{bottom:506.986667pt;}
.y117{bottom:510.488709pt;}
.y174{bottom:511.066667pt;}
.yd7{bottom:514.351281pt;}
.y11d{bottom:515.125447pt;}
.y29{bottom:516.026667pt;}
.yb0{bottom:516.666667pt;}
.y4e{bottom:518.986667pt;}
.y87{bottom:519.626667pt;}
.yeb{bottom:520.426667pt;}
.y173{bottom:523.066667pt;}
.yd5{bottom:524.581587pt;}
.y28{bottom:531.093333pt;}
.yaf{bottom:531.733333pt;}
.yea{bottom:533.893333pt;}
.y4d{bottom:534.053333pt;}
.y86{bottom:534.693333pt;}
.yd2{bottom:534.858854pt;}
.y172{bottom:535.093333pt;}
.yd0{bottom:545.305903pt;}
.y27{bottom:546.133333pt;}
.yae{bottom:546.773333pt;}
.y171{bottom:547.093333pt;}
.ye9{bottom:547.333333pt;}
.y4c{bottom:549.093333pt;}
.y85{bottom:549.733333pt;}
.y170{bottom:559.093333pt;}
.ye8{bottom:560.773333pt;}
.y26{bottom:561.173333pt;}
.yad{bottom:561.813333pt;}
.y4b{bottom:564.133333pt;}
.y84{bottom:564.773333pt;}
.y16f{bottom:571.093333pt;}
.ye7{bottom:574.213333pt;}
.y124{bottom:576.144915pt;}
.y25{bottom:576.213333pt;}
.yac{bottom:576.853333pt;}
.y4a{bottom:579.173333pt;}
.y83{bottom:579.813333pt;}
.y16e{bottom:583.093333pt;}
.y11f{bottom:584.861981pt;}
.ye6{bottom:587.653333pt;}
.y24{bottom:591.253333pt;}
.yab{bottom:591.893333pt;}
.y49{bottom:594.213333pt;}
.y82{bottom:594.853333pt;}
.y16d{bottom:595.093333pt;}
.ye5{bottom:601.093333pt;}
.y121{bottom:604.707219pt;}
.y23{bottom:606.293333pt;}
.yaa{bottom:606.933333pt;}
.y16c{bottom:607.093333pt;}
.y48{bottom:609.253333pt;}
.y81{bottom:609.893333pt;}
.ye3{bottom:614.533333pt;}
.y16b{bottom:619.093333pt;}
.y22{bottom:621.333333pt;}
.ya9{bottom:621.973333pt;}
.y47{bottom:624.293333pt;}
.y80{bottom:624.933333pt;}
.y16a{bottom:631.093333pt;}
.ya8{bottom:637.013333pt;}
.y46{bottom:639.333333pt;}
.y21{bottom:639.733333pt;}
.y7f{bottom:639.973333pt;}
.ye2{bottom:641.413333pt;}
.y169{bottom:643.093333pt;}
.ya7{bottom:652.053333pt;}
.y20{bottom:652.133333pt;}
.y45{bottom:654.373333pt;}
.y7e{bottom:655.013333pt;}
.y168{bottom:655.093333pt;}
.ye0{bottom:655.493333pt;}
.ya6{bottom:667.093333pt;}
.y1f{bottom:669.413333pt;}
.y7d{bottom:670.053333pt;}
.ydf{bottom:672.373333pt;}
.y167{bottom:679.093333pt;}
.yf{bottom:681.573333pt;}
.ya5{bottom:682.133333pt;}
.y7c{bottom:685.093333pt;}
.y166{bottom:691.093333pt;}
.ya4{bottom:697.173333pt;}
.y7b{bottom:700.133333pt;}
.y165{bottom:703.093333pt;}
.ya3{bottom:712.933333pt;}
.y164{bottom:715.093333pt;}
.y7a{bottom:715.173333pt;}
.y116{bottom:715.413333pt;}
.y163{bottom:727.093333pt;}
.y115{bottom:729.733333pt;}
.y79{bottom:730.213333pt;}
.y162{bottom:739.093333pt;}
.y114{bottom:741.733333pt;}
.y78{bottom:745.253333pt;}
.y113{bottom:750.933333pt;}
.y161{bottom:751.093333pt;}
.y103{bottom:753.650518pt;}
.y109{bottom:758.223605pt;}
.y77{bottom:760.293333pt;}
.y160{bottom:763.093333pt;}
.y15f{bottom:775.093333pt;}
.y76{bottom:775.333333pt;}
.y15e{bottom:787.093333pt;}
.y75{bottom:790.373333pt;}
.y15d{bottom:799.093333pt;}
.y74{bottom:805.413333pt;}
.y15c{bottom:811.093333pt;}
.y110{bottom:818.405421pt;}
.y73{bottom:820.453333pt;}
.y15b{bottom:823.093333pt;}
.y10b{bottom:827.002823pt;}
.y15a{bottom:835.093333pt;}
.y72{bottom:835.493333pt;}
.y10d{bottom:846.575633pt;}
.y159{bottom:847.093333pt;}
.y71{bottom:850.533333pt;}
.y158{bottom:859.093333pt;}
.ye{bottom:865.013333pt;}
.y70{bottom:865.573333pt;}
.y157{bottom:871.093333pt;}
.yd{bottom:877.013333pt;}
.y6f{bottom:880.613333pt;}
.y156{bottom:883.093333pt;}
.yc{bottom:889.733333pt;}
.y155{bottom:895.093333pt;}
.y6e{bottom:895.653333pt;}
.yb{bottom:904.773333pt;}
.y154{bottom:907.093333pt;}
.y6d{bottom:910.693333pt;}
.y153{bottom:919.093333pt;}
.ya{bottom:919.813333pt;}
.y6c{bottom:925.760000pt;}
.y152{bottom:931.120000pt;}
.y9{bottom:936.240000pt;}
.y6b{bottom:940.800000pt;}
.y151{bottom:943.120000pt;}
.y1{bottom:951.360000pt;}
.y4{bottom:961.200000pt;}
.y7{bottom:978.640000pt;}
.h15{height:9.970213pt;}
.h14{height:10.230306pt;}
.h13{height:10.273655pt;}
.h17{height:13.440000pt;}
.h1d{height:13.466667pt;}
.h11{height:18.697762pt;}
.h16{height:19.940427pt;}
.hb{height:24.063750pt;}
.h1f{height:25.183415pt;}
.h20{height:25.259728pt;}
.h29{height:25.533935pt;}
.h2a{height:25.611310pt;}
.h4{height:26.069062pt;}
.h1c{height:26.880000pt;}
.h21{height:27.438518pt;}
.h2b{height:27.820426pt;}
.h26{height:28.999084pt;}
.h5{height:29.040000pt;}
.h27{height:29.075397pt;}
.h30{height:29.402713pt;}
.h31{height:29.480088pt;}
.h8{height:29.634062pt;}
.h18{height:31.992188pt;}
.h22{height:32.051619pt;}
.h24{height:32.063130pt;}
.h2e{height:32.451073pt;}
.h2c{height:32.497735pt;}
.h1a{height:32.507812pt;}
.hc{height:33.375000pt;}
.h19{height:33.421875pt;}
.h1b{height:33.722389pt;}
.h12{height:34.018611pt;}
.h10{height:34.035545pt;}
.hf{height:34.949932pt;}
.hd{height:35.617969pt;}
.h6{height:37.209687pt;}
.h2{height:38.160000pt;}
.ha{height:42.656250pt;}
.h3{height:44.388750pt;}
.h7{height:51.915312pt;}
.h25{height:56.157500pt;}
.h2f{height:56.939139pt;}
.h32{height:66.750000pt;}
.h23{height:68.047525pt;}
.h2d{height:68.994656pt;}
.he{height:136.006713pt;}
.h9{height:180.000000pt;}
.h1e{height:195.545172pt;}
.h28{height:198.266903pt;}
.h0{height:1122.480000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.960000pt;}
.wb{width:32.389818pt;}
.w9{width:32.534415pt;}
.wa{width:32.548875pt;}
.w10{width:46.480000pt;}
.w14{width:50.870983pt;}
.w18{width:53.894131pt;}
.we{width:56.720000pt;}
.wf{width:60.506667pt;}
.w13{width:61.667343pt;}
.w17{width:62.413478pt;}
.w8{width:87.987518pt;}
.w12{width:90.579628pt;}
.w16{width:91.675584pt;}
.wc{width:155.866667pt;}
.wd{width:163.706667pt;}
.w2{width:211.146667pt;}
.w11{width:308.153726pt;}
.w15{width:311.882189pt;}
.w7{width:315.598285pt;}
.w6{width:316.826667pt;}
.w4{width:318.053333pt;}
.w3{width:362.106667pt;}
.w0{width:793.680000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:3.383579pt;}
.xb{left:4.640000pt;}
.x23{left:6.463504pt;}
.x4{left:8.320000pt;}
.x24{left:9.369912pt;}
.x1b{left:10.454392pt;}
.x19{left:12.363078pt;}
.x1d{left:14.054867pt;}
.x22{left:16.223828pt;}
.x2d{left:20.513084pt;}
.x2a{left:23.200000pt;}
.x3{left:28.800000pt;}
.x2b{left:30.160000pt;}
.x17{left:36.698820pt;}
.x26{left:63.306667pt;}
.x10{left:68.080000pt;}
.x25{left:70.960000pt;}
.x1{left:73.840000pt;}
.x5{left:75.600000pt;}
.x11{left:87.040000pt;}
.xe{left:94.560000pt;}
.x7{left:148.346667pt;}
.x27{left:226.826667pt;}
.x9{left:247.706667pt;}
.x28{left:283.546667pt;}
.x14{left:285.946667pt;}
.x29{left:344.053333pt;}
.xa{left:360.933333pt;}
.x2{left:362.693333pt;}
.x6{left:383.733333pt;}
.xc{left:391.813333pt;}
.x8{left:400.613333pt;}
.x13{left:402.613333pt;}
.xd{left:410.693333pt;}
.x33{left:411.893333pt;}
.x2c{left:413.217482pt;}
.x12{left:421.573333pt;}
.x30{left:422.732918pt;}
.xf{left:429.093333pt;}
.x2e{left:453.292106pt;}
.x38{left:459.333333pt;}
.x37{left:469.893333pt;}
.x34{left:471.493333pt;}
.x18{left:490.560851pt;}
.x1a{left:523.095266pt;}
.x2f{left:546.433582pt;}
.x35{left:548.083051pt;}
.x1c{left:555.629681pt;}
.x15{left:563.173333pt;}
.x1e{left:588.164096pt;}
.x1f{left:620.698511pt;}
.x20{left:653.247386pt;}
.x31{left:668.304355pt;}
.x36{left:670.317163pt;}
.x21{left:685.781801pt;}
.x32{left:724.320000pt;}
}

