
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_2f6b4d0fef16.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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("fonts/font_0001_ef48e457a477.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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("fonts/font_0002_11182d101a87.woff")format("woff");}.ff3{font-family:ff3;line-height:0.906000;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("fonts/font_0003_de7c89211b24.woff")format("woff");}.ff4{font-family:ff4;line-height:0.713000;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("fonts/font_0004_96ce5ebeb5c7.woff")format("woff");}.ff5{font-family:ff5;line-height:0.900000;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("fonts/font_0005_3951812080c7.woff")format("woff");}.ff6{font-family:ff6;line-height:0.429000;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("fonts/font_0006_8a4392df6dfc.woff")format("woff");}.ff7{font-family:ff7;line-height:0.892000;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("fonts/font_0007_0f730bd10c2b.woff")format("woff");}.ff8{font-family:ff8;line-height:0.926000;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("fonts/font_0008_0d67dc2af1ef.woff")format("woff");}.ff9{font-family:ff9;line-height:0.940000;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("fonts/font_0009_d6848d5b6e9b.woff")format("woff");}.ffa{font-family:ffa;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_e71367c2843e.woff")format("woff");}.ffb{font-family:ffb;line-height:0.951172;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("fonts/font_0011_8a00707f283a.woff")format("woff");}.ffc{font-family:ffc;line-height:0.948730;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("fonts/font_0012_c5cf0d9688e0.woff")format("woff");}.ffd{font-family:ffd;line-height:0.973633;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("fonts/font_0013_2d6c88426bee.woff")format("woff");}.ffe{font-family:ffe;line-height:1.031738;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("fonts/font_0014_e0fd40a61fda.woff")format("woff");}.fff{font-family:fff;line-height:0.976600;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("fonts/font_0015_a2efa711916e.woff")format("woff");}.ff10{font-family:ff10;line-height:0.973633;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("fonts/font_0016_d7c2922d67a6.woff")format("woff");}.ff11{font-family:ff11;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.620000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.634110px;}
.ls19{letter-spacing:-1.782981px;}
.ls1c{letter-spacing:-0.237975px;}
.ls18{letter-spacing:-0.230385px;}
.ls1d{letter-spacing:-0.014645px;}
.ls15{letter-spacing:-0.013552px;}
.ls1f{letter-spacing:-0.010983px;}
.ls17{letter-spacing:-0.010164px;}
.ls21{letter-spacing:-0.007322px;}
.ls14{letter-spacing:-0.006776px;}
.ls1b{letter-spacing:-0.003661px;}
.ls16{letter-spacing:-0.003388px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.006776px;}
.ls11{letter-spacing:0.007322px;}
.lse{letter-spacing:0.007879px;}
.ls10{letter-spacing:0.010164px;}
.ls1e{letter-spacing:0.010983px;}
.ls13{letter-spacing:0.013552px;}
.ls1a{letter-spacing:0.014645px;}
.ls20{letter-spacing:0.018306px;}
.ls24{letter-spacing:0.840017px;}
.ls6{letter-spacing:2.448017px;}
.ls2{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.984725px;}
.ls3{letter-spacing:2.986766px;}
.ls5{letter-spacing:2.987675px;}
.lsb{letter-spacing:2.988017px;}
.ls7{letter-spacing:2.988780px;}
.ls23{letter-spacing:2.989834px;}
.ls12{letter-spacing:2.992766px;}
.ls8{letter-spacing:2.993108px;}
.lsd{letter-spacing:13.884017px;}
.ls22{letter-spacing:17.895527px;}
.lsc{letter-spacing:20.924100px;}
.ls1{letter-spacing:29.887409px;}
.ls9{letter-spacing:47.651700px;}
.lsa{letter-spacing:47.933700px;}
.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;}
}
.ws92{word-spacing:-14.943900px;}
.ws89{word-spacing:-14.920027px;}
.ws23{word-spacing:-11.955150px;}
.wsfd{word-spacing:-10.959032px;}
.wsfc{word-spacing:-10.951154px;}
.ws10e{word-spacing:-9.116268px;}
.ws107{word-spacing:-9.094302px;}
.ws109{word-spacing:-9.079657px;}
.ws108{word-spacing:-9.075996px;}
.ws10c{word-spacing:-9.072335px;}
.ws10b{word-spacing:-9.068674px;}
.ws103{word-spacing:-8.412454px;}
.ws100{word-spacing:-8.402290px;}
.wsfe{word-spacing:-8.395514px;}
.ws101{word-spacing:-8.392126px;}
.ws102{word-spacing:-8.300649px;}
.ws10d{word-spacing:-7.296676px;}
.ws58{word-spacing:-7.251130px;}
.wsa9{word-spacing:-1.135736px;}
.wse6{word-spacing:-1.075961px;}
.wse5{word-spacing:-1.016185px;}
.wscb{word-spacing:-0.966176px;}
.wscc{word-spacing:-0.956410px;}
.wsf5{word-spacing:-0.777083px;}
.ws41{word-spacing:-0.717307px;}
.ws7c{word-spacing:-0.597756px;}
.ws152{word-spacing:-0.537980px;}
.ws127{word-spacing:-0.478205px;}
.ws11e{word-spacing:-0.418429px;}
.ws131{word-spacing:-0.179327px;}
.wsec{word-spacing:-0.119551px;}
.ws3{word-spacing:-0.053798px;}
.ws59{word-spacing:-0.026083px;}
.ws21{word-spacing:-0.023870px;}
.ws25{word-spacing:-0.008078px;}
.ws116{word-spacing:-0.006456px;}
.ws5c{word-spacing:-0.002628px;}
.ws0{word-spacing:0.000000px;}
.ws88{word-spacing:0.001658px;}
.ws26{word-spacing:0.007658px;}
.wsfb{word-spacing:0.059776px;}
.ws1e{word-spacing:0.119551px;}
.ws4e{word-spacing:0.358654px;}
.wsde{word-spacing:0.478205px;}
.ws183{word-spacing:0.478206px;}
.wscd{word-spacing:0.537980px;}
.ws17e{word-spacing:0.669488px;}
.ws84{word-spacing:0.717307px;}
.ws15c{word-spacing:0.812950px;}
.ws17a{word-spacing:0.848481px;}
.ws17b{word-spacing:0.860771px;}
.wsac{word-spacing:0.896634px;}
.ws8c{word-spacing:0.956410px;}
.ws8b{word-spacing:1.016185px;}
.ws4b{word-spacing:1.075961px;}
.ws75{word-spacing:1.195512px;}
.ws77{word-spacing:1.255288px;}
.ws130{word-spacing:1.315063px;}
.ws12f{word-spacing:1.334600px;}
.ws167{word-spacing:1.482439px;}
.ws37{word-spacing:1.494390px;}
.ws148{word-spacing:1.554166px;}
.wsf2{word-spacing:1.673717px;}
.wsa8{word-spacing:1.793268px;}
.ws6f{word-spacing:1.972595px;}
.wsb9{word-spacing:2.032370px;}
.wsfa{word-spacing:2.151922px;}
.ws15d{word-spacing:2.151927px;}
.ws5b{word-spacing:2.211697px;}
.ws43{word-spacing:2.331248px;}
.ws98{word-spacing:2.391024px;}
.ws115{word-spacing:2.450800px;}
.ws168{word-spacing:2.677954px;}
.ws27{word-spacing:2.689902px;}
.ws169{word-spacing:2.725774px;}
.ws147{word-spacing:2.749678px;}
.wsaf{word-spacing:2.869229px;}
.ws11c{word-spacing:2.929004px;}
.ws16a{word-spacing:2.964877px;}
.ws5d{word-spacing:2.988103px;}
.ws24{word-spacing:2.988780px;}
.ws113{word-spacing:3.048556px;}
.wsab{word-spacing:3.168107px;}
.wsee{word-spacing:3.227882px;}
.wsaa{word-spacing:3.287658px;}
.wsda{word-spacing:3.347434px;}
.ws4a{word-spacing:3.407209px;}
.ws178{word-spacing:3.443083px;}
.ws144{word-spacing:3.466985px;}
.wsd1{word-spacing:3.526760px;}
.ws40{word-spacing:3.586536px;}
.ws97{word-spacing:3.646312px;}
.ws9d{word-spacing:3.706087px;}
.ws2b{word-spacing:3.765863px;}
.ws123{word-spacing:3.825638px;}
.wse{word-spacing:3.873485px;}
.wse3{word-spacing:3.885414px;}
.ws33{word-spacing:3.945190px;}
.ws64{word-spacing:4.004965px;}
.wsba{word-spacing:4.050940px;}
.wsbb{word-spacing:4.064741px;}
.ws9b{word-spacing:4.124516px;}
.ws104{word-spacing:4.184292px;}
.ws2a{word-spacing:4.244068px;}
.ws2d{word-spacing:4.303843px;}
.ws49{word-spacing:4.363619px;}
.ws55{word-spacing:4.423394px;}
.ws143{word-spacing:4.483170px;}
.wsd2{word-spacing:4.602721px;}
.ws6c{word-spacing:4.662497px;}
.ws1b{word-spacing:4.782048px;}
.ws15f{word-spacing:4.782060px;}
.ws180{word-spacing:4.786423px;}
.ws133{word-spacing:4.841824px;}
.ws177{word-spacing:4.925522px;}
.ws13a{word-spacing:4.961375px;}
.ws42{word-spacing:5.021150px;}
.ws93{word-spacing:5.080926px;}
.wsb3{word-spacing:5.260253px;}
.ws99{word-spacing:5.379804px;}
.ws129{word-spacing:5.439580px;}
.wse7{word-spacing:5.499355px;}
.ws17{word-spacing:5.541235px;}
.wsb0{word-spacing:5.559131px;}
.ws4f{word-spacing:5.678682px;}
.ws110{word-spacing:5.738458px;}
.ws155{word-spacing:5.786293px;}
.ws118{word-spacing:5.798233px;}
.ws139{word-spacing:5.858009px;}
.ws151{word-spacing:5.917784px;}
.ws22{word-spacing:5.927285px;}
.wsa0{word-spacing:5.928308px;}
.ws87{word-spacing:5.929754px;}
.wsa1{word-spacing:5.939075px;}
.wsbc{word-spacing:5.973608px;}
.ws1c{word-spacing:5.973852px;}
.ws1a{word-spacing:5.976092px;}
.wsd0{word-spacing:5.976850px;}
.ws18{word-spacing:5.977560px;}
.ws158{word-spacing:5.977575px;}
.ws1d{word-spacing:5.978134px;}
.wscf{word-spacing:5.979266px;}
.ws8d{word-spacing:6.037336px;}
.ws132{word-spacing:6.097111px;}
.ws142{word-spacing:6.216662px;}
.wsdb{word-spacing:6.243887px;}
.ws173{word-spacing:6.264499px;}
.ws28{word-spacing:6.276438px;}
.ws181{word-spacing:6.407960px;}
.ws105{word-spacing:6.455765px;}
.ws14{word-spacing:6.509606px;}
.ws14b{word-spacing:6.515540px;}
.ws38{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws52{word-spacing:6.694867px;}
.ws15{word-spacing:6.724800px;}
.ws111{word-spacing:6.754643px;}
.ws126{word-spacing:6.814418px;}
.ws172{word-spacing:6.838346px;}
.ws8e{word-spacing:6.933970px;}
.ws6d{word-spacing:7.053521px;}
.ws96{word-spacing:7.113296px;}
.ws154{word-spacing:7.129619px;}
.ws3e{word-spacing:7.173072px;}
.ws86{word-spacing:7.292623px;}
.ws16c{word-spacing:7.316552px;}
.ws10f{word-spacing:7.352399px;}
.ws187{word-spacing:7.412193px;}
.ws17f{word-spacing:7.460014px;}
.ws6b{word-spacing:7.471950px;}
.ws13c{word-spacing:7.531726px;}
.ws7{word-spacing:7.585574px;}
.ws85{word-spacing:7.591501px;}
.ws95{word-spacing:7.651277px;}
.ws9{word-spacing:7.693171px;}
.ws134{word-spacing:7.711052px;}
.wsd4{word-spacing:7.770828px;}
.wsd3{word-spacing:7.785521px;}
.ws2f{word-spacing:7.890379px;}
.ws54{word-spacing:7.950155px;}
.wsc8{word-spacing:7.982323px;}
.wsca{word-spacing:7.982591px;}
.wsc9{word-spacing:7.988134px;}
.ws63{word-spacing:8.009930px;}
.ws175{word-spacing:8.033861px;}
.ws122{word-spacing:8.129482px;}
.ws11a{word-spacing:8.249033px;}
.ws51{word-spacing:8.308808px;}
.ws11d{word-spacing:8.368584px;}
.ws79{word-spacing:8.488135px;}
.ws16d{word-spacing:8.512067px;}
.wsa7{word-spacing:8.547911px;}
.wsad{word-spacing:8.607686px;}
.ws112{word-spacing:8.667462px;}
.ws157{word-spacing:8.751170px;}
.wsd6{word-spacing:8.770178px;}
.wsd5{word-spacing:8.787013px;}
.ws15e{word-spacing:8.798990px;}
.ws44{word-spacing:8.846789px;}
.wsd7{word-spacing:8.861395px;}
.ws65{word-spacing:8.906564px;}
.ws186{word-spacing:8.942452px;}
.wsc7{word-spacing:8.957095px;}
.wsc5{word-spacing:8.961690px;}
.wsc6{word-spacing:8.966340px;}
.ws82{word-spacing:9.085891px;}
.ws179{word-spacing:9.133735px;}
.ws150{word-spacing:9.145667px;}
.ws2c{word-spacing:9.205442px;}
.ws174{word-spacing:9.229376px;}
.ws5a{word-spacing:9.265218px;}
.ws14f{word-spacing:9.324994px;}
.ws15a{word-spacing:9.372838px;}
.wsf0{word-spacing:9.504320px;}
.ws78{word-spacing:9.683647px;}
.ws7b{word-spacing:9.743423px;}
.wse8{word-spacing:9.803198px;}
.ws4d{word-spacing:9.862974px;}
.wsb4{word-spacing:9.922750px;}
.ws162{word-spacing:9.946685px;}
.ws76{word-spacing:10.042301px;}
.ws149{word-spacing:10.110791px;}
.ws137{word-spacing:10.135560px;}
.ws136{word-spacing:10.140331px;}
.ws138{word-spacing:10.148134px;}
.ws3c{word-spacing:10.161852px;}
.ws94{word-spacing:10.221628px;}
.ws16e{word-spacing:10.233608px;}
.ws4c{word-spacing:10.341179px;}
.ws8a{word-spacing:10.460730px;}
.wsa3{word-spacing:10.520506px;}
.wsea{word-spacing:10.574603px;}
.wseb{word-spacing:10.580281px;}
.ws171{word-spacing:10.663994px;}
.ws176{word-spacing:10.711814px;}
.ws45{word-spacing:10.759608px;}
.ws35{word-spacing:10.819384px;}
.ws11{word-spacing:10.867277px;}
.ws17d{word-spacing:10.950917px;}
.wsbe{word-spacing:10.998710px;}
.ws17c{word-spacing:10.998738px;}
.ws145{word-spacing:11.297588px;}
.ws165{word-spacing:11.333482px;}
.ws34{word-spacing:11.357364px;}
.ws62{word-spacing:11.417140px;}
.ws12{word-spacing:11.459059px;}
.wsdd{word-spacing:11.536691px;}
.ws32{word-spacing:11.596466px;}
.ws119{word-spacing:11.656242px;}
.ws161{word-spacing:11.668226px;}
.wsb2{word-spacing:11.716018px;}
.ws7a{word-spacing:11.775793px;}
.wsdc{word-spacing:11.895344px;}
.ws67{word-spacing:11.955120px;}
.wse4{word-spacing:12.014896px;}
.ws74{word-spacing:12.074671px;}
.ws166{word-spacing:12.098612px;}
.ws13b{word-spacing:12.134447px;}
.ws164{word-spacing:12.146432px;}
.ws8f{word-spacing:12.253998px;}
.wsae{word-spacing:12.313774px;}
.wsf8{word-spacing:12.433325px;}
.ws9c{word-spacing:12.493100px;}
.ws11f{word-spacing:12.552876px;}
.wsa6{word-spacing:12.672427px;}
.ws156{word-spacing:12.672459px;}
.wsf4{word-spacing:12.687119px;}
.ws6e{word-spacing:12.732203px;}
.ws57{word-spacing:12.791978px;}
.wsdf{word-spacing:12.971305px;}
.wsd9{word-spacing:13.031081px;}
.ws185{word-spacing:13.055024px;}
.wsa{word-spacing:13.073011px;}
.ws141{word-spacing:13.090856px;}
.ws53{word-spacing:13.150632px;}
.ws14d{word-spacing:13.206235px;}
.ws14e{word-spacing:13.210408px;}
.ws36{word-spacing:13.270183px;}
.ws182{word-spacing:13.294127px;}
.ws90{word-spacing:13.329959px;}
.ws15b{word-spacing:13.341947px;}
.ws72{word-spacing:13.449510px;}
.wsb{word-spacing:13.503398px;}
.ws30{word-spacing:13.509286px;}
.wsf3{word-spacing:13.569061px;}
.wsb1{word-spacing:13.628837px;}
.ws12d{word-spacing:13.688612px;}
.ws16b{word-spacing:13.724512px;}
.ws3d{word-spacing:13.748388px;}
.ws170{word-spacing:13.772333px;}
.wsed{word-spacing:13.927715px;}
.ws60{word-spacing:13.987490px;}
.ws160{word-spacing:14.011436px;}
.ws31{word-spacing:14.047266px;}
.wsc{word-spacing:14.095181px;}
.ws39{word-spacing:14.166817px;}
.ws7d{word-spacing:14.286368px;}
.ws66{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws146{word-spacing:14.405920px;}
.ws6a{word-spacing:14.465695px;}
.ws6{word-spacing:14.471770px;}
.wsce{word-spacing:14.524096px;}
.wsd8{word-spacing:14.525471px;}
.ws13{word-spacing:14.579366px;}
.ws9e{word-spacing:14.585246px;}
.ws10{word-spacing:14.740762px;}
.ws159{word-spacing:15.015668px;}
.wsf1{word-spacing:15.183002px;}
.wsd{word-spacing:15.224947px;}
.wsa2{word-spacing:15.302554px;}
.ws13f{word-spacing:15.362329px;}
.ws135{word-spacing:15.422105px;}
.wsf{word-spacing:15.440141px;}
.ws125{word-spacing:15.481880px;}
.ws4{word-spacing:15.601536px;}
.ws153{word-spacing:15.720983px;}
.ws5e{word-spacing:15.780758px;}
.wse9{word-spacing:15.840534px;}
.wsa5{word-spacing:15.900310px;}
.wse1{word-spacing:16.019861px;}
.wse0{word-spacing:16.026066px;}
.ws73{word-spacing:16.079636px;}
.ws61{word-spacing:16.139412px;}
.ws3a{word-spacing:16.199188px;}
.ws117{word-spacing:16.258963px;}
.ws163{word-spacing:16.306825px;}
.ws1f{word-spacing:16.318739px;}
.ws69{word-spacing:16.378514px;}
.ws29{word-spacing:16.438290px;}
.ws47{word-spacing:16.557841px;}
.wsb8{word-spacing:16.677392px;}
.wsb7{word-spacing:16.706159px;}
.ws120{word-spacing:16.737168px;}
.ws13e{word-spacing:16.796944px;}
.ws14c{word-spacing:16.976270px;}
.ws7e{word-spacing:17.095822px;}
.ws3f{word-spacing:17.155597px;}
.ws80{word-spacing:17.215373px;}
.ws91{word-spacing:17.275148px;}
.wsc3{word-spacing:17.343001px;}
.wsc2{word-spacing:17.366591px;}
.wsbf{word-spacing:17.369083px;}
.wsc4{word-spacing:17.369095px;}
.wsc1{word-spacing:17.372134px;}
.wsc0{word-spacing:17.394700px;}
.ws9f{word-spacing:17.514251px;}
.wsbd{word-spacing:17.633802px;}
.wsf7{word-spacing:17.693578px;}
.wsf6{word-spacing:17.695306px;}
.ws3b{word-spacing:17.813129px;}
.ws20{word-spacing:17.932680px;}
.ws46{word-spacing:17.992456px;}
.wse2{word-spacing:18.052231px;}
.wsb6{word-spacing:18.112007px;}
.ws140{word-spacing:18.291334px;}
.ws184{word-spacing:18.458752px;}
.wsb5{word-spacing:18.470660px;}
.ws124{word-spacing:18.530436px;}
.ws114{word-spacing:18.590212px;}
.ws16f{word-spacing:18.602213px;}
.ws16{word-spacing:18.937037px;}
.ws68{word-spacing:19.008641px;}
.ws71{word-spacing:19.546621px;}
.ws128{word-spacing:19.606397px;}
.ws121{word-spacing:19.666172px;}
.ws19{word-spacing:20.084602px;}
.wsef{word-spacing:20.263928px;}
.ws13d{word-spacing:20.323704px;}
.ws50{word-spacing:20.383480px;}
.ws7f{word-spacing:20.503031px;}
.ws11b{word-spacing:20.622582px;}
.ws5f{word-spacing:20.742133px;}
.ws56{word-spacing:21.280114px;}
.ws9a{word-spacing:21.399665px;}
.ws12e{word-spacing:21.459440px;}
.ws5{word-spacing:22.057344px;}
.ws14a{word-spacing:22.176748px;}
.wsf9{word-spacing:22.236523px;}
.ws48{word-spacing:22.415850px;}
.ws2e{word-spacing:23.133157px;}
.ws8{word-spacing:23.187110px;}
.wsa4{word-spacing:23.312484px;}
.ws81{word-spacing:23.730913px;}
.ws83{word-spacing:24.448220px;}
.ws70{word-spacing:26.659918px;}
.ws12c{word-spacing:28.154308px;}
.ws12b{word-spacing:51.347240px;}
.ws12a{word-spacing:60.433132px;}
.ws10a{word-spacing:234.657323px;}
.wsff{word-spacing:340.977651px;}
.ws106{word-spacing:390.915816px;}
._0{margin-left:-1447.886400px;}
._1{margin-left:-8.482189px;}
._1a{margin-left:-6.588151px;}
._4{margin-left:-5.216678px;}
._3{margin-left:-3.927283px;}
._a{margin-left:-2.864755px;}
._2{margin-left:-1.722432px;}
._8{width:1.148960px;}
._7{width:2.988780px;}
._18{width:13.748388px;}
._12{width:14.953248px;}
._16{width:17.574026px;}
._19{width:18.769538px;}
._e{width:20.144377px;}
._9{width:21.988046px;}
._11{width:23.501185px;}
._10{width:24.507996px;}
._f{width:26.719693px;}
._5{width:27.867571px;}
._6{width:29.051136px;}
._13{width:30.246454px;}
._d{width:33.370986px;}
._b{width:35.511847px;}
._c{width:37.658628px;}
._1b{width:47.821013px;}
._17{width:65.682162px;}
._14{width:268.062319px;}
._15{width:330.470499px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fsa{font-size:26.083200px;}
.fs1{font-size:30.378000px;}
.fsc{font-size:33.880200px;}
.fsd{font-size:36.611520px;}
.fsb{font-size:39.392640px;}
.fs4{font-size:41.842800px;}
.fs9{font-size:47.820600px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fse{font-size:64.070160px;}
.fs6{font-size:65.753400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:143.461800px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:2.331062px;}
.y6e{bottom:6.334833px;}
.y7e{bottom:10.338604px;}
.y169{bottom:10.439058px;}
.y180{bottom:16.158890px;}
.y19b{bottom:17.766072px;}
.y6d{bottom:20.815215px;}
.y7d{bottom:20.815222px;}
.y85{bottom:24.818992px;}
.y6c{bottom:28.822757px;}
.y7c{bottom:28.822763px;}
.y16b{bottom:33.779189px;}
.y182{bottom:41.596907px;}
.y6b{bottom:43.303145px;}
.y1a9{bottom:49.473936px;}
.y82{bottom:50.696813px;}
.y163{bottom:51.374568px;}
.y197{bottom:51.776526px;}
.y78{bottom:52.238285px;}
.y1a1{bottom:54.680403px;}
.y1a8{bottom:59.770926px;}
.y77{bottom:60.245827px;}
.y173{bottom:61.093056px;}
.y6a{bottom:61.787305px;}
.y162{bottom:62.864088px;}
.y1a0{bottom:64.977393px;}
.y172{bottom:65.751584px;}
.y20d{bottom:69.174000px;}
.y42{bottom:69.175500px;}
.y84{bottom:69.180992px;}
.y1a7{bottom:70.067916px;}
.y17d{bottom:70.410111px;}
.y7b{bottom:70.722445px;}
.y19a{bottom:75.000701px;}
.y19f{bottom:75.274383px;}
.y7a{bottom:78.729987px;}
.y16a{bottom:80.229677px;}
.y1a6{bottom:80.364906px;}
.y252{bottom:82.626000px;}
.y19e{bottom:85.571373px;}
.y181{bottom:86.099752px;}
.y41{bottom:87.108000px;}
.y83{bottom:87.665113px;}
.y1a5{bottom:90.661896px;}
.y17f{bottom:90.866951px;}
.y79{bottom:93.210401px;}
.y19d{bottom:95.868363px;}
.y251{bottom:96.075000px;}
.y199{bottom:98.224875px;}
.y8b{bottom:98.448691px;}
.y1a4{bottom:100.958886px;}
.y161{bottom:101.436048px;}
.y179{bottom:101.951366px;}
.y17c{bottom:103.020456px;}
.yc3{bottom:103.471500px;}
.y40{bottom:105.040500px;}
.y15e{bottom:105.403500px;}
.y81{bottom:106.149299px;}
.y19c{bottom:106.165353px;}
.y8a{bottom:106.456233px;}
.y5{bottom:108.365372px;}
.y250{bottom:109.524000px;}
.y1a3{bottom:111.255876px;}
.y178{bottom:111.268421px;}
.y1bb{bottom:111.268500px;}
.y76{bottom:111.694522px;}
.y167{bottom:115.190645px;}
.y171{bottom:116.350451px;}
.y4{bottom:117.479531px;}
.y89{bottom:118.781263px;}
.yc2{bottom:121.404000px;}
.y198{bottom:121.448993px;}
.y1a2{bottom:122.303872px;}
.y3f{bottom:122.973000px;}
.y24f{bottom:122.974500px;}
.y15d{bottom:123.336000px;}
.yf6{bottom:123.433500px;}
.y80{bottom:124.633419px;}
.y17a{bottom:125.244004px;}
.y75{bottom:126.174937px;}
.y3{bottom:126.593691px;}
.y88{bottom:126.788804px;}
.y168{bottom:127.599326px;}
.y74{bottom:134.182479px;}
.y2{bottom:135.707850px;}
.y63{bottom:135.742500px;}
.y1aa{bottom:136.000470px;}
.y24e{bottom:136.423500px;}
.y87{bottom:139.113834px;}
.yc1{bottom:139.336500px;}
.y185{bottom:140.247173px;}
.y3e{bottom:140.905500px;}
.y128{bottom:140.907000px;}
.y15c{bottom:141.268500px;}
.yf5{bottom:141.367500px;}
.y184{bottom:141.833952px;}
.y66{bottom:143.117605px;}
.y73{bottom:144.659057px;}
.y160{bottom:145.752768px;}
.y6{bottom:146.054700px;}
.y1c4{bottom:146.344500px;}
.y86{bottom:147.121376px;}
.y24d{bottom:149.872500px;}
.y1ba{bottom:151.528500px;}
.y72{bottom:152.666599px;}
.y196{bottom:155.459493px;}
.yc0{bottom:157.270500px;}
.y3d{bottom:158.839500px;}
.y15b{bottom:159.201000px;}
.yf4{bottom:159.300000px;}
.y69{bottom:161.601725px;}
.y20c{bottom:162.028500px;}
.y8c{bottom:162.423956px;}
.y24c{bottom:163.323000px;}
.y1c3{bottom:164.277000px;}
.y71{bottom:167.147014px;}
.y177{bottom:167.257908px;}
.y183{bottom:167.317452px;}
.y1b9{bottom:169.461000px;}
.y195{bottom:173.661482px;}
.y191{bottom:173.661825px;}
.y193{bottom:173.661940px;}
.y18f{bottom:173.860901px;}
.ybf{bottom:175.203000px;}
.y166{bottom:175.297248px;}
.y176{bottom:176.574963px;}
.y3c{bottom:176.772000px;}
.y15a{bottom:177.135000px;}
.yf3{bottom:177.232500px;}
.y1ac{bottom:178.149711px;}
.y20b{bottom:179.961000px;}
.y245{bottom:180.429000px;}
.y17e{bottom:180.855726px;}
.y70{bottom:181.627364px;}
.y1c2{bottom:182.209500px;}
.y194{bottom:183.958472px;}
.y190{bottom:183.958815px;}
.y192{bottom:183.958930px;}
.y18e{bottom:184.157891px;}
.y68{bottom:185.631134px;}
.y1b8{bottom:187.393500px;}
.y6f{bottom:189.634905px;}
.y24b{bottom:190.221000px;}
.ybe{bottom:193.135500px;}
.y17b{bottom:193.623056px;}
.y244{bottom:193.879500px;}
.y3b{bottom:194.704500px;}
.y127{bottom:194.839500px;}
.y159{bottom:195.067500px;}
.yf2{bottom:195.165000px;}
.y20a{bottom:197.989500px;}
.y1ed{bottom:198.736500px;}
.y165{bottom:199.096968px;}
.y1c1{bottom:200.142000px;}
.y24a{bottom:203.671500px;}
.y67{bottom:204.115320px;}
.y1b7{bottom:205.327500px;}
.y170{bottom:205.676276px;}
.y243{bottom:207.328500px;}
.y164{bottom:210.586488px;}
.ybd{bottom:211.068000px;}
.y175{bottom:211.518070px;}
.y3a{bottom:212.637000px;}
.y126{bottom:212.773500px;}
.yf1{bottom:213.097500px;}
.y158{bottom:213.363000px;}
.y16f{bottom:214.993331px;}
.y209{bottom:215.922000px;}
.y1ec{bottom:216.669000px;}
.y249{bottom:217.120500px;}
.y1c0{bottom:218.074500px;}
.y18d{bottom:219.833872px;}
.y174{bottom:220.835125px;}
.y65{bottom:223.216765px;}
.y1b6{bottom:223.260000px;}
.ybc{bottom:229.000500px;}
.y39{bottom:230.569500px;}
.y248{bottom:230.571000px;}
.y125{bottom:230.706000px;}
.yf0{bottom:231.031500px;}
.y64{bottom:231.230874px;}
.y157{bottom:231.295500px;}
.y208{bottom:233.856000px;}
.y16c{bottom:234.386208px;}
.y1eb{bottom:234.601500px;}
.y1bf{bottom:236.008500px;}
.y16e{bottom:239.417228px;}
.y1b5{bottom:241.192500px;}
.y236{bottom:243.571500px;}
.y247{bottom:244.020000px;}
.y1ab{bottom:244.645842px;}
.ybb{bottom:246.934500px;}
.y38{bottom:248.442000px;}
.y124{bottom:248.773500px;}
.yef{bottom:248.964000px;}
.y156{bottom:249.228000px;}
.y207{bottom:251.788500px;}
.y1ea{bottom:252.534000px;}
.y1be{bottom:253.941000px;}
.y246{bottom:257.469000px;}
.y1b4{bottom:259.125000px;}
.y235{bottom:261.504000px;}
.yba{bottom:264.867000px;}
.y37{bottom:266.374500px;}
.y123{bottom:266.706000px;}
.yee{bottom:266.896500px;}
.y155{bottom:267.523500px;}
.y206{bottom:269.721000px;}
.y1bd{bottom:271.873500px;}
.y1e9{bottom:276.903000px;}
.y1b3{bottom:277.311000px;}
.y234{bottom:279.436500px;}
.yb9{bottom:282.799500px;}
.y36{bottom:284.307000px;}
.y122{bottom:284.640000px;}
.y154{bottom:285.457500px;}
.y205{bottom:287.653500px;}
.y1bc{bottom:289.806000px;}
.yed{bottom:292.299000px;}
.y1b2{bottom:295.243500px;}
.y233{bottom:297.370500px;}
.yb8{bottom:300.732000px;}
.y35{bottom:302.239500px;}
.y121{bottom:302.572500px;}
.y153{bottom:303.390000px;}
.y204{bottom:305.586000px;}
.y8{bottom:305.634300px;}
.y1b1{bottom:313.176000px;}
.yb7{bottom:318.664500px;}
.y232{bottom:320.010000px;}
.y7{bottom:320.034300px;}
.y34{bottom:320.112000px;}
.y120{bottom:320.505000px;}
.y152{bottom:321.322500px;}
.y1e8{bottom:322.572000px;}
.y203{bottom:323.518500px;}
.yec{bottom:334.320000px;}
.yb6{bottom:336.597000px;}
.y33{bottom:338.044500px;}
.y11f{bottom:338.437500px;}
.y151{bottom:339.255000px;}
.y1e7{bottom:340.504500px;}
.y202{bottom:341.452500px;}
.yeb{bottom:352.252500px;}
.yb5{bottom:354.531000px;}
.y32{bottom:355.977000px;}
.y11e{bottom:356.506500px;}
.y150{bottom:357.187500px;}
.y231{bottom:358.117500px;}
.y201{bottom:359.385000px;}
.y1b0{bottom:364.285500px;}
.y1e6{bottom:366.109500px;}
.yb4{bottom:372.463500px;}
.y31{bottom:373.909500px;}
.yea{bottom:374.146500px;}
.y11d{bottom:374.439000px;}
.y14f{bottom:375.120000px;}
.y230{bottom:376.050000px;}
.y200{bottom:377.317500px;}
.y1af{bottom:382.218000px;}
.yb3{bottom:390.396000px;}
.y30{bottom:391.843500px;}
.y62{bottom:391.965000px;}
.ye9{bottom:392.079000px;}
.y11c{bottom:392.371500px;}
.y14e{bottom:393.054000px;}
.y22f{bottom:393.982500px;}
.y1ae{bottom:400.150500px;}
.y1ff{bottom:400.291500px;}
.yb2{bottom:408.328500px;}
.y1e5{bottom:408.415500px;}
.y2f{bottom:409.776000px;}
.y61{bottom:409.897500px;}
.ye8{bottom:410.013000px;}
.y11b{bottom:410.304000px;}
.y14d{bottom:410.986500px;}
.y22e{bottom:411.915000px;}
.y1ad{bottom:418.083000px;}
.yb1{bottom:426.261000px;}
.y1e4{bottom:426.348000px;}
.y2e{bottom:427.708500px;}
.y60{bottom:427.830000px;}
.ye7{bottom:427.945500px;}
.y11a{bottom:428.236500px;}
.y14c{bottom:428.919000px;}
.y22d{bottom:429.847500px;}
.y18c{bottom:439.602000px;}
.y1fe{bottom:442.572000px;}
.yb0{bottom:444.193500px;}
.y1e3{bottom:444.280500px;}
.y2d{bottom:445.641000px;}
.y5f{bottom:445.762500px;}
.ye6{bottom:445.878000px;}
.y119{bottom:446.170500px;}
.y14b{bottom:446.851500px;}
.y22c{bottom:447.780000px;}
.y1fd{bottom:460.504500px;}
.yaf{bottom:462.127500px;}
.y1e2{bottom:462.213000px;}
.y5e{bottom:463.695000px;}
.ye5{bottom:463.810500px;}
.y118{bottom:464.103000px;}
.y14a{bottom:464.784000px;}
.y22b{bottom:465.714000px;}
.y2c{bottom:468.220500px;}
.y1fc{bottom:478.438500px;}
.yae{bottom:480.060000px;}
.y1e1{bottom:480.147000px;}
.y5d{bottom:481.627500px;}
.ye4{bottom:481.743000px;}
.y117{bottom:482.035500px;}
.y149{bottom:483.079500px;}
.y22a{bottom:483.646500px;}
.y2b{bottom:486.153000px;}
.y27e{bottom:490.819500px;}
.y1fb{bottom:496.371000px;}
.yad{bottom:497.992500px;}
.y1e0{bottom:498.079500px;}
.y5c{bottom:499.561500px;}
.ye3{bottom:499.677000px;}
.y116{bottom:499.968000px;}
.y148{bottom:501.013500px;}
.y229{bottom:501.579000px;}
.y27d{bottom:504.270000px;}
.y1fa{bottom:514.303500px;}
.yac{bottom:515.925000px;}
.y1df{bottom:516.012000px;}
.y5b{bottom:517.494000px;}
.ye2{bottom:517.609500px;}
.y27c{bottom:517.719000px;}
.y115{bottom:518.037000px;}
.y147{bottom:518.946000px;}
.y228{bottom:519.511500px;}
.y2a{bottom:523.284000px;}
.y27b{bottom:531.168000px;}
.y1f9{bottom:532.236000px;}
.yab{bottom:533.857500px;}
.y1de{bottom:533.944500px;}
.y5a{bottom:535.426500px;}
.y114{bottom:535.969500px;}
.ye1{bottom:536.695500px;}
.y146{bottom:536.878500px;}
.y227{bottom:537.444000px;}
.y29{bottom:541.216500px;}
.y27a{bottom:544.618500px;}
.y1f8{bottom:550.168500px;}
.yaa{bottom:551.790000px;}
.y1dd{bottom:552.372000px;}
.y59{bottom:553.359000px;}
.ye0{bottom:553.474500px;}
.y113{bottom:553.902000px;}
.y145{bottom:554.811000px;}
.y226{bottom:555.376500px;}
.y279{bottom:558.067500px;}
.y28{bottom:559.149000px;}
.y1f7{bottom:568.101000px;}
.ya9{bottom:569.724000px;}
.y1dc{bottom:570.304500px;}
.y58{bottom:571.291500px;}
.ydf{bottom:571.407000px;}
.y278{bottom:571.516500px;}
.y112{bottom:571.834500px;}
.y144{bottom:573.106500px;}
.y27{bottom:577.081500px;}
.y225{bottom:578.017500px;}
.y277{bottom:584.967000px;}
.y1f6{bottom:586.035000px;}
.ya8{bottom:587.656500px;}
.y1db{bottom:588.237000px;}
.y57{bottom:589.225500px;}
.yde{bottom:589.339500px;}
.y111{bottom:589.767000px;}
.y143{bottom:591.039000px;}
.y26{bottom:595.014000px;}
.y276{bottom:598.416000px;}
.y1f5{bottom:603.967500px;}
.ya7{bottom:605.589000px;}
.y1da{bottom:606.169500px;}
.y56{bottom:607.158000px;}
.ydd{bottom:607.273500px;}
.y110{bottom:607.836000px;}
.y142{bottom:609.334500px;}
.y275{bottom:611.866500px;}
.y25{bottom:612.946500px;}
.y224{bottom:616.125000px;}
.y1f4{bottom:621.900000px;}
.ya6{bottom:623.521500px;}
.y1d9{bottom:624.102000px;}
.y55{bottom:625.090500px;}
.y274{bottom:625.315500px;}
.y10f{bottom:625.768500px;}
.ydc{bottom:626.443500px;}
.y141{bottom:627.268500px;}
.y24{bottom:630.880500px;}
.y223{bottom:634.057500px;}
.y273{bottom:638.764500px;}
.y1f3{bottom:639.832500px;}
.ya5{bottom:641.454000px;}
.y1d8{bottom:642.036000px;}
.y54{bottom:643.023000px;}
.ydb{bottom:643.138500px;}
.y10e{bottom:643.701000px;}
.y140{bottom:645.201000px;}
.y23{bottom:651.604500px;}
.y222{bottom:651.990000px;}
.y272{bottom:652.215000px;}
.y1f2{bottom:657.765000px;}
.ya4{bottom:659.388000px;}
.y1d7{bottom:659.968500px;}
.y53{bottom:660.955500px;}
.yda{bottom:661.071000px;}
.y10d{bottom:661.770000px;}
.y13f{bottom:663.133500px;}
.y271{bottom:665.664000px;}
.y221{bottom:669.922500px;}
.y22{bottom:673.630500px;}
.y1f1{bottom:675.697500px;}
.ya3{bottom:677.320500px;}
.y1d6{bottom:678.394500px;}
.y52{bottom:678.888000px;}
.yd9{bottom:679.003500px;}
.y270{bottom:679.113000px;}
.y10c{bottom:679.702500px;}
.y13e{bottom:681.066000px;}
.y220{bottom:687.855000px;}
.y21{bottom:688.575000px;}
.y26f{bottom:692.563500px;}
.ya2{bottom:695.253000px;}
.y1d5{bottom:696.327000px;}
.y1f0{bottom:696.820500px;}
.y51{bottom:696.822000px;}
.yd8{bottom:696.936000px;}
.y10b{bottom:697.635000px;}
.y13d{bottom:699.361500px;}
.y21f{bottom:705.787500px;}
.y26e{bottom:706.012500px;}
.y20{bottom:711.765000px;}
.ya1{bottom:713.185500px;}
.y1d4{bottom:714.261000px;}
.y50{bottom:714.754500px;}
.yd7{bottom:714.868500px;}
.y10a{bottom:715.567500px;}
.y13c{bottom:717.294000px;}
.y26d{bottom:719.463000px;}
.y21e{bottom:723.721500px;}
.y1f{bottom:726.709500px;}
.y18b{bottom:731.038500px;}
.ya0{bottom:731.118000px;}
.y1d3{bottom:732.193500px;}
.y4f{bottom:732.687000px;}
.yd6{bottom:732.802500px;}
.y26c{bottom:732.912000px;}
.y109{bottom:733.500000px;}
.y13b{bottom:735.228000px;}
.y1e{bottom:741.654000px;}
.y21d{bottom:744.642000px;}
.y26b{bottom:746.361000px;}
.y18a{bottom:748.971000px;}
.y9f{bottom:749.050500px;}
.y1d2{bottom:750.126000px;}
.y4e{bottom:750.619500px;}
.yd5{bottom:751.888500px;}
.y13a{bottom:753.160500px;}
.y1d{bottom:756.597000px;}
.y108{bottom:756.615000px;}
.y26a{bottom:759.811500px;}
.y21c{bottom:762.574500px;}
.y189{bottom:766.903500px;}
.y9e{bottom:766.984500px;}
.y1{bottom:767.491050px;}
.y1d1{bottom:768.058500px;}
.y4d{bottom:768.552000px;}
.yd4{bottom:768.667500px;}
.y1c{bottom:771.541500px;}
.y269{bottom:773.260500px;}
.y139{bottom:777.070500px;}
.y21b{bottom:780.508500px;}
.yb{bottom:784.040550px;}
.y188{bottom:784.837500px;}
.y9d{bottom:784.917000px;}
.y1d0{bottom:785.991000px;}
.y4c{bottom:786.484500px;}
.y1b{bottom:786.486000px;}
.yd3{bottom:786.600000px;}
.y268{bottom:786.709500px;}
.y21a{bottom:798.441000px;}
.y107{bottom:799.236000px;}
.y267{bottom:800.160000px;}
.y1a{bottom:801.429000px;}
.y187{bottom:802.770000px;}
.y9c{bottom:802.849500px;}
.y1cf{bottom:803.923500px;}
.y4b{bottom:804.418500px;}
.yd2{bottom:804.532500px;}
.y266{bottom:813.609000px;}
.y19{bottom:816.373500px;}
.y106{bottom:817.170000px;}
.y219{bottom:819.361500px;}
.y186{bottom:820.702500px;}
.y9b{bottom:820.782000px;}
.y138{bottom:821.625000px;}
.y1ce{bottom:821.857500px;}
.y4a{bottom:822.351000px;}
.yd1{bottom:823.620000px;}
.y265{bottom:827.058000px;}
.y18{bottom:831.318000px;}
.y105{bottom:835.102500px;}
.y218{bottom:837.295500px;}
.y9a{bottom:838.714500px;}
.y137{bottom:839.557500px;}
.y1cd{bottom:839.790000px;}
.y49{bottom:840.283500px;}
.y264{bottom:840.508500px;}
.yd0{bottom:844.359000px;}
.y17{bottom:846.261000px;}
.y16d{bottom:847.279500px;}
.y104{bottom:853.035000px;}
.y263{bottom:853.957500px;}
.y217{bottom:855.228000px;}
.y99{bottom:856.647000px;}
.y136{bottom:857.490000px;}
.y1cc{bottom:857.722500px;}
.y48{bottom:858.216000px;}
.y15f{bottom:860.154000px;}
.y16{bottom:861.205500px;}
.ycf{bottom:862.291500px;}
.y262{bottom:867.408000px;}
.y103{bottom:870.967500px;}
.y216{bottom:873.160500px;}
.y98{bottom:874.581000px;}
.y135{bottom:875.422500px;}
.y1cb{bottom:875.655000px;}
.y47{bottom:876.148500px;}
.y15{bottom:876.150000px;}
.yce{bottom:880.225500px;}
.y261{bottom:880.857000px;}
.y102{bottom:888.900000px;}
.y14{bottom:891.093000px;}
.y97{bottom:892.513500px;}
.y134{bottom:893.356500px;}
.y1ca{bottom:893.587500px;}
.y46{bottom:894.081000px;}
.y260{bottom:894.306000px;}
.ycd{bottom:898.158000px;}
.y13{bottom:906.037500px;}
.y101{bottom:906.832500px;}
.y25f{bottom:907.756500px;}
.y215{bottom:909.025500px;}
.y96{bottom:910.446000px;}
.y1c9{bottom:911.521500px;}
.y133{bottom:911.652000px;}
.y45{bottom:912.015000px;}
.ycc{bottom:916.090500px;}
.y12{bottom:920.982000px;}
.y25e{bottom:921.205500px;}
.y100{bottom:924.766500px;}
.y214{bottom:926.959500px;}
.y95{bottom:928.378500px;}
.y132{bottom:929.584500px;}
.y44{bottom:929.947500px;}
.ycb{bottom:934.023000px;}
.y25d{bottom:934.654500px;}
.y11{bottom:935.925000px;}
.yff{bottom:942.699000px;}
.y242{bottom:943.398000px;}
.y213{bottom:944.892000px;}
.y94{bottom:946.311000px;}
.y131{bottom:947.517000px;}
.y43{bottom:947.880000px;}
.y25c{bottom:948.105000px;}
.y10{bottom:950.869500px;}
.yca{bottom:951.955500px;}
.y241{bottom:956.847000px;}
.yfe{bottom:960.631500px;}
.y25b{bottom:961.554000px;}
.y212{bottom:962.824500px;}
.y130{bottom:965.449500px;}
.yf{bottom:965.812500px;}
.y93{bottom:968.952000px;}
.yc9{bottom:969.888000px;}
.y240{bottom:970.296000px;}
.y25a{bottom:975.004500px;}
.yfd{bottom:978.564000px;}
.y211{bottom:980.757000px;}
.y12f{bottom:983.382000px;}
.y1ef{bottom:983.745000px;}
.y1c8{bottom:983.746500px;}
.y92{bottom:986.884500px;}
.y259{bottom:988.453500px;}
.ya{bottom:991.991850px;}
.yc8{bottom:995.292000px;}
.yfc{bottom:996.496500px;}
.y23f{bottom:997.195500px;}
.y210{bottom:998.689500px;}
.y12e{bottom:1001.316000px;}
.y1ee{bottom:1001.677500px;}
.y1c7{bottom:1001.679000px;}
.y258{bottom:1001.902500px;}
.y23e{bottom:1010.644500px;}
.y239{bottom:1014.301500px;}
.yfb{bottom:1014.429000px;}
.y257{bottom:1015.353000px;}
.y20f{bottom:1016.622000px;}
.y12d{bottom:1019.248500px;}
.y1c6{bottom:1019.611500px;}
.y23d{bottom:1024.095000px;}
.y91{bottom:1024.992000px;}
.y238{bottom:1027.752000px;}
.y256{bottom:1028.802000px;}
.yfa{bottom:1032.363000px;}
.y20e{bottom:1034.556000px;}
.y9{bottom:1037.031000px;}
.y12c{bottom:1037.181000px;}
.y1c5{bottom:1037.544000px;}
.ye{bottom:1037.892000px;}
.yc7{bottom:1040.533500px;}
.y237{bottom:1041.201000px;}
.y255{bottom:1042.251000px;}
.y90{bottom:1042.924500px;}
.yf9{bottom:1050.295500px;}
.y23c{bottom:1050.994500px;}
.y12b{bottom:1055.476500px;}
.y254{bottom:1055.701500px;}
.yc6{bottom:1058.466000px;}
.y8f{bottom:1060.857000px;}
.y23b{bottom:1064.443500px;}
.yf8{bottom:1068.228000px;}
.y253{bottom:1069.150500px;}
.yd{bottom:1072.860000px;}
.y12a{bottom:1073.409000px;}
.yc5{bottom:1076.398500px;}
.y23a{bottom:1077.892500px;}
.y8e{bottom:1078.789500px;}
.y129{bottom:1091.341500px;}
.yf7{bottom:1091.343000px;}
.yc4{bottom:1094.331000px;}
.y8d{bottom:1096.722000px;}
.yc{bottom:1141.168500px;}
.he{height:19.066819px;}
.h2{height:23.228490px;}
.h18{height:25.757554px;}
.h1b{height:25.807880px;}
.h19{height:27.180258px;}
.h1d{height:27.834051px;}
.h16{height:28.659684px;}
.h6{height:28.787846px;}
.h15{height:29.025143px;}
.h20{height:32.661470px;}
.hf{height:32.900573px;}
.h22{height:33.134573px;}
.h21{height:33.140573px;}
.h1f{height:33.187496px;}
.h12{height:36.534266px;}
.h1{height:36.703125px;}
.h10{height:36.864266px;}
.h11{height:36.870266px;}
.ha{height:37.336090px;}
.h9{height:37.605082px;}
.h13{height:40.826735px;}
.hb{height:41.125613px;}
.hc{height:41.484266px;}
.h8{height:45.238339px;}
.h1a{height:45.814368px;}
.h1e{height:48.709589px;}
.h3{height:55.054688px;}
.h7{height:98.701718px;}
.h4{height:110.109375px;}
.hd{height:239.313360px;}
.h14{height:243.741960px;}
.h17{height:251.560485px;}
.h1c{height:265.433520px;}
.h5{height:1188.000000px;}
.h0{height:1263.000000px;}
.w3{width:315.606720px;}
.w4{width:370.126680px;}
.w5{width:370.141185px;}
.w6{width:771.130140px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:7.471272px;}
.x4a{left:11.165025px;}
.x2a{left:12.192331px;}
.x28{left:13.822531px;}
.x27{left:18.641402px;}
.x32{left:25.021795px;}
.x2b{left:26.743496px;}
.x2c{left:29.936347px;}
.x67{left:40.601661px;}
.x40{left:44.315886px;}
.x5c{left:48.722153px;}
.x5b{left:51.227136px;}
.x4b{left:54.326664px;}
.x5a{left:57.340974px;}
.x1{left:64.701150px;}
.x41{left:67.297817px;}
.x4f{left:69.971591px;}
.x7{left:73.446000px;}
.xa{left:75.883500px;}
.x42{left:79.165399px;}
.x68{left:83.413500px;}
.x6{left:88.389000px;}
.x8{left:89.739000px;}
.x10{left:100.566973px;}
.x9{left:103.333500px;}
.xf{left:105.451052px;}
.x13{left:108.046330px;}
.x14{left:109.079877px;}
.x12{left:110.827452px;}
.x11{left:112.275069px;}
.xb{left:113.355000px;}
.x39{left:117.263026px;}
.x2f{left:118.875000px;}
.x2d{left:120.850500px;}
.x49{left:128.401655px;}
.x38{left:130.131036px;}
.x48{left:139.123632px;}
.x36{left:165.291616px;}
.x4{left:166.609500px;}
.x37{left:170.215696px;}
.x21{left:174.203172px;}
.x4c{left:175.851028px;}
.x44{left:178.379660px;}
.x26{left:180.851128px;}
.x1f{left:182.370474px;}
.x22{left:183.746363px;}
.x43{left:185.456344px;}
.x1e{left:187.267595px;}
.x20{left:188.767379px;}
.x23{left:189.908519px;}
.x24{left:192.207101px;}
.x25{left:193.654718px;}
.x33{left:194.662087px;}
.x34{left:198.489796px;}
.x46{left:200.591288px;}
.x2{left:205.824450px;}
.x4e{left:207.477576px;}
.x47{left:208.782599px;}
.x3c{left:211.829498px;}
.x45{left:213.306622px;}
.x3d{left:218.800469px;}
.x6c{left:219.897000px;}
.x2e{left:223.723500px;}
.x3e{left:224.796784px;}
.x57{left:241.428072px;}
.x50{left:245.645163px;}
.x6d{left:249.828000px;}
.x1a{left:252.201786px;}
.x16{left:253.903715px;}
.x18{left:257.878143px;}
.x15{left:260.003924px;}
.x1b{left:261.445020px;}
.x19{left:263.802290px;}
.x1c{left:265.064064px;}
.x17{left:266.518203px;}
.x1d{left:267.965820px;}
.x6e{left:276.121500px;}
.x4d{left:290.755557px;}
.x3a{left:292.229597px;}
.x35{left:294.422348px;}
.x54{left:304.527049px;}
.x3b{left:311.416546px;}
.x51{left:316.287974px;}
.x5{left:318.444000px;}
.x6f{left:321.669000px;}
.x55{left:352.805929px;}
.x56{left:364.600094px;}
.x66{left:432.700205px;}
.x5d{left:437.474637px;}
.x52{left:443.716394px;}
.x53{left:459.584221px;}
.x5e{left:465.506427px;}
.xc{left:467.967000px;}
.x65{left:471.711370px;}
.x3f{left:474.426000px;}
.x69{left:477.934500px;}
.x31{left:479.964000px;}
.xd{left:482.910000px;}
.xe{left:498.451500px;}
.x6a{left:503.872500px;}
.x6b{left:506.956500px;}
.x30{left:508.437000px;}
.x64{left:541.462357px;}
.x63{left:543.446678px;}
.x5f{left:591.348940px;}
.x62{left:604.958803px;}
.x60{left:622.453377px;}
.x58{left:690.628501px;}
.x59{left:701.305374px;}
.x61{left:739.233306px;}
.x3{left:839.323500px;}
@media print{
.v1{vertical-align:-4.106667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.563653pt;}
.ls19{letter-spacing:-1.584872pt;}
.ls1c{letter-spacing:-0.211533pt;}
.ls18{letter-spacing:-0.204787pt;}
.ls1d{letter-spacing:-0.013017pt;}
.ls15{letter-spacing:-0.012046pt;}
.ls1f{letter-spacing:-0.009763pt;}
.ls17{letter-spacing:-0.009035pt;}
.ls21{letter-spacing:-0.006509pt;}
.ls14{letter-spacing:-0.006023pt;}
.ls1b{letter-spacing:-0.003254pt;}
.ls16{letter-spacing:-0.003012pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.006023pt;}
.ls11{letter-spacing:0.006509pt;}
.lse{letter-spacing:0.007003pt;}
.ls10{letter-spacing:0.009035pt;}
.ls1e{letter-spacing:0.009763pt;}
.ls13{letter-spacing:0.012046pt;}
.ls1a{letter-spacing:0.013017pt;}
.ls20{letter-spacing:0.016272pt;}
.ls24{letter-spacing:0.746682pt;}
.ls6{letter-spacing:2.176015pt;}
.ls2{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.653089pt;}
.ls3{letter-spacing:2.654903pt;}
.ls5{letter-spacing:2.655711pt;}
.lsb{letter-spacing:2.656015pt;}
.ls7{letter-spacing:2.656693pt;}
.ls23{letter-spacing:2.657630pt;}
.ls12{letter-spacing:2.660237pt;}
.ls8{letter-spacing:2.660541pt;}
.lsd{letter-spacing:12.341348pt;}
.ls22{letter-spacing:15.907135pt;}
.lsc{letter-spacing:18.599200pt;}
.ls1{letter-spacing:26.566586pt;}
.ls9{letter-spacing:42.357067pt;}
.lsa{letter-spacing:42.607733pt;}
.ws92{word-spacing:-13.283467pt;}
.ws89{word-spacing:-13.262246pt;}
.ws23{word-spacing:-10.626800pt;}
.wsfd{word-spacing:-9.741362pt;}
.wsfc{word-spacing:-9.734359pt;}
.ws10e{word-spacing:-8.103350pt;}
.ws107{word-spacing:-8.083824pt;}
.ws109{word-spacing:-8.070806pt;}
.ws108{word-spacing:-8.067552pt;}
.ws10c{word-spacing:-8.064297pt;}
.ws10b{word-spacing:-8.061043pt;}
.ws103{word-spacing:-7.477737pt;}
.ws100{word-spacing:-7.468702pt;}
.wsfe{word-spacing:-7.462679pt;}
.ws101{word-spacing:-7.459667pt;}
.ws102{word-spacing:-7.378355pt;}
.ws10d{word-spacing:-6.485934pt;}
.ws58{word-spacing:-6.445449pt;}
.wsa9{word-spacing:-1.009543pt;}
.wse6{word-spacing:-0.956410pt;}
.wse5{word-spacing:-0.903276pt;}
.wscb{word-spacing:-0.858823pt;}
.wscc{word-spacing:-0.850142pt;}
.wsf5{word-spacing:-0.690740pt;}
.ws41{word-spacing:-0.637606pt;}
.ws7c{word-spacing:-0.531339pt;}
.ws152{word-spacing:-0.478205pt;}
.ws127{word-spacing:-0.425071pt;}
.ws11e{word-spacing:-0.371937pt;}
.ws131{word-spacing:-0.159402pt;}
.wsec{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.047821pt;}
.ws59{word-spacing:-0.023185pt;}
.ws21{word-spacing:-0.021218pt;}
.ws25{word-spacing:-0.007181pt;}
.ws116{word-spacing:-0.005739pt;}
.ws5c{word-spacing:-0.002336pt;}
.ws0{word-spacing:0.000000pt;}
.ws88{word-spacing:0.001474pt;}
.ws26{word-spacing:0.006807pt;}
.wsfb{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.106268pt;}
.ws4e{word-spacing:0.318803pt;}
.wsde{word-spacing:0.425071pt;}
.ws183{word-spacing:0.425072pt;}
.wscd{word-spacing:0.478205pt;}
.ws17e{word-spacing:0.595101pt;}
.ws84{word-spacing:0.637606pt;}
.ws15c{word-spacing:0.722622pt;}
.ws17a{word-spacing:0.754205pt;}
.ws17b{word-spacing:0.765130pt;}
.wsac{word-spacing:0.797008pt;}
.ws8c{word-spacing:0.850142pt;}
.ws8b{word-spacing:0.903276pt;}
.ws4b{word-spacing:0.956410pt;}
.ws75{word-spacing:1.062677pt;}
.ws77{word-spacing:1.115811pt;}
.ws130{word-spacing:1.168945pt;}
.ws12f{word-spacing:1.186311pt;}
.ws167{word-spacing:1.317723pt;}
.ws37{word-spacing:1.328347pt;}
.ws148{word-spacing:1.381481pt;}
.wsf2{word-spacing:1.487748pt;}
.wsa8{word-spacing:1.594016pt;}
.ws6f{word-spacing:1.753418pt;}
.wsb9{word-spacing:1.806551pt;}
.wsfa{word-spacing:1.912819pt;}
.ws15d{word-spacing:1.912824pt;}
.ws5b{word-spacing:1.965953pt;}
.ws43{word-spacing:2.072221pt;}
.ws98{word-spacing:2.125355pt;}
.ws115{word-spacing:2.178489pt;}
.ws168{word-spacing:2.380403pt;}
.ws27{word-spacing:2.391024pt;}
.ws169{word-spacing:2.422910pt;}
.ws147{word-spacing:2.444158pt;}
.wsaf{word-spacing:2.550426pt;}
.ws11c{word-spacing:2.603559pt;}
.ws16a{word-spacing:2.635446pt;}
.ws5d{word-spacing:2.656092pt;}
.ws24{word-spacing:2.656693pt;}
.ws113{word-spacing:2.709827pt;}
.wsab{word-spacing:2.816095pt;}
.wsee{word-spacing:2.869229pt;}
.wsaa{word-spacing:2.922363pt;}
.wsda{word-spacing:2.975497pt;}
.ws4a{word-spacing:3.028630pt;}
.ws178{word-spacing:3.060518pt;}
.ws144{word-spacing:3.081764pt;}
.wsd1{word-spacing:3.134898pt;}
.ws40{word-spacing:3.188032pt;}
.ws97{word-spacing:3.241166pt;}
.ws9d{word-spacing:3.294300pt;}
.ws2b{word-spacing:3.347434pt;}
.ws123{word-spacing:3.400567pt;}
.wse{word-spacing:3.443098pt;}
.wse3{word-spacing:3.453701pt;}
.ws33{word-spacing:3.506835pt;}
.ws64{word-spacing:3.559969pt;}
.wsba{word-spacing:3.600835pt;}
.wsbb{word-spacing:3.613103pt;}
.ws9b{word-spacing:3.666237pt;}
.ws104{word-spacing:3.719371pt;}
.ws2a{word-spacing:3.772505pt;}
.ws2d{word-spacing:3.825638pt;}
.ws49{word-spacing:3.878772pt;}
.ws55{word-spacing:3.931906pt;}
.ws143{word-spacing:3.985040pt;}
.wsd2{word-spacing:4.091308pt;}
.ws6c{word-spacing:4.144442pt;}
.ws1b{word-spacing:4.250709pt;}
.ws15f{word-spacing:4.250720pt;}
.ws180{word-spacing:4.254598pt;}
.ws133{word-spacing:4.303843pt;}
.ws177{word-spacing:4.378242pt;}
.ws13a{word-spacing:4.410111pt;}
.ws42{word-spacing:4.463245pt;}
.ws93{word-spacing:4.516379pt;}
.wsb3{word-spacing:4.675780pt;}
.ws99{word-spacing:4.782048pt;}
.ws129{word-spacing:4.835182pt;}
.wse7{word-spacing:4.888316pt;}
.ws17{word-spacing:4.925542pt;}
.wsb0{word-spacing:4.941450pt;}
.ws4f{word-spacing:5.047717pt;}
.ws110{word-spacing:5.100851pt;}
.ws155{word-spacing:5.143371pt;}
.ws118{word-spacing:5.153985pt;}
.ws139{word-spacing:5.207119pt;}
.ws151{word-spacing:5.260253pt;}
.ws22{word-spacing:5.268698pt;}
.wsa0{word-spacing:5.269607pt;}
.ws87{word-spacing:5.270893pt;}
.wsa1{word-spacing:5.279178pt;}
.wsbc{word-spacing:5.309874pt;}
.ws1c{word-spacing:5.310091pt;}
.ws1a{word-spacing:5.312082pt;}
.wsd0{word-spacing:5.312755pt;}
.ws18{word-spacing:5.313387pt;}
.ws158{word-spacing:5.313400pt;}
.ws1d{word-spacing:5.313897pt;}
.wscf{word-spacing:5.314903pt;}
.ws8d{word-spacing:5.366521pt;}
.ws132{word-spacing:5.419654pt;}
.ws142{word-spacing:5.525922pt;}
.wsdb{word-spacing:5.550122pt;}
.ws173{word-spacing:5.568443pt;}
.ws28{word-spacing:5.579056pt;}
.ws181{word-spacing:5.695965pt;}
.ws105{word-spacing:5.738458pt;}
.ws14{word-spacing:5.786317pt;}
.ws14b{word-spacing:5.791591pt;}
.ws38{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws52{word-spacing:5.950993pt;}
.ws15{word-spacing:5.977600pt;}
.ws111{word-spacing:6.004127pt;}
.ws126{word-spacing:6.057261pt;}
.ws172{word-spacing:6.078530pt;}
.ws8e{word-spacing:6.163529pt;}
.ws6d{word-spacing:6.269796pt;}
.ws96{word-spacing:6.322930pt;}
.ws154{word-spacing:6.337439pt;}
.ws3e{word-spacing:6.376064pt;}
.ws86{word-spacing:6.482332pt;}
.ws16c{word-spacing:6.503602pt;}
.ws10f{word-spacing:6.535466pt;}
.ws187{word-spacing:6.588616pt;}
.ws17f{word-spacing:6.631123pt;}
.ws6b{word-spacing:6.641733pt;}
.ws13c{word-spacing:6.694867pt;}
.ws7{word-spacing:6.742733pt;}
.ws85{word-spacing:6.748001pt;}
.ws95{word-spacing:6.801135pt;}
.ws9{word-spacing:6.838374pt;}
.ws134{word-spacing:6.854269pt;}
.wsd4{word-spacing:6.907403pt;}
.wsd3{word-spacing:6.920463pt;}
.ws2f{word-spacing:7.013670pt;}
.ws54{word-spacing:7.066804pt;}
.wsc8{word-spacing:7.095398pt;}
.wsca{word-spacing:7.095636pt;}
.wsc9{word-spacing:7.100563pt;}
.ws63{word-spacing:7.119938pt;}
.ws175{word-spacing:7.141210pt;}
.ws122{word-spacing:7.226206pt;}
.ws11a{word-spacing:7.332474pt;}
.ws51{word-spacing:7.385607pt;}
.ws11d{word-spacing:7.438741pt;}
.ws79{word-spacing:7.545009pt;}
.ws16d{word-spacing:7.566282pt;}
.wsa7{word-spacing:7.598143pt;}
.wsad{word-spacing:7.651277pt;}
.ws112{word-spacing:7.704411pt;}
.ws157{word-spacing:7.778818pt;}
.wsd6{word-spacing:7.795714pt;}
.wsd5{word-spacing:7.810678pt;}
.ws15e{word-spacing:7.821325pt;}
.ws44{word-spacing:7.863812pt;}
.wsd7{word-spacing:7.876796pt;}
.ws65{word-spacing:7.916946pt;}
.ws186{word-spacing:7.948846pt;}
.wsc7{word-spacing:7.961862pt;}
.wsc5{word-spacing:7.965947pt;}
.wsc6{word-spacing:7.970080pt;}
.ws82{word-spacing:8.076348pt;}
.ws179{word-spacing:8.118875pt;}
.ws150{word-spacing:8.129482pt;}
.ws2c{word-spacing:8.182615pt;}
.ws174{word-spacing:8.203890pt;}
.ws5a{word-spacing:8.235749pt;}
.ws14f{word-spacing:8.288883pt;}
.ws15a{word-spacing:8.331411pt;}
.wsf0{word-spacing:8.448285pt;}
.ws78{word-spacing:8.607686pt;}
.ws7b{word-spacing:8.660820pt;}
.wse8{word-spacing:8.713954pt;}
.ws4d{word-spacing:8.767088pt;}
.wsb4{word-spacing:8.820222pt;}
.ws162{word-spacing:8.841498pt;}
.ws76{word-spacing:8.926490pt;}
.ws149{word-spacing:8.987370pt;}
.ws137{word-spacing:9.009387pt;}
.ws136{word-spacing:9.013628pt;}
.ws138{word-spacing:9.020563pt;}
.ws3c{word-spacing:9.032757pt;}
.ws94{word-spacing:9.085891pt;}
.ws16e{word-spacing:9.096541pt;}
.ws4c{word-spacing:9.192159pt;}
.ws8a{word-spacing:9.298427pt;}
.wsa3{word-spacing:9.351561pt;}
.wsea{word-spacing:9.399647pt;}
.wseb{word-spacing:9.404694pt;}
.ws171{word-spacing:9.479106pt;}
.ws176{word-spacing:9.521613pt;}
.ws45{word-spacing:9.564096pt;}
.ws35{word-spacing:9.617230pt;}
.ws11{word-spacing:9.659802pt;}
.ws17d{word-spacing:9.734149pt;}
.wsbe{word-spacing:9.776631pt;}
.ws17c{word-spacing:9.776656pt;}
.ws145{word-spacing:10.042301pt;}
.ws165{word-spacing:10.074206pt;}
.ws34{word-spacing:10.095435pt;}
.ws62{word-spacing:10.148569pt;}
.ws12{word-spacing:10.185830pt;}
.wsdd{word-spacing:10.254836pt;}
.ws32{word-spacing:10.307970pt;}
.ws119{word-spacing:10.361104pt;}
.ws161{word-spacing:10.371757pt;}
.wsb2{word-spacing:10.414238pt;}
.ws7a{word-spacing:10.467372pt;}
.wsdc{word-spacing:10.573639pt;}
.ws67{word-spacing:10.626773pt;}
.wse4{word-spacing:10.679907pt;}
.ws74{word-spacing:10.733041pt;}
.ws166{word-spacing:10.754322pt;}
.ws13b{word-spacing:10.786175pt;}
.ws164{word-spacing:10.796829pt;}
.ws8f{word-spacing:10.892443pt;}
.wsae{word-spacing:10.945577pt;}
.wsf8{word-spacing:11.051844pt;}
.ws9c{word-spacing:11.104978pt;}
.ws11f{word-spacing:11.158112pt;}
.wsa6{word-spacing:11.264380pt;}
.ws156{word-spacing:11.264408pt;}
.wsf4{word-spacing:11.277439pt;}
.ws6e{word-spacing:11.317514pt;}
.ws57{word-spacing:11.370647pt;}
.wsdf{word-spacing:11.530049pt;}
.wsd9{word-spacing:11.583183pt;}
.ws185{word-spacing:11.604466pt;}
.wsa{word-spacing:11.620454pt;}
.ws141{word-spacing:11.636317pt;}
.ws53{word-spacing:11.689451pt;}
.ws14d{word-spacing:11.738876pt;}
.ws14e{word-spacing:11.742585pt;}
.ws36{word-spacing:11.795718pt;}
.ws182{word-spacing:11.817002pt;}
.ws90{word-spacing:11.848852pt;}
.ws15b{word-spacing:11.859509pt;}
.ws72{word-spacing:11.955120pt;}
.wsb{word-spacing:12.003021pt;}
.ws30{word-spacing:12.008254pt;}
.wsf3{word-spacing:12.061388pt;}
.wsb1{word-spacing:12.114522pt;}
.ws12d{word-spacing:12.167655pt;}
.ws16b{word-spacing:12.199566pt;}
.ws3d{word-spacing:12.220789pt;}
.ws170{word-spacing:12.242074pt;}
.wsed{word-spacing:12.380191pt;}
.ws60{word-spacing:12.433325pt;}
.ws160{word-spacing:12.454610pt;}
.ws31{word-spacing:12.486459pt;}
.wsc{word-spacing:12.529050pt;}
.ws39{word-spacing:12.592726pt;}
.ws7d{word-spacing:12.698994pt;}
.ws66{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws146{word-spacing:12.805262pt;}
.ws6a{word-spacing:12.858396pt;}
.ws6{word-spacing:12.863795pt;}
.wsce{word-spacing:12.910307pt;}
.wsd8{word-spacing:12.911530pt;}
.ws13{word-spacing:12.959437pt;}
.ws9e{word-spacing:12.964663pt;}
.ws10{word-spacing:13.102899pt;}
.ws159{word-spacing:13.347261pt;}
.wsf1{word-spacing:13.496002pt;}
.wsd{word-spacing:13.533286pt;}
.wsa2{word-spacing:13.602270pt;}
.ws13f{word-spacing:13.655404pt;}
.ws135{word-spacing:13.708538pt;}
.wsf{word-spacing:13.724570pt;}
.ws125{word-spacing:13.761671pt;}
.ws4{word-spacing:13.868032pt;}
.ws153{word-spacing:13.974207pt;}
.ws5e{word-spacing:14.027341pt;}
.wse9{word-spacing:14.080475pt;}
.wsa5{word-spacing:14.133609pt;}
.wse1{word-spacing:14.239876pt;}
.wse0{word-spacing:14.245392pt;}
.ws73{word-spacing:14.293010pt;}
.ws61{word-spacing:14.346144pt;}
.ws3a{word-spacing:14.399278pt;}
.ws117{word-spacing:14.452412pt;}
.ws163{word-spacing:14.494955pt;}
.ws1f{word-spacing:14.505546pt;}
.ws69{word-spacing:14.558679pt;}
.ws29{word-spacing:14.611813pt;}
.ws47{word-spacing:14.718081pt;}
.wsb8{word-spacing:14.824349pt;}
.wsb7{word-spacing:14.849919pt;}
.ws120{word-spacing:14.877483pt;}
.ws13e{word-spacing:14.930617pt;}
.ws14c{word-spacing:15.090018pt;}
.ws7e{word-spacing:15.196286pt;}
.ws3f{word-spacing:15.249420pt;}
.ws80{word-spacing:15.302554pt;}
.ws91{word-spacing:15.355687pt;}
.wsc3{word-spacing:15.416001pt;}
.wsc2{word-spacing:15.436970pt;}
.wsbf{word-spacing:15.439185pt;}
.wsc4{word-spacing:15.439196pt;}
.wsc1{word-spacing:15.441897pt;}
.wsc0{word-spacing:15.461955pt;}
.ws9f{word-spacing:15.568223pt;}
.wsbd{word-spacing:15.674491pt;}
.wsf7{word-spacing:15.727625pt;}
.wsf6{word-spacing:15.729161pt;}
.ws3b{word-spacing:15.833892pt;}
.ws20{word-spacing:15.940160pt;}
.ws46{word-spacing:15.993294pt;}
.wse2{word-spacing:16.046428pt;}
.wsb6{word-spacing:16.099562pt;}
.ws140{word-spacing:16.258963pt;}
.ws184{word-spacing:16.407779pt;}
.wsb5{word-spacing:16.418365pt;}
.ws124{word-spacing:16.471499pt;}
.ws114{word-spacing:16.524633pt;}
.ws16f{word-spacing:16.535301pt;}
.ws16{word-spacing:16.832922pt;}
.ws68{word-spacing:16.896570pt;}
.ws71{word-spacing:17.374774pt;}
.ws128{word-spacing:17.427908pt;}
.ws121{word-spacing:17.481042pt;}
.ws19{word-spacing:17.852979pt;}
.wsef{word-spacing:18.012381pt;}
.ws13d{word-spacing:18.065515pt;}
.ws50{word-spacing:18.118649pt;}
.ws7f{word-spacing:18.224916pt;}
.ws11b{word-spacing:18.331184pt;}
.ws5f{word-spacing:18.437452pt;}
.ws56{word-spacing:18.915657pt;}
.ws9a{word-spacing:19.021924pt;}
.ws12e{word-spacing:19.075058pt;}
.ws5{word-spacing:19.606528pt;}
.ws14a{word-spacing:19.712665pt;}
.wsf9{word-spacing:19.765798pt;}
.ws48{word-spacing:19.925200pt;}
.ws2e{word-spacing:20.562806pt;}
.ws8{word-spacing:20.610765pt;}
.wsa4{word-spacing:20.722208pt;}
.ws81{word-spacing:21.094145pt;}
.ws83{word-spacing:21.731751pt;}
.ws70{word-spacing:23.697705pt;}
.ws12c{word-spacing:25.026051pt;}
.ws12b{word-spacing:45.641991pt;}
.ws12a{word-spacing:53.718339pt;}
.ws10a{word-spacing:208.584287pt;}
.wsff{word-spacing:303.091245pt;}
.ws106{word-spacing:347.480726pt;}
._0{margin-left:-1287.010133pt;}
._1{margin-left:-7.539723pt;}
._1a{margin-left:-5.856134pt;}
._4{margin-left:-4.637047pt;}
._3{margin-left:-3.490918pt;}
._a{margin-left:-2.546449pt;}
._2{margin-left:-1.531051pt;}
._8{width:1.021298pt;}
._7{width:2.656693pt;}
._18{width:12.220789pt;}
._12{width:13.291776pt;}
._16{width:15.621357pt;}
._19{width:16.684034pt;}
._e{width:17.906113pt;}
._9{width:19.544930pt;}
._11{width:20.889942pt;}
._10{width:21.784885pt;}
._f{width:23.750838pt;}
._5{width:24.771174pt;}
._6{width:25.823232pt;}
._13{width:26.885737pt;}
._d{width:29.663099pt;}
._b{width:31.566086pt;}
._c{width:33.474336pt;}
._1b{width:42.507567pt;}
._17{width:58.384144pt;}
._14{width:238.277617pt;}
._15{width:293.751554pt;}
.fsa{font-size:23.185067pt;}
.fs1{font-size:27.002667pt;}
.fsc{font-size:30.115733pt;}
.fsd{font-size:32.543573pt;}
.fsb{font-size:35.015680pt;}
.fs4{font-size:37.193600pt;}
.fs9{font-size:42.507200pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fse{font-size:56.951253pt;}
.fs6{font-size:58.447467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:127.521600pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:2.072055pt;}
.y6e{bottom:5.630962pt;}
.y7e{bottom:9.189870pt;}
.y169{bottom:9.279162pt;}
.y180{bottom:14.363458pt;}
.y19b{bottom:15.792064pt;}
.y6d{bottom:18.502414pt;}
.y7d{bottom:18.502419pt;}
.y85{bottom:22.061326pt;}
.y6c{bottom:25.620228pt;}
.y7c{bottom:25.620234pt;}
.y16b{bottom:30.025946pt;}
.y182{bottom:36.975028pt;}
.y6b{bottom:38.491685pt;}
.y1a9{bottom:43.976832pt;}
.y82{bottom:45.063834pt;}
.y163{bottom:45.666283pt;}
.y197{bottom:46.023579pt;}
.y78{bottom:46.434031pt;}
.y1a1{bottom:48.604803pt;}
.y1a8{bottom:53.129712pt;}
.y77{bottom:53.551846pt;}
.y173{bottom:54.304939pt;}
.y6a{bottom:54.922049pt;}
.y162{bottom:55.879189pt;}
.y1a0{bottom:57.757683pt;}
.y172{bottom:58.445852pt;}
.y20d{bottom:61.488000pt;}
.y42{bottom:61.489333pt;}
.y84{bottom:61.494215pt;}
.y1a7{bottom:62.282592pt;}
.y17d{bottom:62.586765pt;}
.y7b{bottom:62.864395pt;}
.y19a{bottom:66.667290pt;}
.y19f{bottom:66.910563pt;}
.y7a{bottom:69.982210pt;}
.y16a{bottom:71.315268pt;}
.y1a6{bottom:71.435472pt;}
.y252{bottom:73.445333pt;}
.y19e{bottom:76.063443pt;}
.y181{bottom:76.533113pt;}
.y41{bottom:77.429333pt;}
.y83{bottom:77.924545pt;}
.y1a5{bottom:80.588352pt;}
.y17f{bottom:80.770623pt;}
.y79{bottom:82.853690pt;}
.y19d{bottom:85.216323pt;}
.y251{bottom:85.400000pt;}
.y199{bottom:87.311000pt;}
.y8b{bottom:87.509947pt;}
.y1a4{bottom:89.741232pt;}
.y161{bottom:90.165376pt;}
.y179{bottom:90.623437pt;}
.y17c{bottom:91.573739pt;}
.yc3{bottom:91.974667pt;}
.y40{bottom:93.369333pt;}
.y15e{bottom:93.692000pt;}
.y81{bottom:94.354932pt;}
.y19c{bottom:94.369203pt;}
.y8a{bottom:94.627762pt;}
.y5{bottom:96.324775pt;}
.y250{bottom:97.354667pt;}
.y1a3{bottom:98.894112pt;}
.y178{bottom:98.905263pt;}
.y1bb{bottom:98.905333pt;}
.y76{bottom:99.284019pt;}
.y167{bottom:102.391684pt;}
.y171{bottom:103.422623pt;}
.y4{bottom:104.426250pt;}
.y89{bottom:105.583345pt;}
.yc2{bottom:107.914667pt;}
.y198{bottom:107.954660pt;}
.y1a2{bottom:108.714553pt;}
.y3f{bottom:109.309333pt;}
.y24f{bottom:109.310667pt;}
.y15d{bottom:109.632000pt;}
.yf6{bottom:109.718667pt;}
.y80{bottom:110.785261pt;}
.y17a{bottom:111.328003pt;}
.y75{bottom:112.155499pt;}
.y3{bottom:112.527725pt;}
.y88{bottom:112.701159pt;}
.y168{bottom:113.421623pt;}
.y74{bottom:119.273314pt;}
.y2{bottom:120.629200pt;}
.y63{bottom:120.660000pt;}
.y1aa{bottom:120.889307pt;}
.y24e{bottom:121.265333pt;}
.y87{bottom:123.656742pt;}
.yc1{bottom:123.854667pt;}
.y185{bottom:124.664153pt;}
.y3e{bottom:125.249333pt;}
.y128{bottom:125.250667pt;}
.y15c{bottom:125.572000pt;}
.yf5{bottom:125.660000pt;}
.y184{bottom:126.074624pt;}
.y66{bottom:127.215649pt;}
.y73{bottom:128.585829pt;}
.y160{bottom:129.558016pt;}
.y6{bottom:129.826400pt;}
.y1c4{bottom:130.084000pt;}
.y86{bottom:130.774556pt;}
.y24d{bottom:133.220000pt;}
.y1ba{bottom:134.692000pt;}
.y72{bottom:135.703644pt;}
.y196{bottom:138.186216pt;}
.yc0{bottom:139.796000pt;}
.y3d{bottom:141.190667pt;}
.y15b{bottom:141.512000pt;}
.yf4{bottom:141.600000pt;}
.y69{bottom:143.645978pt;}
.y20c{bottom:144.025333pt;}
.y8c{bottom:144.376850pt;}
.y24c{bottom:145.176000pt;}
.y1c3{bottom:146.024000pt;}
.y71{bottom:148.575123pt;}
.y177{bottom:148.673696pt;}
.y183{bottom:148.726624pt;}
.y1b9{bottom:150.632000pt;}
.y195{bottom:154.365762pt;}
.y191{bottom:154.366067pt;}
.y193{bottom:154.366169pt;}
.y18f{bottom:154.543023pt;}
.ybf{bottom:155.736000pt;}
.y166{bottom:155.819776pt;}
.y176{bottom:156.955523pt;}
.y3c{bottom:157.130667pt;}
.y15a{bottom:157.453333pt;}
.yf3{bottom:157.540000pt;}
.y1ac{bottom:158.355299pt;}
.y20b{bottom:159.965333pt;}
.y245{bottom:160.381333pt;}
.y17e{bottom:160.760646pt;}
.y70{bottom:161.446545pt;}
.y1c2{bottom:161.964000pt;}
.y194{bottom:163.518642pt;}
.y190{bottom:163.518947pt;}
.y192{bottom:163.519049pt;}
.y18e{bottom:163.695903pt;}
.y68{bottom:165.005453pt;}
.y1b8{bottom:166.572000pt;}
.y6f{bottom:168.564360pt;}
.y24b{bottom:169.085333pt;}
.ybe{bottom:171.676000pt;}
.y17b{bottom:172.109383pt;}
.y244{bottom:172.337333pt;}
.y3b{bottom:173.070667pt;}
.y127{bottom:173.190667pt;}
.y159{bottom:173.393333pt;}
.yf2{bottom:173.480000pt;}
.y20a{bottom:175.990667pt;}
.y1ed{bottom:176.654667pt;}
.y165{bottom:176.975083pt;}
.y1c1{bottom:177.904000pt;}
.y24a{bottom:181.041333pt;}
.y67{bottom:181.435840pt;}
.y1b7{bottom:182.513333pt;}
.y170{bottom:182.823356pt;}
.y243{bottom:184.292000pt;}
.y164{bottom:187.187989pt;}
.ybd{bottom:187.616000pt;}
.y175{bottom:188.016062pt;}
.y3a{bottom:189.010667pt;}
.y126{bottom:189.132000pt;}
.yf1{bottom:189.420000pt;}
.y158{bottom:189.656000pt;}
.y16f{bottom:191.105183pt;}
.y209{bottom:191.930667pt;}
.y1ec{bottom:192.594667pt;}
.y249{bottom:192.996000pt;}
.y1c0{bottom:193.844000pt;}
.y18d{bottom:195.407886pt;}
.y174{bottom:196.297888pt;}
.y65{bottom:198.414902pt;}
.y1b6{bottom:198.453333pt;}
.ybc{bottom:203.556000pt;}
.y39{bottom:204.950667pt;}
.y248{bottom:204.952000pt;}
.y125{bottom:205.072000pt;}
.yf0{bottom:205.361333pt;}
.y64{bottom:205.538555pt;}
.y157{bottom:205.596000pt;}
.y208{bottom:207.872000pt;}
.y16c{bottom:208.343296pt;}
.y1eb{bottom:208.534667pt;}
.y1bf{bottom:209.785333pt;}
.y16e{bottom:212.815314pt;}
.y1b5{bottom:214.393333pt;}
.y236{bottom:216.508000pt;}
.y247{bottom:216.906667pt;}
.y1ab{bottom:217.462971pt;}
.ybb{bottom:219.497333pt;}
.y38{bottom:220.837333pt;}
.y124{bottom:221.132000pt;}
.yef{bottom:221.301333pt;}
.y156{bottom:221.536000pt;}
.y207{bottom:223.812000pt;}
.y1ea{bottom:224.474667pt;}
.y1be{bottom:225.725333pt;}
.y246{bottom:228.861333pt;}
.y1b4{bottom:230.333333pt;}
.y235{bottom:232.448000pt;}
.yba{bottom:235.437333pt;}
.y37{bottom:236.777333pt;}
.y123{bottom:237.072000pt;}
.yee{bottom:237.241333pt;}
.y155{bottom:237.798667pt;}
.y206{bottom:239.752000pt;}
.y1bd{bottom:241.665333pt;}
.y1e9{bottom:246.136000pt;}
.y1b3{bottom:246.498667pt;}
.y234{bottom:248.388000pt;}
.yb9{bottom:251.377333pt;}
.y36{bottom:252.717333pt;}
.y122{bottom:253.013333pt;}
.y154{bottom:253.740000pt;}
.y205{bottom:255.692000pt;}
.y1bc{bottom:257.605333pt;}
.yed{bottom:259.821333pt;}
.y1b2{bottom:262.438667pt;}
.y233{bottom:264.329333pt;}
.yb8{bottom:267.317333pt;}
.y35{bottom:268.657333pt;}
.y121{bottom:268.953333pt;}
.y153{bottom:269.680000pt;}
.y204{bottom:271.632000pt;}
.y8{bottom:271.674933pt;}
.y1b1{bottom:278.378667pt;}
.yb7{bottom:283.257333pt;}
.y232{bottom:284.453333pt;}
.y7{bottom:284.474933pt;}
.y34{bottom:284.544000pt;}
.y120{bottom:284.893333pt;}
.y152{bottom:285.620000pt;}
.y1e8{bottom:286.730667pt;}
.y203{bottom:287.572000pt;}
.yec{bottom:297.173333pt;}
.yb6{bottom:299.197333pt;}
.y33{bottom:300.484000pt;}
.y11f{bottom:300.833333pt;}
.y151{bottom:301.560000pt;}
.y1e7{bottom:302.670667pt;}
.y202{bottom:303.513333pt;}
.yeb{bottom:313.113333pt;}
.yb5{bottom:315.138667pt;}
.y32{bottom:316.424000pt;}
.y11e{bottom:316.894667pt;}
.y150{bottom:317.500000pt;}
.y231{bottom:318.326667pt;}
.y201{bottom:319.453333pt;}
.y1b0{bottom:323.809333pt;}
.y1e6{bottom:325.430667pt;}
.yb4{bottom:331.078667pt;}
.y31{bottom:332.364000pt;}
.yea{bottom:332.574667pt;}
.y11d{bottom:332.834667pt;}
.y14f{bottom:333.440000pt;}
.y230{bottom:334.266667pt;}
.y200{bottom:335.393333pt;}
.y1af{bottom:339.749333pt;}
.yb3{bottom:347.018667pt;}
.y30{bottom:348.305333pt;}
.y62{bottom:348.413333pt;}
.ye9{bottom:348.514667pt;}
.y11c{bottom:348.774667pt;}
.y14e{bottom:349.381333pt;}
.y22f{bottom:350.206667pt;}
.y1ae{bottom:355.689333pt;}
.y1ff{bottom:355.814667pt;}
.yb2{bottom:362.958667pt;}
.y1e5{bottom:363.036000pt;}
.y2f{bottom:364.245333pt;}
.y61{bottom:364.353333pt;}
.ye8{bottom:364.456000pt;}
.y11b{bottom:364.714667pt;}
.y14d{bottom:365.321333pt;}
.y22e{bottom:366.146667pt;}
.y1ad{bottom:371.629333pt;}
.yb1{bottom:378.898667pt;}
.y1e4{bottom:378.976000pt;}
.y2e{bottom:380.185333pt;}
.y60{bottom:380.293333pt;}
.ye7{bottom:380.396000pt;}
.y11a{bottom:380.654667pt;}
.y14c{bottom:381.261333pt;}
.y22d{bottom:382.086667pt;}
.y18c{bottom:390.757333pt;}
.y1fe{bottom:393.397333pt;}
.yb0{bottom:394.838667pt;}
.y1e3{bottom:394.916000pt;}
.y2d{bottom:396.125333pt;}
.y5f{bottom:396.233333pt;}
.ye6{bottom:396.336000pt;}
.y119{bottom:396.596000pt;}
.y14b{bottom:397.201333pt;}
.y22c{bottom:398.026667pt;}
.y1fd{bottom:409.337333pt;}
.yaf{bottom:410.780000pt;}
.y1e2{bottom:410.856000pt;}
.y5e{bottom:412.173333pt;}
.ye5{bottom:412.276000pt;}
.y118{bottom:412.536000pt;}
.y14a{bottom:413.141333pt;}
.y22b{bottom:413.968000pt;}
.y2c{bottom:416.196000pt;}
.y1fc{bottom:425.278667pt;}
.yae{bottom:426.720000pt;}
.y1e1{bottom:426.797333pt;}
.y5d{bottom:428.113333pt;}
.ye4{bottom:428.216000pt;}
.y117{bottom:428.476000pt;}
.y149{bottom:429.404000pt;}
.y22a{bottom:429.908000pt;}
.y2b{bottom:432.136000pt;}
.y27e{bottom:436.284000pt;}
.y1fb{bottom:441.218667pt;}
.yad{bottom:442.660000pt;}
.y1e0{bottom:442.737333pt;}
.y5c{bottom:444.054667pt;}
.ye3{bottom:444.157333pt;}
.y116{bottom:444.416000pt;}
.y148{bottom:445.345333pt;}
.y229{bottom:445.848000pt;}
.y27d{bottom:448.240000pt;}
.y1fa{bottom:457.158667pt;}
.yac{bottom:458.600000pt;}
.y1df{bottom:458.677333pt;}
.y5b{bottom:459.994667pt;}
.ye2{bottom:460.097333pt;}
.y27c{bottom:460.194667pt;}
.y115{bottom:460.477333pt;}
.y147{bottom:461.285333pt;}
.y228{bottom:461.788000pt;}
.y2a{bottom:465.141333pt;}
.y27b{bottom:472.149333pt;}
.y1f9{bottom:473.098667pt;}
.yab{bottom:474.540000pt;}
.y1de{bottom:474.617333pt;}
.y5a{bottom:475.934667pt;}
.y114{bottom:476.417333pt;}
.ye1{bottom:477.062667pt;}
.y146{bottom:477.225333pt;}
.y227{bottom:477.728000pt;}
.y29{bottom:481.081333pt;}
.y27a{bottom:484.105333pt;}
.y1f8{bottom:489.038667pt;}
.yaa{bottom:490.480000pt;}
.y1dd{bottom:490.997333pt;}
.y59{bottom:491.874667pt;}
.ye0{bottom:491.977333pt;}
.y113{bottom:492.357333pt;}
.y145{bottom:493.165333pt;}
.y226{bottom:493.668000pt;}
.y279{bottom:496.060000pt;}
.y28{bottom:497.021333pt;}
.y1f7{bottom:504.978667pt;}
.ya9{bottom:506.421333pt;}
.y1dc{bottom:506.937333pt;}
.y58{bottom:507.814667pt;}
.ydf{bottom:507.917333pt;}
.y278{bottom:508.014667pt;}
.y112{bottom:508.297333pt;}
.y144{bottom:509.428000pt;}
.y27{bottom:512.961333pt;}
.y225{bottom:513.793333pt;}
.y277{bottom:519.970667pt;}
.y1f6{bottom:520.920000pt;}
.ya8{bottom:522.361333pt;}
.y1db{bottom:522.877333pt;}
.y57{bottom:523.756000pt;}
.yde{bottom:523.857333pt;}
.y111{bottom:524.237333pt;}
.y143{bottom:525.368000pt;}
.y26{bottom:528.901333pt;}
.y276{bottom:531.925333pt;}
.y1f5{bottom:536.860000pt;}
.ya7{bottom:538.301333pt;}
.y1da{bottom:538.817333pt;}
.y56{bottom:539.696000pt;}
.ydd{bottom:539.798667pt;}
.y110{bottom:540.298667pt;}
.y142{bottom:541.630667pt;}
.y275{bottom:543.881333pt;}
.y25{bottom:544.841333pt;}
.y224{bottom:547.666667pt;}
.y1f4{bottom:552.800000pt;}
.ya6{bottom:554.241333pt;}
.y1d9{bottom:554.757333pt;}
.y55{bottom:555.636000pt;}
.y274{bottom:555.836000pt;}
.y10f{bottom:556.238667pt;}
.ydc{bottom:556.838667pt;}
.y141{bottom:557.572000pt;}
.y24{bottom:560.782667pt;}
.y223{bottom:563.606667pt;}
.y273{bottom:567.790667pt;}
.y1f3{bottom:568.740000pt;}
.ya5{bottom:570.181333pt;}
.y1d8{bottom:570.698667pt;}
.y54{bottom:571.576000pt;}
.ydb{bottom:571.678667pt;}
.y10e{bottom:572.178667pt;}
.y140{bottom:573.512000pt;}
.y23{bottom:579.204000pt;}
.y222{bottom:579.546667pt;}
.y272{bottom:579.746667pt;}
.y1f2{bottom:584.680000pt;}
.ya4{bottom:586.122667pt;}
.y1d7{bottom:586.638667pt;}
.y53{bottom:587.516000pt;}
.yda{bottom:587.618667pt;}
.y10d{bottom:588.240000pt;}
.y13f{bottom:589.452000pt;}
.y271{bottom:591.701333pt;}
.y221{bottom:595.486667pt;}
.y22{bottom:598.782667pt;}
.y1f1{bottom:600.620000pt;}
.ya3{bottom:602.062667pt;}
.y1d6{bottom:603.017333pt;}
.y52{bottom:603.456000pt;}
.yd9{bottom:603.558667pt;}
.y270{bottom:603.656000pt;}
.y10c{bottom:604.180000pt;}
.y13e{bottom:605.392000pt;}
.y220{bottom:611.426667pt;}
.y21{bottom:612.066667pt;}
.y26f{bottom:615.612000pt;}
.ya2{bottom:618.002667pt;}
.y1d5{bottom:618.957333pt;}
.y1f0{bottom:619.396000pt;}
.y51{bottom:619.397333pt;}
.yd8{bottom:619.498667pt;}
.y10b{bottom:620.120000pt;}
.y13d{bottom:621.654667pt;}
.y21f{bottom:627.366667pt;}
.y26e{bottom:627.566667pt;}
.y20{bottom:632.680000pt;}
.ya1{bottom:633.942667pt;}
.y1d4{bottom:634.898667pt;}
.y50{bottom:635.337333pt;}
.yd7{bottom:635.438667pt;}
.y10a{bottom:636.060000pt;}
.y13c{bottom:637.594667pt;}
.y26d{bottom:639.522667pt;}
.y21e{bottom:643.308000pt;}
.y1f{bottom:645.964000pt;}
.y18b{bottom:649.812000pt;}
.ya0{bottom:649.882667pt;}
.y1d3{bottom:650.838667pt;}
.y4f{bottom:651.277333pt;}
.yd6{bottom:651.380000pt;}
.y26c{bottom:651.477333pt;}
.y109{bottom:652.000000pt;}
.y13b{bottom:653.536000pt;}
.y1e{bottom:659.248000pt;}
.y21d{bottom:661.904000pt;}
.y26b{bottom:663.432000pt;}
.y18a{bottom:665.752000pt;}
.y9f{bottom:665.822667pt;}
.y1d2{bottom:666.778667pt;}
.y4e{bottom:667.217333pt;}
.yd5{bottom:668.345333pt;}
.y13a{bottom:669.476000pt;}
.y1d{bottom:672.530667pt;}
.y108{bottom:672.546667pt;}
.y26a{bottom:675.388000pt;}
.y21c{bottom:677.844000pt;}
.y189{bottom:681.692000pt;}
.y9e{bottom:681.764000pt;}
.y1{bottom:682.214267pt;}
.y1d1{bottom:682.718667pt;}
.y4d{bottom:683.157333pt;}
.yd4{bottom:683.260000pt;}
.y1c{bottom:685.814667pt;}
.y269{bottom:687.342667pt;}
.y139{bottom:690.729333pt;}
.y21b{bottom:693.785333pt;}
.yb{bottom:696.924933pt;}
.y188{bottom:697.633333pt;}
.y9d{bottom:697.704000pt;}
.y1d0{bottom:698.658667pt;}
.y4c{bottom:699.097333pt;}
.y1b{bottom:699.098667pt;}
.yd3{bottom:699.200000pt;}
.y268{bottom:699.297333pt;}
.y21a{bottom:709.725333pt;}
.y107{bottom:710.432000pt;}
.y267{bottom:711.253333pt;}
.y1a{bottom:712.381333pt;}
.y187{bottom:713.573333pt;}
.y9c{bottom:713.644000pt;}
.y1cf{bottom:714.598667pt;}
.y4b{bottom:715.038667pt;}
.yd2{bottom:715.140000pt;}
.y266{bottom:723.208000pt;}
.y19{bottom:725.665333pt;}
.y106{bottom:726.373333pt;}
.y219{bottom:728.321333pt;}
.y186{bottom:729.513333pt;}
.y9b{bottom:729.584000pt;}
.y138{bottom:730.333333pt;}
.y1ce{bottom:730.540000pt;}
.y4a{bottom:730.978667pt;}
.yd1{bottom:732.106667pt;}
.y265{bottom:735.162667pt;}
.y18{bottom:738.949333pt;}
.y105{bottom:742.313333pt;}
.y218{bottom:744.262667pt;}
.y9a{bottom:745.524000pt;}
.y137{bottom:746.273333pt;}
.y1cd{bottom:746.480000pt;}
.y49{bottom:746.918667pt;}
.y264{bottom:747.118667pt;}
.yd0{bottom:750.541333pt;}
.y17{bottom:752.232000pt;}
.y16d{bottom:753.137333pt;}
.y104{bottom:758.253333pt;}
.y263{bottom:759.073333pt;}
.y217{bottom:760.202667pt;}
.y99{bottom:761.464000pt;}
.y136{bottom:762.213333pt;}
.y1cc{bottom:762.420000pt;}
.y48{bottom:762.858667pt;}
.y15f{bottom:764.581333pt;}
.y16{bottom:765.516000pt;}
.ycf{bottom:766.481333pt;}
.y262{bottom:771.029333pt;}
.y103{bottom:774.193333pt;}
.y216{bottom:776.142667pt;}
.y98{bottom:777.405333pt;}
.y135{bottom:778.153333pt;}
.y1cb{bottom:778.360000pt;}
.y47{bottom:778.798667pt;}
.y15{bottom:778.800000pt;}
.yce{bottom:782.422667pt;}
.y261{bottom:782.984000pt;}
.y102{bottom:790.133333pt;}
.y14{bottom:792.082667pt;}
.y97{bottom:793.345333pt;}
.y134{bottom:794.094667pt;}
.y1ca{bottom:794.300000pt;}
.y46{bottom:794.738667pt;}
.y260{bottom:794.938667pt;}
.ycd{bottom:798.362667pt;}
.y13{bottom:805.366667pt;}
.y101{bottom:806.073333pt;}
.y25f{bottom:806.894667pt;}
.y215{bottom:808.022667pt;}
.y96{bottom:809.285333pt;}
.y1c9{bottom:810.241333pt;}
.y133{bottom:810.357333pt;}
.y45{bottom:810.680000pt;}
.ycc{bottom:814.302667pt;}
.y12{bottom:818.650667pt;}
.y25e{bottom:818.849333pt;}
.y100{bottom:822.014667pt;}
.y214{bottom:823.964000pt;}
.y95{bottom:825.225333pt;}
.y132{bottom:826.297333pt;}
.y44{bottom:826.620000pt;}
.ycb{bottom:830.242667pt;}
.y25d{bottom:830.804000pt;}
.y11{bottom:831.933333pt;}
.yff{bottom:837.954667pt;}
.y242{bottom:838.576000pt;}
.y213{bottom:839.904000pt;}
.y94{bottom:841.165333pt;}
.y131{bottom:842.237333pt;}
.y43{bottom:842.560000pt;}
.y25c{bottom:842.760000pt;}
.y10{bottom:845.217333pt;}
.yca{bottom:846.182667pt;}
.y241{bottom:850.530667pt;}
.yfe{bottom:853.894667pt;}
.y25b{bottom:854.714667pt;}
.y212{bottom:855.844000pt;}
.y130{bottom:858.177333pt;}
.yf{bottom:858.500000pt;}
.y93{bottom:861.290667pt;}
.yc9{bottom:862.122667pt;}
.y240{bottom:862.485333pt;}
.y25a{bottom:866.670667pt;}
.yfd{bottom:869.834667pt;}
.y211{bottom:871.784000pt;}
.y12f{bottom:874.117333pt;}
.y1ef{bottom:874.440000pt;}
.y1c8{bottom:874.441333pt;}
.y92{bottom:877.230667pt;}
.y259{bottom:878.625333pt;}
.ya{bottom:881.770533pt;}
.yc8{bottom:884.704000pt;}
.yfc{bottom:885.774667pt;}
.y23f{bottom:886.396000pt;}
.y210{bottom:887.724000pt;}
.y12e{bottom:890.058667pt;}
.y1ee{bottom:890.380000pt;}
.y1c7{bottom:890.381333pt;}
.y258{bottom:890.580000pt;}
.y23e{bottom:898.350667pt;}
.y239{bottom:901.601333pt;}
.yfb{bottom:901.714667pt;}
.y257{bottom:902.536000pt;}
.y20f{bottom:903.664000pt;}
.y12d{bottom:905.998667pt;}
.y1c6{bottom:906.321333pt;}
.y23d{bottom:910.306667pt;}
.y91{bottom:911.104000pt;}
.y238{bottom:913.557333pt;}
.y256{bottom:914.490667pt;}
.yfa{bottom:917.656000pt;}
.y20e{bottom:919.605333pt;}
.y9{bottom:921.805333pt;}
.y12c{bottom:921.938667pt;}
.y1c5{bottom:922.261333pt;}
.ye{bottom:922.570667pt;}
.yc7{bottom:924.918667pt;}
.y237{bottom:925.512000pt;}
.y255{bottom:926.445333pt;}
.y90{bottom:927.044000pt;}
.yf9{bottom:933.596000pt;}
.y23c{bottom:934.217333pt;}
.y12b{bottom:938.201333pt;}
.y254{bottom:938.401333pt;}
.yc6{bottom:940.858667pt;}
.y8f{bottom:942.984000pt;}
.y23b{bottom:946.172000pt;}
.yf8{bottom:949.536000pt;}
.y253{bottom:950.356000pt;}
.yd{bottom:953.653333pt;}
.y12a{bottom:954.141333pt;}
.yc5{bottom:956.798667pt;}
.y23a{bottom:958.126667pt;}
.y8e{bottom:958.924000pt;}
.y129{bottom:970.081333pt;}
.yf7{bottom:970.082667pt;}
.yc4{bottom:972.738667pt;}
.y8d{bottom:974.864000pt;}
.yc{bottom:1014.372000pt;}
.he{height:16.948284pt;}
.h2{height:20.647547pt;}
.h18{height:22.895604pt;}
.h1b{height:22.940338pt;}
.h19{height:24.160229pt;}
.h1d{height:24.741379pt;}
.h16{height:25.475275pt;}
.h6{height:25.589197pt;}
.h15{height:25.800127pt;}
.h20{height:29.032418pt;}
.hf{height:29.244954pt;}
.h22{height:29.452954pt;}
.h21{height:29.458287pt;}
.h1f{height:29.499997pt;}
.h12{height:32.474903pt;}
.h1{height:32.625000pt;}
.h10{height:32.768237pt;}
.h11{height:32.773570pt;}
.ha{height:33.187635pt;}
.h9{height:33.426739pt;}
.h13{height:36.290431pt;}
.hb{height:36.556100pt;}
.hc{height:36.874903pt;}
.h8{height:40.211857pt;}
.h1a{height:40.723883pt;}
.h1e{height:43.297413pt;}
.h3{height:48.937500pt;}
.h7{height:87.734861pt;}
.h4{height:97.875000pt;}
.hd{height:212.722987pt;}
.h14{height:216.659520pt;}
.h17{height:223.609320pt;}
.h1c{height:235.940907pt;}
.h5{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w3{width:280.539307pt;}
.w4{width:329.001493pt;}
.w5{width:329.014387pt;}
.w6{width:685.449013pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.641130pt;}
.x4a{left:9.924467pt;}
.x2a{left:10.837628pt;}
.x28{left:12.286694pt;}
.x27{left:16.570135pt;}
.x32{left:22.241595pt;}
.x2b{left:23.771997pt;}
.x2c{left:26.610086pt;}
.x67{left:36.090365pt;}
.x40{left:39.391899pt;}
.x5c{left:43.308581pt;}
.x5b{left:45.535232pt;}
.x4b{left:48.290368pt;}
.x5a{left:50.969755pt;}
.x1{left:57.512133pt;}
.x41{left:59.820282pt;}
.x4f{left:62.196970pt;}
.x7{left:65.285333pt;}
.xa{left:67.452000pt;}
.x42{left:70.369243pt;}
.x68{left:74.145333pt;}
.x6{left:78.568000pt;}
.x8{left:79.768000pt;}
.x10{left:89.392865pt;}
.x9{left:91.852000pt;}
.xf{left:93.734268pt;}
.x13{left:96.041183pt;}
.x14{left:96.959891pt;}
.x12{left:98.513290pt;}
.x11{left:99.800062pt;}
.xb{left:100.760000pt;}
.x39{left:104.233801pt;}
.x2f{left:105.666667pt;}
.x2d{left:107.422667pt;}
.x49{left:114.134805pt;}
.x38{left:115.672032pt;}
.x48{left:123.665451pt;}
.x36{left:146.925881pt;}
.x4{left:148.097333pt;}
.x37{left:151.302841pt;}
.x21{left:154.847264pt;}
.x4c{left:156.312025pt;}
.x44{left:158.559697pt;}
.x26{left:160.756558pt;}
.x1f{left:162.107088pt;}
.x22{left:163.330100pt;}
.x43{left:164.850084pt;}
.x1e{left:166.460084pt;}
.x20{left:167.793226pt;}
.x23{left:168.807572pt;}
.x24{left:170.850756pt;}
.x25{left:172.137527pt;}
.x33{left:173.032966pt;}
.x34{left:176.435374pt;}
.x46{left:178.303367pt;}
.x2{left:182.955067pt;}
.x4e{left:184.424512pt;}
.x47{left:185.584533pt;}
.x3c{left:188.292887pt;}
.x45{left:189.605886pt;}
.x3d{left:194.489306pt;}
.x6c{left:195.464000pt;}
.x2e{left:198.865333pt;}
.x3e{left:199.819363pt;}
.x57{left:214.602730pt;}
.x50{left:218.351256pt;}
.x6d{left:222.069333pt;}
.x1a{left:224.179366pt;}
.x16{left:225.692191pt;}
.x18{left:229.225016pt;}
.x15{left:231.114599pt;}
.x1b{left:232.395574pt;}
.x19{left:234.490924pt;}
.x1c{left:235.612502pt;}
.x17{left:236.905069pt;}
.x1d{left:238.191840pt;}
.x6e{left:245.441333pt;}
.x4d{left:258.449384pt;}
.x3a{left:259.759642pt;}
.x35{left:261.708753pt;}
.x54{left:270.690711pt;}
.x3b{left:276.814707pt;}
.x51{left:281.144866pt;}
.x5{left:283.061333pt;}
.x6f{left:285.928000pt;}
.x55{left:313.605270pt;}
.x56{left:324.088972pt;}
.x66{left:384.622405pt;}
.x5d{left:388.866344pt;}
.x52{left:394.414573pt;}
.x53{left:408.519307pt;}
.x5e{left:413.783491pt;}
.xc{left:415.970667pt;}
.x65{left:419.298996pt;}
.x3f{left:421.712000pt;}
.x69{left:424.830667pt;}
.x31{left:426.634667pt;}
.xd{left:429.253333pt;}
.xe{left:443.068000pt;}
.x6a{left:447.886667pt;}
.x6b{left:450.628000pt;}
.x30{left:451.944000pt;}
.x64{left:481.299873pt;}
.x63{left:483.063714pt;}
.x5f{left:525.643503pt;}
.x62{left:537.741158pt;}
.x60{left:553.291891pt;}
.x58{left:613.892001pt;}
.x59{left:623.382555pt;}
.x61{left:657.096272pt;}
.x3{left:746.065333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
